SA-MP Forums Archive
[AJUDA] Comando em Posiзгo - 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 em Posiзгo (/showthread.php?tid=316265)



[AJUDA] Comando em Posiзгo - Jumper. - 06.02.2012

galera, se liga, eu criei uma "loja de armas" mas MUITOO simples, botei um pick up, 3d text label e tals, ai o comando seria /lojadearmas, sу que eu nгo consigo usar ele, eu acho que a posiзгo dele esta muito "rigorosa" eu queria saber se tem como "expandir" a posiзгo, o cуdigo ta logo abaixo
pawn Код:
if(strcmp(cmdtext, "/lojadearmas", true) == 0)
{
if (IsPlayerInRangeOfPoint(1, playerid,2067.6272,-992.3745,48.8016))
{
SendClientMessage(playerid,LARANJA, "[GNF] Loja de Armas:");
SendClientMessage(playerid,LARANJA, "/colete - Colete Cheio $5000");
SendClientMessage(playerid,LARANJA, "/eagle - Desert Eagle $1000");
SendClientMessage(playerid,LARANJA, "/colt - Colt M4 $1500");
SendClientMessage(playerid,LARANJA, "/sniper - Sniper $2000");
SendClientMessage(playerid,LARANJA, "/shot - Shotgun Automatica $2500");
}
return 1;
}



Re: [AJUDA] Comando em Posiзгo - Enderman - 06.02.2012

IsPlayerInRangeOfPoint(playerid,5,2067.6272,-992.3745,48.8016))


Re: [AJUDA] Comando em Posiзгo - arakuta - 06.02.2012

Vocк inverteu os paramentos da funзгo IsPlayerInRangeOfPoint

O certo e playerid, RANGE vocк fez RANGE, playerid.

pawn Код:
if(strcmp(cmdtext, "/lojadearmas", true) == 0)
    {
        if (IsPlayerInRangeOfPoint(playerid,2.0,2067.6272,-992.3745,48.8016))
        {
            SendClientMessage(playerid,LARANJA, "[GNF] Loja de Armas:");
            SendClientMessage(playerid,LARANJA, "/colete - Colete Cheio $5000");
            SendClientMessage(playerid,LARANJA, "/eagle - Desert Eagle $1000");
            SendClientMessage(playerid,LARANJA, "/colt - Colt M4 $1500");
            SendClientMessage(playerid,LARANJA, "/sniper - Sniper $2000");
            SendClientMessage(playerid,LARANJA, "/shot - Shotgun Automatica $2500");
        }
        return 1;
}
JA aproveitei e identei seu codigo... espero ter ajudado.

Aprenda sobre: IsPlayerInRangeOfPoint


Re: [AJUDA] Comando em Posiзгo - Jumper. - 06.02.2012

vou testar, obrigado por enquanto =)


Re: [AJUDA] Comando em Posiзгo - Jumper. - 06.02.2012

funcionou, vlw man =)