Code:
def npc(Client, Option):
if(Option == 0):
Text("Well " + Client.Name + " heading to the Isle of Specialists?" )
Link("Yeah.", 1)
Link("Not this time.", 255)
if(Option == 1):
Text("Enjoy your stay there.")
Link("I will, thanks.", 255)
Teleport(088, 038, 1010, Client)
Finish()
return 0
Code:
def npc(Client, Option):
if(Option == 0):
Text("Hey, " + Client.Name + " you are looking to go to the North Marsh?")
if(Client.Level > 90):
Text("It appears you are indeed strong enough to go. Are you ready?")
Link("Lets do this.", 1)
Link("On second thought...", 255)
else:
Text("You're not ready for what lies beyond, are you sure you want to go?")
Link("I'll take my chances.", 2 )
Link( "You're probably right, I'll come back.." , 255 )
Finish()
if(Option == 1):
Text("Best of luck, and be careful.")
Teleport(824, 571, 1015, Client)
if(Option == 2):
Text("As you wish, be careful." )
Teleport(824, 571, 1015, Client)
Link("Sweet.", 255)
Finish()
return 0