#1

How would I put like playerInfo[iTarget][pAge] into a dialog so it said Age: [Age Here]
Reply
#2

PHP код:
ShowPlayerDialog(playerid,1,DIALOG_STYLE_MSGBOX,"Age","You age is %d",playerInfo[iTarget][pAge]); 
Reply
#3

pawn Код:
CMD:dialog(playerid, params[])
{
    new str[128];
    format(str, sizeof(str), "Age: %i", playerInfo[playerid][pAge]);
    ShowPlayerDialog(playerid, 1337, DIALOG_STYLE_MSGBOX, "Your Age", str, "Close", "");
    return 1;
}
Reply
#4

And to have like Age then a line break then Number ect how would we do that?

Also that didn't work.
Reply
#5

Spirit, Your one worked but lets say I wan't to add more, How would I do that?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)