Scripting/Squirrel/Functions/SetUseClasses: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
Kennedyarz (talk | contribs) |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 12: | Line 12: | ||
function onScriptLoad() | function onScriptLoad() | ||
{ | { | ||
SetUseClasses( true ); | |||
} | } | ||
function | |||
</source> | |||
<source lang=squirrel> | |||
function onScriptLoad() | |||
{ | { | ||
SetUseClasses( false ); | |||
} | } | ||
</source> | |||
== Related Functions == | |||
{{Scripting/Squirrel/Functions/Spawn_and_Wasted_Screen_Functions}} | |||
[[Category:Scripting/Squirrel/Functions/Spawn_and_Wasted_Screen_Functions]] |
Latest revision as of 21:59, 30 January 2017
This function will enable/disable use of classes
SetUseClasses( bool );
Arguments
- bool - true or false
Example
function onScriptLoad()
{
SetUseClasses( true );
}
function onScriptLoad()
{
SetUseClasses( false );
}