foreach(new i: Player) { if(PlayerInfo[i][pHelper] >= 1 && PlayerInfo[i][pAdmin] < 2) { new tdate[11], thour[9], i_timestamp[3]; getdate(i_timestamp[0], i_timestamp[1], i_timestamp[2]); format(tdate, sizeof(tdate), "%d-%02d-%02d", i_timestamp[0], i_timestamp[1], i_timestamp[2]); format(thour, sizeof(thour), "%02d:00:00", hour); if(PlayerInfo[i][pHelper] == 1) { format(szDialog, sizeof(szDialog), "%s{FFFFFF}Helper\t%s\t%d\t%d\n", szDialog, GetPlayerNameEx(i), ReportHourCount[i], ReportCount[i]); } if(PlayerInfo[i][pHelper] == 2) { format(szDialog, sizeof(szDialog), "%s{FFFFFF}Senior Helper\t%s\t%d\t%d\n", szDialog, GetPlayerNameEx(i), ReportHourCount[i], ReportCount[i]); } if(PlayerInfo[i][pHelper] == 3) { format(szDialog, sizeof(szDialog), "%s{FFFFFF}Head Helper\t%s\t%d\t%d\n", szDialog, GetPlayerNameEx(i), ReportHourCount[i], ReportCount[i]); } format(szHeader, sizeof(szHeader), "Rank\tName\tHourly Requests\tRequests Today\n"); strins(szDialog, szHeader, 0); ShowPlayerDialog(playerid, DIALOG_NOTHING, DIALOG_STYLE_TABLIST_HEADERS, "Helpers Online", szDialog, "Close", ""); } }
foreach(new i: Player)
ShowPlayerDialog(playerid, DIALOG_NOTHING, DIALOG_STYLE_TABLIST_HEADERS, "Helpers Online", szDialog, "Close", "");
The two lines that stand out are:
PHP код:
PHP код:
|