18.01.2012, 19:22
Код:
C:\Users\Tadas\Desktop\Gang Wars\gamemodes\SSSGW.pwn(2506) : error 028: invalid subscript (not an array or too many subscripts): "IRStextdraw" C:\Users\Tadas\Desktop\Gang Wars\gamemodes\SSSGW.pwn(2506) : warning 215: expression has no effect C:\Users\Tadas\Desktop\Gang Wars\gamemodes\SSSGW.pwn(2506) : error 001: expected token: ";", but found "]" C:\Users\Tadas\Desktop\Gang Wars\gamemodes\SSSGW.pwn(2506) : error 029: invalid expression, assumed zero C:\Users\Tadas\Desktop\Gang Wars\gamemodes\SSSGW.pwn(2506) : fatal error 107: too many error messages on one line
Код:
new Text:IRStextdraw; // on game mode int IRStextdraw = TextDrawCreate(500.000000, 12.000000, "127 IRS"); TextDrawBackgroundColor(IRStextdraw, 255); TextDrawFont(IRStextdraw, 1); TextDrawLetterSize(IRStextdraw, 0.280000, 1.000000); TextDrawColor(IRStextdraw, -1767449089); TextDrawSetOutline(IRStextdraw, 1); TextDrawSetProportional(IRStextdraw, 1); // stock UpdateIRS() { new string[256]; for(new i=0;i<MAX_PLAYERS;i++) { if(IRSupdate[i] == 1) { format(string,sizeof(string),"%d IRS",IRS[i]); TextDrawSetString(IRStextdraw[i],string); TextDrawShowForPlayer(i,IRStextdraw[i]); IRSupdate[i]=0; } } }