This page was last updated on 08 December 2024, 12:01PM
Changelogs
Version 2.3.1
Main Part:
- ProcessConsoleCommand is a separate function now so you can call it outside of key press.
Addon Part:
- 3 new console commands > GetRefInfo, DeleteReference, WhatWeather.
Version 2.3.0
Utility functions are now global.
Now you can receive number of command parts in the float argument. If your command is "DoStuff Abc 15 35" you will receive 4.0 in this additional argument.
Example addon updated a bit to use this new feature.
Version 2.2.1
Main file:
- New QOL feature, message [Script command "CommandName" not found] will be removed from console on execution.
Version 2.2.0
Main file:
- Now you can fill your addon plugin name via script property.
- Fill the property in your plugin and leave the RegisterConsoleCommands with no arguments.
- Backwards compatible, you can still pass your full plugin name directly from script.
Example Addon:
- New example command: GetBaseFOV.
Version 2.1.0A
Example Addon:
- Fixed the first space symbol in DebugNotification command.
- New AddAchievement example command.
Version 2.1.0
Main File:
- Commonly used strings moved to properties.
- Added ScriptVersion() function, currently returns [2, 1, 0].
Example Addon:
- Added IsSkill() protection for MaxSkills command.
- Added DebugNotification example command.
Common:
- Scripts sources are now supplied in both "Data/Scripts/Source" and "Data/Source/Scripts" paths for authors convenience.