29.01.2018, 17:49
Top of script
I did that on OnPlayerDeath
Код:
new Health;
Код:
// Getting the player's Health pickup
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid,x,y,z);
Health = CreatePickup(1240,4,x+2,y,z,0);
SetTimer("Health_Timer", 15000, false);
Код:
forward Health_Timer();
public Health_Timer()
{
DestroyPickup(Health);
return 1;
}


(He just needs to learn about the edit button next lol)