23.05.2013, 23:31
Estou pedindo ajuda de vocкs mais uma vez pra min ajudar ah transforma uma SendClientMessage em ShowPlayerDialog Exemplo a seguir ..
DIALOG
SendClientMessage
Isso й oq eu quero transforma em DIALOG ↑↑↑
DIALOG
PHP код:
if(strcmp("/comandos", cmd, true) == 0)
{
new strcmd[1000];
strcat(strcmd, "{00FF00}» /animes /dance /data /ausentes\n", sizeof(strcmd));
strcat(strcmd, "{00FF00}» /regras /creditos /ajudalevel /vips /afk /on\n", sizeof(strcmd));
strcat(strcmd, "{00FF00}» /procurados /profissao /saldocell\n", sizeof(strcmd));
strcat(strcmd, "{00FF00}» /transferir /trocarsenha /trocarnick /mudarsexo\n", sizeof(strcmd));
strcat(strcmd, "{00FF00}» /minhaprop /tutorial /ajudaprop /ajudacasa\n", sizeof(strcmd));
strcat(strcmd, "{00FF00}» /minhacasa /meucarro /conce /p /verlevel\n", sizeof(strcmd));
ShowPlayerDialog(playerid, playersimp, DIALOG_STYLE_MSGBOX, ".:: - Comandos Ъteis - ::.", strcmd, "OK", "");
return 1;
}
SendClientMessage
PHP код:
if(strcmp(cmd, "/profissao", true) == 0)
{
format(file, sizeof(file), PASTA_CONTAS, GetPlayerNameEx(playerid));
if(dini_Int(file, "Profissao") == Desempregado)
{
SendClientMessage(playerid, Verde, "Desempregado");
}
if(dini_Int(file, "Profissao") == MotoristaP)
{
SendClientMessage(playerid, C_MotoristaP, "~~~~~~~~~~~~~~ Motorista Particular ~~~~~~~~~~~~~~");
SendClientMessage(playerid, 0xFFFFFFAA, "Arrume um patrгo e cobre pelo seu serviзo.");
SendClientMessage(playerid, 0xFFFFFFAA, "/cp - Chat Profissгo.");
SendClientMessage(playerid, C_MotoristaP, "~~~~~~~~~~~~~~ Motorista Particular ~~~~~~~~~~~~~~");
}