Quote:
Originally Posted by Fulg0reSama
Quote:
Originally Posted by xXziroXx
PHP Code:
function onCreated() { removetiledefs(); }
Done.
|
fixed
|
Technically, that is wrong - removetiledefs() expects a parameter and will return an error if nothing is passed.
Syntactical correctness in GScript2 would yield:
PHP Code:
//#CLIENTSIDE
function onCreated() {
removetiledefs("");
}
However, Ziro's is syntactically correct for GScript1.