ID:175267
 
obj
SpaceCraft
name = "Space Craft"
icon = 'weight-objs.dmi'
icon_state = "SpaceCraft"
verb
Drop()
set category = "Inventory"
src.loc=locate(usr.x,usr.y+1,usr.z)
Get()
set category = "Inventory"
set src in oview(1)
Move(usr)
Travel()
set category = "Inventory"
switch(input("Where would you like to travel to?", "Planets", text) in list ("Earth","Namek","Tium"))
if("Tium")
usr.overlaysave = usr.overlays
usr.overlays -= usr.overlays
if(usr.z == 2)
usr.icon = 'weight-objs.dmi'
usr.icon_state = "SpaceCraft"
usr.Move(usr,NORTH)
sleep(5)
usr.Move(usr,EAST)
sleep(5)
usr.Move(usr,NORTH)
sleep(5)
usr.Move(usr,EAST)
sleep(5)
usr.Move(usr,NORTH)
sleep(5)
usr.Move(usr,EAST)
sleep(5)

//----------------------------------------------------

Why won't this work? When I use the verb Travel. I teleport to the location, but i don't move...why not?
This probably sounds newbish and impatient but I REALLY need this code as soon as possible!
In response to Gokuss4neo
Patience, grasshopper. Your questions will be answered in time.

Move() will not work the way you're trying to use it (it only takes one argument, which is the atom to move to). Look up step() and use that instead.
In response to Crispy
Crispy man, you rock!!! You must live on these forums. Almost EVERY one of my posts has had a reply by you!

Thank you!
In response to Crispy
SPECIAL THANKZ AGAIN!