10.11.2013, 12:45
Quote:
You can just edit it by yourself for Example :-
Using ShowPlayerDialog, Код:
format(string, sizeof(string), "My Name is: %s", pName); format(string2, sizeof(string2), "My ID is: %d", playerid); format(string3, sizeof(string3), "The number is %i.",number); //-> The number is 42. format(string4, sizeof(string4), "This is a %s containing the number %i.", string, number); format(AllStrings, sizeof(AllStrings), "%s\n%s\n%s\n%s", string, string2, string3, string4); ShowPlayerDialog(playerid, STATS_DIALOG, DIALOG_STYLE_MSGBOX, "Player Statistic(s)", AllStrings, "Close", ""); Код:
format(string, sizeof(string), "My Name is: %s", pName); format(string2, sizeof(string2), "My ID is: %d", playerid); format(string3, sizeof(string3), "The number is %i.",number); //-> The number is 42. format(string4, sizeof(string4), "This is a %s containing the number %i.", string, number); format(AllStrings, sizeof(AllStrings), "%s\n%s\n%s\n%s", string, string2, string3, string4); SendClientMessage(playerid, -1, AllStrings); Код:
format(string, sizeof(string), "My Name is: %s", pName); format(string2, sizeof(string2), "My ID is: %d", playerid); format(string3, sizeof(string3), "The number is %i.",number); //-> The number is 42. format(string4, sizeof(string4), "This is a %s containing the number %i.", string, number); format(AllStrings, sizeof(AllStrings), "%s\n%s\n%s\n%s", string, string2, string3, string4); SendClientMessageToAll(-1, AllStrings); ![]() |