04.03.2012, 06:10
(
Последний раз редактировалось clavador; 05.03.2012 в 07:41.
)
I've found what was causing the problems:
I'm using DjSon by Draco Blue to store and retrieve data.
I've found that if I do:
it doesn't work and messes up my whole script.
i have to do:
It was driving me crazy!
I'm using DjSon by Draco Blue to store and retrieve data.
I've found that if I do:
pawn Код:
GetInt( playerid, string[] )
{
return djInt(PlayerName(playerid),string);
}
i have to do:
pawn Код:
GetInt( playerid, string[] )
{
new value = djInt(PlayerName(playerid),string);
return value;
}