Quote:
Originally Posted by theHAWKER
so if gs2 is newer then why is it more complex like instead of "if" u use function?
it seams like a downgrade...
does it have more posiblilitys or something?
|
If's should not exist outside of a function or procedure in any language.
Besides, you cant "call" if (created), HOWEVER, this becomes possible in gs2
PHP Code:
function onPlayerChats() {
if(player.chat == "init")
onCreated();
}