15.02.2009, 19:29
Quote:
Originally Posted by [SAP
Ycto ]
Hai, Make sure that the Color[playerid] is a string, then use SetPlayerColor(playerid,HexToInt(Color[playerid])); Search the forums for the HexToInt function (I think it's somewhere in a big include, with various useful functions.) |
Here's the function for people searching when they need it.
pawn Код:
stock HexToInt(string[]) {
if (string[0]==0) return 0;
new i;
new cur=1;
new res=0;
for (i=strlen(string);i>0;i--) {
if (string[i-1]<58) res=res+cur*(string[i-1]-48); else res=res+cur*(string[i-1]-65+10);
cur=cur*16;
}
return res;
}