Need help
#1

Quote:

D:\server\filterscripts\script.pwn(117) : error 017: undefined symbol "tInfo"
D:\server\filterscripts\script.pwn(117) : warning 215: expression has no effect
D:\server\filterscripts\script.pwn(117) : error 001: expected token: ";", but found "]"
D:\server\filterscripts\script.pwn(117) : error 029: invalid expression, assumed zero
D:\server\filterscripts\script.pwn(117) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


4 Errors.

problem please help me
Reply
#2

show us the code too
Reply
#3

Quote:

tInfo[playerid][ChatLines]++;

this is line 117
Reply
#4

Try

pawn Код:
tInfo[playerid][ChatLines] =+ 1;
Reply
#5

same problem
Reply
#6

The problem is not is the ++, but that you've not defined it.
pawn Код:
enum Info_
{
    ChatLines
};
new
    tInfo[ MAX_PLAYERS ][ Info_ ]
;
And Lz, it's +=, not =+
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)