Compiler stop responding!
#1

hello guys

my compiler stop responding after i have added this to FS

pawn Код:
#define info_text "{FFFFFF}* Account information for nick '{00FF00}%s{FFFFFF}' are following:\n\n1). Account Password: {FF0000}Not Available (Disabled By Staff){FFFFFF}\n2). Admin Level: '{00FF00}%d{FFFFFF}'\n3). Vip Level: '{00FF00}%d{FFFFFF}'"
#define info_text1 "\n4). Money: '{00FF00}$%d{FFFFFF}'\n5). Score: '{00FF00}%d{FFFFFF}'\n6). Kills: '{00FF00}%d{FFFFFF}'\n7). Death: '{00FF00}%d{FFFFFF}'"


//

new string[340], pname[MAX_PLAYER_NAME];
                GetPlayerName(playerid, pname, sizeof(pname));
                format(string, sizeof(string), ""info_text""info_text1"", pname , pInfo[playerid][Adminlevel], pInfo[playerid][VIPlevel], pInfo[playerid][Money], pInfo[playerid][Scores], pInfo[playerid][Kills], pInfo[playerid][Deaths]);
                ShowPlayerDialog(playerid, account_info, DIALOG_STYLE_MSGBOX, "{00FF00}Account Info", string,"Close","");
Reply
#2

does it to me all the time, just wait and itll respond
Reply
#3

nope i have waited for 30 minutes but it still dont respond
Reply
#4

Bump any help?
Reply
#5

""info_text""info_text1""

format(string, sizeof(string), ""info_text""info_text1"", pname , pInfo[playerid][Adminlevel], pInfo[playerid][VIPlevel], pInfo[playerid][Money], pInfo[playerid][Scores], pInfo[playerid][Kills], pInfo[playerid][Deaths]);

Should be

format(string, sizeof(string), info_text info_text1, pname , pInfo[playerid][Adminlevel], pInfo[playerid][VIPlevel], pInfo[playerid][Money], pInfo[playerid][Scores], pInfo[playerid][Kills], pInfo[playerid][Deaths]);
Reply
#6

fixed :EDIT:
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)