02.09.2015, 21:39
Bom Eu sou novato em scripter, e porem, minha gm estб um com bug que nгo consigo remove-lo
Quando o player morri, vocк vai pro hospital, certo, mais quando ele sai do hospital, continua aquele negoзo de recuperaзгo do lado, status, segundos, etc... Veja a SS Abaixo.
http://i.imgur.com/8DWZqhU.pngQuando o player morri, vocк vai pro hospital, certo, mais quando ele sai do hospital, continua aquele negoзo de recuperaзгo do lado, status, segundos, etc... Veja a SS Abaixo.
Se Podem me ajudar, agradeзo.
Codigo:
Codigo:
PHP код:
public TextHospital(playerid)
{
new string[128];
new TempoHospital = PlayerInfo[playerid][pHospTime], TextRec2[40];
if(TempoHospital <= 100 && TempoHospital >= 80) TextRec2 = "Preparando Recuperacao";
else if(TempoHospital <= 80 && TempoHospital >= 55) TextRec2 = "Recuperacao Iniciada";
else if(TempoHospital <= 55 && TempoHospital >= 30) TextRec2 = "Recuperando ...";
else if(TempoHospital <= 30 && TempoHospital >= 15) TextRec2 = "Concluindo Recuperacao";
else if(TempoHospital <= 15 && TempoHospital >= 0) TextRec2 = "Preparando sua Saida";
format(string,sizeof(string),"~>~~>~ ~g~~g~Hospital ~<~~<~~g~~g~~g~~g~~g~~g~Status: ~g~~g~~g~%s~g~~g~~g~~g~Tempo:~g~~g~~g~%d ~w~Segundos",TextRec2,TempoHospital);
TextDrawSetString(TextPosto[playerid], string);
ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0);
}