Features
- Running bakkes mod console commands
- Logging information to the console
- Running custom commands implemented in the plugin
- Ability to save/load kismet data to and from a file for cross load data storage
- Automatically installs Netcode Manager Plugin
Bakkes Mod Console Commands
To run console commands, make a string var called bmcommand
and set the value to the command that you would like to run
You can find the available console commands that can be run here
Console Logging
To log information to the console, make a string var called bmlog
and set the value to the information to be logged
Kismet Check For Plugin
To be notified when the plugin is loaded, make a remote event named MEPLoaded
. When RL loads the map, the plugin will trigger this remote event. Additionally if the plugin is loaded/installed while the map is already opened, it will trigger this remote event then.
Custom Commands
Custom commands are self implemented and requested features for map makers to utilize when the bakkes mod commands just won't cut it.
To run custom commands, make a string var called mepcommand
and set the value to one of the custom commands listed below. You can chain multiple commands together by separating them with a semicolon.
Custom Command List
input stop
prevents the users inputs from effecting the carinput begin
allows users inputs to effect the carkeylisten {Key List} RemoteEventName
registers a specified remote event to be triggered when the keys provided in the key list are pressed.{Key List}
is expected to be a comma separated list of UE3 recognized keys with no spaces. You can find the list heresavedata {Kismet Var List} FileName
saves the contents of the kismet vars in the kismet var list to the specified filename. The list is expected to be a comma separated list of kismet vars that are defined on the main sequence. Supported var types are: Bool, Float, Int, String, & Vector. The names cannot have a space in them. The FileName is the name of the file that you are saving too without a file extension. Make this unique to your map to not conflict with others. Once the data has been saved to a file, a remote event namedMEPDataSaved
will be triggered.loaddata FileName
loads in data from a specified FileName. FileName is the name of file that your map has saved too without a file extension. It will take the saved kismet vars inside the file and set the value of them in the map. Once all variables are set, a remote event namedMEPDataLoaded
will be triggered.changescore {blue/orange} {add/sub} {amount}
alters the scoreboard for the specified team by the amount given. For amount, only give non-negative integers. Using the sub operation will subtract the amount from the score while add will increment the score.