30.03.2015, 17:58
Код:
// This command lists all commands for normal players (admin-level 0) COMMAND:cmds(playerid, params[]) { // Check if the player has logged in if (APlayerData[playerid][LoggedIn] == true) { CommandList_Create(playerid); // Create a list of commands (only the first 4 commands) and show the dialog } else return 0; // Let the server know that this was a valid command return 1; }