A quick question, is it possible to do something like this:
$Scriptpackage_scriptone=0;
$Scriptpackage_scripttwo=1;
if($Scriptpackage_scriptone){
function servercmdscriptone(%client){
echo("one");
}
}
if($Scriptpackage_scripttwo){
function servercmdscripttwo(%client){
echo("two");
}
}
To enable and disable parts of the script without using other files and execs?
No, I do not mean update the file ingame by just saying $script=0;
I mean to pick and choose which parts load at start-- erm, when it execs-- without commenting them out ect.