Dini and Dialog help
#3

you doing it wrong

pawn Код:
dini_FloatSet(file, "PlayerPos:x", PlayerInfo[playerid][pFloat:x] = 832.2277);
dini_FloatSet(file, "PlayerPos:y", PlayerInfo[playerid][pFloat:y] = -2065.9692);
dini_FloatSet(file, "PlayerPos:z", PlayerInfo[playerid][pFloat:z] = 12.8672);
wrong.

it must be

pawn Код:
dini_FloatSet(file, "PlayerPos:x", PlayerInfo[playerid][x] = 832.2277);
dini_FloatSet(file, "PlayerPos:y", PlayerInfo[playerid][y] = -2065.9692);
dini_FloatSet(file, "PlayerPos:z", PlayerInfo[playerid][z] = 12.8672);
edit your enum and find

pawn Код:
x,
y,
z,
make

pawn Код:
x,
y,
z,
into

pawn Код:
Float:x,
Float:y,
Float:z,
Reply


Messages In This Thread
Dini and Dialog help - by Youice - 22.05.2012, 08:25
Re: Dini and Dialog help - by MP2 - 22.05.2012, 08:26
Re: Dini and Dialog help - by JaKe Elite - 22.05.2012, 08:28
Re: Dini and Dialog help - by Youice - 22.05.2012, 08:41

Forum Jump:


Users browsing this thread: 1 Guest(s)