15.08.2009, 13:28
Lol lol lol x 10.
Put this above OnGameModeIniti
Put this under OnGameModeInit
and put this under OnPlayerPickup
Pickup ID's: http://weedarr.wikidot.com/pickups
Pickup types: https://sampwiki.blast.hk/wiki/CreatePickup
To get a coordinate, go in samp server and do /save 'name' - You will get X,Y,Z
Put this above OnGameModeIniti
pawn Код:
new yourpickup
pawn Код:
yourpickup = CreatePickup (pickupid,id(like1-20), x,y,z);
pawn Код:
if (pickupid == yourpickup)
{
SetPlayerHealth(playerid, 100);
// bla bla bla
}
Pickup types: https://sampwiki.blast.hk/wiki/CreatePickup
To get a coordinate, go in samp server and do /save 'name' - You will get X,Y,Z

