ID:178454
 
I used that vehicle library but i dont like it because you see the insid and i dont want that
haha i need to learn this too.This for your GTA game
mob/var

last_state
intank = 0
obj
Ship
icon = 'sp.dmi'
verb
Get_In()
set src in view(1)
if(usr.intank == 0)
usr << "You enter the tank."
sleep(5)
usr.icon = 'sp.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 Ship"
usr.verbs -= /mob/special/verb/Leave
new/obj/Ship(usr.loc)
usr.icon = 'goku.dmi'
usr.icon_state = usr.last_state
usr.intank = 0