SA-MP Forums Archive
[Ajuda] Sabem aquela mensagem /ao - 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] Sabem aquela mensagem /ao (/showthread.php?tid=395936)



Sabem aquela mensagem /ao - Rota153 - 28.11.2012

Mensagem / ao tenho no meu server so que tipo nao tem como eu mandar a mensagem e aparecer o nome do admin que mandou ?


OLHA O COMANDO


COMMAND:ao(playerid, params[])
{
new Name[24], Msg[128], Message[128];
SendAdminText(playerid, "/ao", params);
GetPlayerName(playerid, Name, sizeof(Name));
if (APlayerData[playerid][LoggedIn] == true)
{
if (APlayerData[playerid][PlayerLevel] > 3)
{
if (sscanf(params, "s[128]", Message)) SendClientMessage(playerid, 0xFF0000AA, "Use: /ao [texto]");
else
{
for (new i; i < MAX_PLAYERS; i++)
{
if (APlayerData[i][LoggedIn] == true)
{
if (APlayerData[i][PlayerLevel] > 3)
{
format(Msg, sizeof(Msg), "~w~%s", Message);
GameTextForAll(Msg, 5000, 3);
}
}
}
}
}
else
return 0;
}
else
return 0;
return 1;


Re: Sabem aquela mensagem /ao - Vinicius_TroLL - 28.11.2012

Clique aqui e seja feliz


Re: Sabem aquela mensagem /ao - mau.tito - 28.11.2012

pawn Код:
COMMAND:ao(playerid, params[])
{
     new Name[MAX_PLAYER_NAME], Msg[128], Message[128];
     SendAdminText(playerid, "/ao", params);
     GetPlayerName(playerid, Name, sizeof(Name));
     if (APlayerData[playerid][LoggedIn] == true)
     {
          if (APlayerData[playerid][PlayerLevel] > 3)
          {
               if (sscanf(params, "s[128]", Message))
                   return SendClientMessage(playerid, 0xFF0000AA, "Use: /ao [texto]");

               format(Msg, sizeof(Msg), "%s~w~%s",Name, Message);
               GameTextForAll(Msg, 5000, 3);
          }
     }
     return 1;
}

Por Favor utilize nos seus code postados no forum
[*PAWN]CODE[/PAWN]

Sem o *.

Agradeзemos!