29.07.2010, 14:16
How can i like when someone goes to that pickup it heals them?
if(pickupid == HEALPICKUP)
{
SetPlayerHealth(playerid,100);
}
// TOP
new healthpickup;
// ONGAMEMODEINIT
healthpickup = CreatePickup(....
// ONPLAYERPICKUPPICKUP
if ( pickupid == healthpickup )
{
SetPlayerHealth(playerid, 100);
}