tag mismatch
#1

pawn Код:
new Float:X, Float:Y, Float:Z;
            GetPlayerPos(playerid, X, Y, Z);
            BombaX[playerid] = X; //warning 213: tag mismatch
            BombaY[playerid] = Y; //warning 213: tag mismatch
            BombaZ[playerid] = Z; //warning 213: tag mismatch
How to fix warning "tag mismatch"?
Reply
#2

Try this:

pawn Код:
new Float:Bomba[MAX_PLAYERS];
Reply
#3

Just:
pawn Код:
GetPlayerPos(playerid, BombaX[playerid] , BombaY[playerid] , BombaZ[playerid] );
And look if var. BombaX-Z is a float( Float:BombaX[MAX_PLAYERS]);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)