22.01.2012, 12:35
I suggest in that case you return it as a string too, then convert it to an integer where you actually need it. You can't return different datatypes in the same function.
Example:
EDIT: Sorry didn't see your edit
No problem
Example:
pawn Code:
new Result[128], money;
Result = Load("serverdata", "money", "player"); // Store as a string
money = strval(Result); // Convert to integer

