format(String, sizeof(String), Hallo,...
format(String, sizeof(String2),
ShowPlayerDialog(playerid,10,DIALOG_STYLE_MSGBOX,"Blabla",----Hier----,"Danke","Bitte");
Wie bekommt ich beide Strings in den Dialog
Danke im Vorraus
format(String, sizeof(String), Hallo,...
format(String, sizeof(String2),
ShowPlayerDialog(playerid,10,DIALOG_STYLE_MSGBOX,"Blabla",----Hier----,"Danke","Bitte");
Wie bekommt ich beide Strings in den Dialog
Danke im Vorraus
So:
#define DIALOG_TEST 1
new string1[200], string2[200], string3[400];
format(string1, sizeof (string1), "bla1");
format(string2, sizeof (string2), "bla2");
format(string3, sizeof (string3), "%s\n%s", string1, string2);
ShowPlayerDialog(playerid, DIALOG_TEST, DIALOG_STYLE_MSGBOX, "Test", string3, "Blub", "Blubb");
MfG
Eliot Ness
Richtig, ich habe dies schon mehrmals probiert,
doch dsa einzgste was ich damit erreich ist ein:
"Server unknown command"