[Ajuda] Meu Comando - 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] Meu Comando (
/showthread.php?tid=571337)
Meu Comando -
Thompsoon - 18.04.2015
Eu criei um comando que tem a possibilidade de mudar a cor do Nome do player, eu queria fazer com que a cor do nome do player ficasse salvo. Mt Obrigado
Re: Meu Comando -
ZeZin - 18.04.2015
SetPlayerColor+SistemaSalvamentoSeu
Re: Meu Comando -
Thompsoon - 18.04.2015
E pro comando funcionar em tal Coordenada ?
Ex:
pawn Код:
if (strcmp("/vermelho", cmdtext, true, 10) == 0)
{
SetPlayerColor(playerid, 0xFFFFFFFF);
Re: Meu Comando -
Dayvison_ - 18.04.2015
if (strcmp("/vermelho", cmdtext, true, 10) == 0)
{
if(!IsPlayerInRangeOfPoint(playerid, Float:range, Float
, Float:y, Float:z)) return SendClientMessage(playerid,-1,"Vocк nгo esta no local");
SetPlayerColor(playerid, 0xFFFFFFFF);
Re: Meu Comando -
Thompsoon - 18.04.2015
Como que fia o return ali ? { , }
Re: Meu Comando -
VinnyScript - 18.04.2015
Код:
if (strcmp("/vermelho", cmdtext, true, 10) == 0){
SetPlayerColor(playerid, 0xFFFFFFFF);
}
Re: Meu Comando -
Vegassilva - 18.04.2015
Para fazer salvamento da cor user DOF2
Re: Meu Comando -
Thompsoon - 18.04.2015
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/vermelho", cmdtext, true, 10) == 0)
{
if(!IsPlayerInRangeOfPoint(playerid, Float:3, Float:2519.3284, Float:-965.7155, Float:82.3082))
{
return 1;
}
Re: Meu Comando -
Vegassilva - 18.04.2015
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/vermelho", cmdtext, true, 10) == 0)
{
if(!IsPlayerInRangeOfPoint(playerid, Float:3, Float:2519.3284, Float:-965.7155, Float:82.3082))
return 1;
}
Re: Meu Comando -
Thompsoon - 18.04.2015
Quote:
Originally Posted by Vegassilva
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[]) { if (strcmp("/vermelho", cmdtext, true, 10) == 0) { if(!IsPlayerInRangeOfPoint(playerid, Float:3, Float:2519.3284, Float:-965.7155, Float:82.3082)) return 1; }
|
Nao foi :C