Scripting/Squirrel/Functions/UnbindAll: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary |
No edit summary |
||
Line 23: | Line 23: | ||
== Related Functions == | == Related Functions == | ||
{{Scripting/Squirrel/Functions/Game_Functions}} | {{Scripting/Squirrel/Functions/Game_Functions}} | ||
[[Category:Scripting/Squirrel/Functions/Game_Functions]] |
Latest revision as of 18:06, 30 January 2017
UnbindAll removes all binded server keys.
Syntax
UnbindAll()
Example
The following example will unbind all server keys
function onScriptUnload()
{
UnbindAll();
return 1;
}
Notes
- Call onScriptUnload were used in this example. More info about them in the corresponding pages.