24.01.2015, 14:15
Is there some kind of trick to using "\t"?
It works when I use \t\t but then the spacing is just too much. It works fine in the test script. This is how I'm doing it:
It works when I use \t\t but then the spacing is just too much. It works fine in the test script. This is how I'm doing it:
pawn Код:
else if(!PreemptSpawn{playerid})
{
if(pLoginAttempts{playerid} == 0)
{
format(tempStr, sizeof(tempStr), "{e0e0e0}Welcome back to {ee7777}Los Santos: Online!{e0e0e0}\n\nAccount Name:\t{ee7777}%s\n\n{e0e0e0}Please enter your password below.", GetUserName(playerid));
return ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD, "{ee7777}Authenticate", tempStr, "Login", "Quit");
}
}

