it doesnt skip to next line
#1

Sorry for my newbieness, but this doesnt skip to next line, any reason why?

PHP код:
CMD:stats(playeridparams[])
{
    new 
string[220], tempString[50];
    
format(tempStringsizeof(tempString), "{FFFFFF}Cash: {FFFF00}$%d /n"GetPlayerMoney(playerid));
    
strcat(stringtempString);
    
    
format(tempStringsizeof(tempString), "{FFFFFF}Admin Level: {FFFF00}%i /n"PlayerInfo[playerid][pAdmin]);
    
strcat(stringtempString);
    
    
format(tempStringsizeof(tempString), "{FFFFFF}Kills: {FFFF00}%i /n"PlayerInfo[playerid][pKills]);
    
strcat(stringtempString);
    
    
format(tempStringsizeof(tempString), "{FFFFFF}Deaths: {FFFF00}%i /n"PlayerInfo[playerid][pDeaths]);
    
strcat(stringtempString);
    
    
format(tempStringsizeof(tempString), "{FFFFFF}Score: {FFFF00}%i"GetPlayerScore(playerid));
    
strcat(stringtempString);
    
    
ShowPlayerDialog(playeridDIALOG_STATSDIALOG_STYLE_MSGBOX"Stats"string"Ok""");
    return 
1;

Reply
#2

Because you use /n instead of \n
Try this:
PHP код:
CMD:stats(playeridparams[])
{
    new 
string[220], tempString[50];
    
format(tempStringsizeof(tempString), "{FFFFFF}Cash: {FFFF00}$%d \n"GetPlayerMoney(playerid));
    
strcat(stringtempString);
    
    
format(tempStringsizeof(tempString), "{FFFFFF}Admin Level: {FFFF00}%i \n"PlayerInfo[playerid][pAdmin]);
    
strcat(stringtempString);
    
    
format(tempStringsizeof(tempString), "{FFFFFF}Kills: {FFFF00}%i \n"PlayerInfo[playerid][pKills]);
    
strcat(stringtempString);
    
    
format(tempStringsizeof(tempString), "{FFFFFF}Deaths: {FFFF00}%i \n"PlayerInfo[playerid][pDeaths]);
    
strcat(stringtempString);
    
    
format(tempStringsizeof(tempString), "{FFFFFF}Score: {FFFF00}%i"GetPlayerScore(playerid));
    
strcat(stringtempString);
    
    
ShowPlayerDialog(playeridDIALOG_STATSDIALOG_STYLE_MSGBOX"Stats"string"Ok""");

    return 
1;

Reply
#3

Quote:

Use \n to start a new line and \t to tabulate.

Source: https://sampwiki.blast.hk/wiki/How_to_Create_a_Dialog
it's really helpful ^^
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)