Quote:
Originally Posted by cbk1994
That or just show a GANI with the putleaps in the script?
PHP Code:
SCRIPT if ( created ) { putleaps( params[0], params[1], params[2] ); } SCRIPTEND
If you don't use if ( created ) you will lose the params sent, for some reason. You could do the same thing with attrs as well though.
|
PHP Code:
SCRIPT
function onPlayerEnters(type, xx, yy) {
putleaps(type, xx, yy);
}
SCRIPTEND
:o and why do you use "if (created)"?