Thread: goto
View Single Post
  #3  
Old 02-02-2008, 05:39 PM
projectigi projectigi is offline
Registered User
Join Date: Jan 2004
Posts: 403
projectigi is an unknown quantity at this point
well like

PHP Code:
function onCreated()
  {
  if( 
foobar )
    goto 
blub;
  
player.chat "d";
  }

function 
onPlayerChats()
  {
  
Label blub;
  
player.chat "c";
  } 

and it will go to the script part where the label blub is and continue there, so if foobar is true the player will say c @ onCreated
else he will say d, but when foobar is true he wont say d at any time
__________________
Reply With Quote