Posts: 66
Threads: 20
Joined: Mar 2009
Reputation:
0
: warning 213: tag mismatch
I have this warning on this line:
Admin = CreatePickup(1275, 1, 1122.7618,-2036.4864,69.8941, -1);
what to do?
Posts: 543
Threads: 7
Joined: Dec 2007
Reputation:
0
How do you create the variable Admin? Also it would be good to use another name like AdminPickup
Posts: 211
Threads: 15
Joined: Dec 2011
Reputation:
0
try this
Admin = CreatePickup(1275, 1, 1122.7618,-2036.4864,69.8941, -1.0);
Posts: 702
Threads: 94
Joined: Dec 2010
Reputation:
0
change Admin[MAX_PLAYERS] //if there are any brackets beside "Admin"
to just Admin where it is being declared.
Do:
Open Script
Ctrl + F
type "Admin["
search
remove the [] and what ever is inside the []
compile
Posts: 66
Threads: 20
Joined: Mar 2009
Reputation:
0
i made it adminpickup and the warning is gone thank you!