02.03.2014, 12:25
So let me explain .
In Admin FS i have the Saving System with BUD.
I want to extract a function from LuxAdmin to GameMode for example
AccInfo[playerid][Coins] -> How to add in Gamemode
If i have in Admin System an array for example
And in GameMode i want to use this array for example
How to do this . PLEASE HELP!
In Admin FS i have the Saving System with BUD.
I want to extract a function from LuxAdmin to GameMode for example
AccInfo[playerid][Coins] -> How to add in Gamemode
If i have in Admin System an array for example
pawn Код:
new Array[MAX_PLAYERS]
public OnPlayerConnect(playerid)
{
Array[playerid] = 1;
}
pawn Код:
CMD:msg(playerid, params[])
{
if(Array[playerid] == 1)
return etc..;
}