24.05.2009, 23:15
Something like this, bear in mind you'll need to set the pickup position and teleport co-ordinates yourself (and the model):
pawn Код:
//top of script
new exitpickup;
//on Gamemode/Filterscript Init
exitpickup = CreatePickup(Model,23,X,Y,Z);
//OnPlayerPickupPickup
if(pickupid == exitpickup)
{
SetPlayerPos(playerid, X, Y, Z);
}

