[Ajuda] Bloquear
#8

Quote:
Originally Posted by humildadeforever
Посмотреть сообщение
Seria algo do tipo
pawn Код:
new Float: Pos[3];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
for(new p = 0; p < MAX_PLAYERS; p++)
{
    if(IsPlayerInRangeOfPoint(p, 25.00, Pos[0], Pos[1], Pos[2])) return SendClientMessage(playerid, -1, "Vocк nгo pode digitar perto de alguйm e.e");
}
Tф achando que tem algo errado, mas testa aн ahah
Seria melhor mandar a loop parar logo que encontra-se alguйm, para nгo enviar varias mensagens caso estiver mais de um jogador perto dele.
pawn Код:
new Float: Pos[3];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
for(new p = 0; p < MAX_PLAYERS; p++)
{
    if(IsPlayerInRangeOfPoint(p, 25.00, Pos[0], Pos[1], Pos[2]))
    {
        SendClientMessage(playerid, -1, "Vocк nгo pode digitar perto de alguйm e.e");
        break;
    }
    else continue;
}
Reply


Messages In This Thread
Bloquear - by FabioGTP - 15.10.2014, 03:20
Re: Bloquear - by ProKillerpa - 15.10.2014, 03:31
Re: Bloquear - by MultiKill - 15.10.2014, 03:35
Re: Bloquear - by ProKillerpa - 15.10.2014, 03:44
Re: Bloquear - by FabioGTP - 15.10.2014, 22:42
Re: Bloquear - by ProKillerpa - 15.10.2014, 22:47
Re: Bloquear - by humildadeforever - 15.10.2014, 22:51
Re: Bloquear - by MultiKill - 15.10.2014, 23:14
Re: Bloquear - by humildadeforever - 15.10.2014, 23:38
Re: Bloquear - by FabioGTP - 16.10.2014, 10:47

Forum Jump:


Users browsing this thread: 6 Guest(s)