Posts: 112
Threads: 8
Joined: Jan 2013
Quote:
Originally Posted by ancezas
hi, i have this script:
pawn Код:
CallRemoteFunction("GetPatirtis", "i", zInfo[ playerid ][ Patirtis ]); CallRemoteFunction("GetPinigai", "i", zInfo[ playerid ][ Pinigai ]);
and in .inc have this one:
pawn Код:
forward GetMoney(playerid); public GetMoney(playerid) { return zInfo[playerid][Pinigai]; } forward GetPatirtis(playerid); public GetPatirtis(playerid) { return zInfo[playerid][Patirtis]; }
have these Errors on include:
how do i shear that?
|
Thats not possibel because you can call every Function but not the values.
you can use an include it put all values there or you can use PVars , or you can hook function in your gamemode
which change the values of your array