Posts: 1,648
Threads: 482
Joined: Jun 2010
Although this isn't a script request thread, I'm not one to complain. But most are, so make sure you post in appropriate section next time.
pawn Код:
#define COL_PINK "{FF00EA}" //Put this at the top of your script. - COLOUR FORMATTING.
#define COL_RED "{FF0000}" //SAME WITH THIS ONE.
new string[64];
format(string, sizeof(string), "Use "COL_PINK"'/adminlogin' to login as an "COL_RED"Admin");
if(AdminLevel[playerid] > 0) SendClientMessage(playerid, COLOUR_WHITE, string);
//Replace AdminLevel[playerid] with the variable you use.
Posts: 66
Threads: 19
Joined: Apr 2014
Reputation:
0
C:\Documents and Settings\s\Desktop\1\gamemodes\tttt.pwn(44492) : error 021: symbol already defined: "format"
C:\Documents and Settings\s\Desktop\1\gamemodes\tttt.pwn(44493) : error 010: invalid function or declaration
Posts: 66
Threads: 19
Joined: Apr 2014
Reputation:
0
#define COL_PINK "{FF00EA}"
#define COL_RED "{FF0000}"
new string[64];
format(string, sizeof(string), "Use "COL_PINK"'/adminlogin' to login as an "COL_RED"Admin");
if(AdminLevel[playerid] > 0) SendClientMessage(playerid, COLOUR_WHITE, string);