Problem saving coords
#1

I have
pawn Код:
new posxxx[MAX_PLAYERS];
new posyyy[MAX_PLAYERS];
new poszzz[MAX_PLAYERS];
pawn Код:
new Float:ax,Float:ay,Float:az; //line 1
GetPlayerPos(playerid,ax,ay,az); //line 2
posxxx[playerid] = ax; //line 3
posyyy[playerid] = ay; //line 4
poszzz[playerid] = az; //line 5
And i get the errors
Код:
warning 213: tag mismatch // line 3
warning 213: tag mismatch //line 4
warning 213: tag mismatch //line 5
Help Please
Reply
#2

Your variables should be defined like this:
pawn Код:
new Float:posxxx[MAX_PLAYERS];
new Float:posyyy[MAX_PLAYERS];
new Float:poszzz[MAX_PLAYERS];
Reply
#3

Thnx , it works fine
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)