20.08.2015, 18:23
PHP код:
new pDialog[3500];
strcat(pDialog, "/id - Displays some data about a player.\n", sizeof(pDialog));
strcat(pDialog, "/pay - Sends money to a player.\n", sizeof(pDialog));
strcat(pDialog, "/buy - Buys items.\n", sizeof(pDialog));
strcat(pDialog, "/drink - Drinks beverages from a bar.\n", sizeof(pDialog));
strcat(pDialog, "/turfs - Shows territories.\n", sizeof(pDialog));
strcat(pDialog, "/licenses - Displays the licenses status.\n", sizeof(pDialog));
strcat(pDialog, "/skill - Displays job skill.\n/sleep - Activate AFK mode.\n", sizeof(pDialog));
strcat(pDialog, "/eject - Throws a passenger out of the vehicle.\n", sizeof(pDialog));
strcat(pDialog, "/rob - Rob the bank.\n", sizeof(pDialog));
strcat(pDialog, "/service - Calls a taxi/medic/mechanic.\n", sizeof(pDialog));
strcat(pDialog, "/report - Contacts the admins team.\n", sizeof(pDialog));
strcat(pDialog, "/helpme - Contacts the helpers team.\n", sizeof(pDialog));
strcat(pDialog, "/accept - Accepts a service.\n", sizeof(pDialog));
strcat(pDialog, "/cancel - Refuses a service.\n", sizeof(pDialog));
strcat(pDialog, "/usedrugs - Consumes drugs.\n", sizeof(pDialog));
strcat(pDialog, "/fill - Fills the gas tank.\n", sizeof(pDialog));
strcat(pDialog, "/fillgascan - Fills the gas can.\n", sizeof(pDialog));
strcat(pDialog, "/animlist - List of animations.", sizeof(pDialog));
ShowPlayerDialog(playerid, 0, DIALOG_STYLE_MSGBOX, "Help", pDialog, "OK", "");
return 1;
}