02.11.2013, 14:05
Quote:
|
Code which will be executed if a player enters that pickup.
You said you want to create an entrance, so you should add SetPlayerPos, SetPlayerInterior there. |
Код:
A:\Users\Administrator\Desktop\SAMP Server\gamemodes\grandlarc.pwn(521) : warning 235: public function lacks forward declaration (symbol "OnPlayerPickUpPickUp") A:\Users\Administrator\Desktop\SAMP Server\gamemodes\grandlarc.pwn(525) : error 017: undefined symbol "x"
Код:
public OnPlayerPickUpPickUp(playerid,pickupid)
{
if(pickupid == pickup)
{
SetPlayerPos(playerid, x, y, z);
SetPlayerInterior(playerid, 0);
}
}


