SA-MP Forums Archive
[Ajuda] Comando com limites ! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Comando com limites ! (/showthread.php?tid=452030)



Comando com limites ! - Leopawno - 19.07.2013

Queria um comando do tipo /pedagio e logo aparecesse vc nao estб no pedagio e nao abriria a cancela do pedagio se nao tivesse la


Re: Comando com limites ! - arakuta - 20.07.2013

Use a funзгo IsPlayerInRangeOfPoint.

https://sampwiki.blast.hk/wiki/IsPlayerInRangeOfPoint

pawn Код:
CMD:pedagio(playerid)
{
    if(IsPlayerInRangeOfPoint(playerid,Float:range,Float:x,Float:y,Float:z))
    {
        // Estб prуximo. Faзa algo...
        // MoveObject ???
        // SetTimer -> para fechar a cancela???
    }
    else
        return SendClientMessage(playerid,-1,"Vocк nгo estб prуximo do pedбgio!");
    return 1;
}