ID:179324
 
my screen goes black whaen i enter my tank heres th code i have

obj/vehicle/verb/Get_In()
set src in orange(1)
usr.Move(src)


could sum 1 help me out
That wont really work.. ill write you a little demo for vehicles:
mob/var

last_state
intank = 0

obj
tank
icon = 'chop.dmi'
verb
Get_In()
set src in view(1)
if(usr.intank == 0)
usr << "You enter the tank."
usr.loc = O.loc
usr.dir = O.dir
sleep(5)
usr.icon = 'tank.dmi'
usr.intank = 1
usr.last_state = usr.icon_state
usr.verbs += /mob/special/verb/Leave
del(src)
else
usr << "You are already in a tank!"
mob
special
verb
Leave()
set name = "Exit Tank"
usr.verbs -= /mob/special/verb/Leave
new/obj/tank(usr.loc)
usr.icon = 'person.dmi'
usr.icon_state = usr.last_state
usr.intank = 0


That should get you started.

-Rcet
In response to Rcet
thanks.now i understand.tell me if u wanna be a gm or mentiones in the credits