02.09.2018, 12:55
Hi guys i just translate vehicle advance system all okay.
when i write the cmd /vhelp (in my language /vaiuto)
All the commands appear normally but as soon as I click ok to exit the dialog, it tells me server closed the connection.
Another problem is when I make that command I get the list of commands for the players, and not for the admin.
Script:
CMD:vaiuto(playerid, params[])
{
new info[512];
strcat(info, "/v /baglialio /cacciav /vcacciatutti\n", sizeof(info));
strcat(info, "/sicura /vallarme /rifornisci /bagagliaio /eliminamodifiche /vendiv /daichiave /tracciaveicolo\n", sizeof(info));
if(IsAdmin(playerid, 1))
{
strcat(info, "/aggiungiv /editav /settabenzina /vinutilizzabile (respawntutto) /respawnav (respawnaquestamacchina)\n", sizeof(info));
strcat(info, "/aggiungiconcessionaria /eliminaconcessionaria /fix /spostaconcessionaria /gotoconcessionaria\n", sizeof(info));
strcat(info, "/aggiungibenzinaio /eliminabenzinaio /spostabenzinaio /gotobenzinaio", sizeof(info));
}
ShowPlayerDialog(playerid, DIALOG_NONE, DIALOG_STYLE_MSGBOX, "Sistema veicoli", info, "OK", "");
return 1;
}
when i write the cmd /vhelp (in my language /vaiuto)
All the commands appear normally but as soon as I click ok to exit the dialog, it tells me server closed the connection.
Another problem is when I make that command I get the list of commands for the players, and not for the admin.
Script:
CMD:vaiuto(playerid, params[])
{
new info[512];
strcat(info, "/v /baglialio /cacciav /vcacciatutti\n", sizeof(info));
strcat(info, "/sicura /vallarme /rifornisci /bagagliaio /eliminamodifiche /vendiv /daichiave /tracciaveicolo\n", sizeof(info));
if(IsAdmin(playerid, 1))
{
strcat(info, "/aggiungiv /editav /settabenzina /vinutilizzabile (respawntutto) /respawnav (respawnaquestamacchina)\n", sizeof(info));
strcat(info, "/aggiungiconcessionaria /eliminaconcessionaria /fix /spostaconcessionaria /gotoconcessionaria\n", sizeof(info));
strcat(info, "/aggiungibenzinaio /eliminabenzinaio /spostabenzinaio /gotobenzinaio", sizeof(info));
}
ShowPlayerDialog(playerid, DIALOG_NONE, DIALOG_STYLE_MSGBOX, "Sistema veicoli", info, "OK", "");
return 1;
}