ID:266434
 
Ok,how do you make it to a person ecscapes his/her's car and the car stays at its origianl location,and the user appears right next to it?If you know please tell me!Thanks!Not a dbz games,its called BYOND Racing!

~~~SSJ4_Gohan_Majin
SSJ4_Gohan_Majin wrote:
Ok,how do you make it to a person ecscapes his/her's car and the car stays at its origianl location,and the user appears right next to it?If you know please tell me!Thanks!Not a dbz games,its called BYOND Racing!

~~~SSJ4_Gohan_Majin

I think this is what you want...

obj/Car
icon = 'icons.dmi'
icon_state = "Car"
verb
Get_In()
set src in oview(1)
usr.icon_state = "Car"
usr.verbs += /obj/Car/verb/Get_Out
del(src)

Get_Out()
usr.icon_state = initial(usr.icon_state)
new/obj/Car(usr.loc)
usr.verbs-= /obj/bchocobo/verb/Get_Out


Lemme know if it doesnt work
In response to Pillsverry
Perfect thanks a lot!

~~~~SSJ4_Gohan_Majin