29.01.2011, 13:01
I made a berger shot through mta :P
and i want to enter that shop.
how to do that? Is it possible?
and i want to enter that shop.
how to do that? Is it possible?
new pickup;
public OnGameModeInit()
{
pickup = CreatePickup(...);
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == pickup)
{
SetPlayerPos(playerid, x, y, z);
//...
}
return 1;
}