Posts: 95
Threads: 15
Joined: Nov 2012
D:\HIGHSP~1\GAMEMO~1\TDM.pwn(1194) : error 021: symbol already defined: "OnPlayerUpdate"
pawn Код:
1194 public OnPlayerUpdate(playerid)
need help
Posts: 2,528
Threads: 124
Joined: Jul 2009
Reputation:
0
You have 2 OnPlayerUpdate in one pwn file. Find another one and merge them
Posts: 95
Threads: 15
Joined: Nov 2012
nope i dont have antoher one
Posts: 95
Threads: 15
Joined: Nov 2012
Posts: 11,827
Threads: 33
Joined: Dec 2011
Reputation:
0
Misiur is correct. You've two OnPlayerUpdate callbacks, compiler cannot be wrong..
Use "Ctrl + F" and search for "OnPlayerUpdate". Check the line and then do it once again with "Direction > Backward" and see if there's another same callback. One of them is at line 1194.
Posts: 1,666
Threads: 126
Joined: Aug 2011
Reputation:
0
You can not have two callback with the same name.