23/12/2020 18:55
(Esta mensagem foi modificada pela última vez a: 23/12/2020 18:56 por Gustavo P.)
Não entendi muito bem, mas pelo que eu entendi, você vai ter que criar uma variavel global
new Float:pos[3][MAX_PLAYERS]
quando o cara dar o cmd e criar o textdraw, voce salva os valores
GetPlayerPos(playerid, Float:x, Float:y, Float:z)
pos[0][playerid] = Float:x;
depois criar uma função e um timer
SetTimerEx("ChecarArea", 1000, true, "d", playerid);
ChecarArea(playerid)
{
if(!IsPlayerInRangeOfPoint(playerid, Float:range,pos[0][playerid], pos[1][playerid], pos[2][playerid]))
return PlayerTextDrawHide(playerid, PlayerText:text);
}
new Float:pos[3][MAX_PLAYERS]
quando o cara dar o cmd e criar o textdraw, voce salva os valores
GetPlayerPos(playerid, Float:x, Float:y, Float:z)
pos[0][playerid] = Float:x;
depois criar uma função e um timer
SetTimerEx("ChecarArea", 1000, true, "d", playerid);
ChecarArea(playerid)
{
if(!IsPlayerInRangeOfPoint(playerid, Float:range,pos[0][playerid], pos[1][playerid], pos[2][playerid]))
return PlayerTextDrawHide(playerid, PlayerText:text);
}