ID:148769
 
I'm havin some trouble when it gets to the tutorial...

mob
Login()
usr.loc = locate(1,1,1)
times_logged_in += 1
if(times_logged_in < 2)
usr << "Welcome to the Lost Realms of Astrir!"
name = input("What is your name?","Name") as text
alert("Thank You!")
tutorial = input("Would you like to take the tutorial for Lost Realms of Astrir?","Tutorial","Yes","No")
if("Yes")
usr.loc = locate(1,1,2)
else
return
else

Can someone help?
Punkrock546
usr << "Welcome back!"
Help with what? We don't know what the "trouble" is.
In response to Foomer
Foomer wrote:
Help with what? We don't know what the "trouble" is.

O right... It just leaves out the tutorial part.

Punkrock546
In response to Punkrock546
Punkrock546 wrote:
Foomer wrote:
Help with what? We don't know what the "trouble" is.

O right... It just leaves out the tutorial part.

Punkrock546

Thing is Punkrock546, you are not calling your tutorial part through a proc so it will not be in use yet.

All you are doing is setting the mobs locataion to 1,1,2. That is just defining the location to place the mob on the map. So you would need to stick your tutorial proc in there or have you set the tutorial to start when a mob does something in particular?

If so please tell me, otherwise you will have to call the proc that your tutorial is under.

--Lee