Help...
#1

i do this:
Код:
new PlayerExp[MAX_PLAYERS];
PlayerExp[playerid] = dini_Float(GetPlayerFile(playerid),"Exp");
and i have this warningr:
Код:
tag mismatch
why?
Reply
#2

new Float:PlayerExp[MAX_PLAYERS];
Reply
#3

Change:
pawn Код:
new PlayerExp[MAX_PLAYERS];
to:
pawn Код:
new Float:PlayerExp[MAX_PLAYERS];
dini_Float returns a float value and your array is not a float type.
Reply
#4

tnx for help
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)