15.02.2011, 17:51
Vocк devia ter postado o cуdigo todo. Agora deve dar certo, se nгo der, estude: https://sampwiki.blast.hk/wiki/Areacheck
Coloque:
E depois de tudo isso, troque na sua public CountDown():
Esta linha:
Por esta:
Espero ter ajudado
Coloque:
pawn Код:
//No Topo do GM:
new referenceID;
//No seu comando /contar:
referenceID = playerid;
//No Final do GM:
stock GameTextProx(string[])
{
#define RangePoint 100.0 //Vб aumentando ou diminuindo o 100.0 atй chegar na distancia que voce acha que equivale б 10 mІ no GTA.
new Float:prX, Float:prY, Float:prZ;
GetPlayerPos(referenceID, prX, prY, prZ);
for(new x = 0; x < MAX_PLAYERS; x++)
{
if(IsPlayerInRangeOfPoint(x,RangePoint,prX,prY,prZ) == false)
{
GameTextForPlayer(x, string,2500,3);
}
}
return 1;
}
Esta linha:
Код:
GameTextForAll(CountText[Count-1],2500,3);
Код:
GameTextProx(CountText[Count-1]);