ID:177945
 
The code is for a zoid game

can you do a code that let you go into a cargo ship and brings you into the ship, and when your inside lets you control it by going up to a control panel or something? pluse it will show you the zoids in side when you go in .if you can handle that
i know how to make it so u can go in.

pick a turf, most likely a door on the ship and do this:

turf
door
icon = 'door.dmi'
Entered()
if(usr.client)
usr.Move(locate(x,y,z))
else
return 0

then make a turf on the ship to let u out like this.

turf
door
icon = 'door2.dmi'
Entered()
if(usr.client)
usr.Move(locate(x,y,z))
else
return 0

replace x,y,z with where u want the player to be placed.

if(usr.client)
usr.Move(locate(x,y,z))
else
return 0

so only a player can enter.

make sure the x,y,z is not a teleporter. teleporter as in it takes u to a different place.

DiZzyBonne