29.06.2012, 21:04
Quote:
ok post what you need and POST THE SCRIPT so we can see what you need to add/delete from there please.
|
Код:
stock HospitalSpawn(playerid){ new Timer:HospitalTimer; if(playerinfo[playerid][dead] == 2){ HospitalTimer = SetTimerEx("HospitalLoad", 200, 1, "i", playerid); } } public HospitalLoad(playerid){ if(playerinfo[playerid][health] < 100){ GivePlayerHpEx(playerid, 1); } else{ KillTimer(HospitalTimer); playerinfo[playerid][dead] = 1;//more code to spawn the player will be added here } }