ID:177795
 
Here is my code for my title screen...

mob/spectator
icon = null
Move()
New()
..()
loc = locate(5,5,1)
Logout()
..()
del(src)

world
mob = /mob/spectator
view = 6

mob
verb
Start()
usr.loc = locate(5,5,2)

How would I make it to where once you press start once you can move to the third z coordinateate using the same Start verb command.

Punkrock546
Punkrock546 wrote:
How would I make it to where once you press start once you can move to the third z coordinateate using the same Start verb command.

Punkrock546

Not sure I quite understand what you are saying. You mean, you want it to take you to the 2nd Z level the first time you press it, then to the 3rd when you press it again?

If so:

mob
verb
Start()
if(src.z < 4)
src.z++
In response to Malver
Ok that worked. Than you very much.

Punkrock546