02.11.2017, 10:14
There are couple of methods like CallRemoteFunction, properties, SVars, GVar plugin etc.
This is an example:
This is an example:
pawn Код:
// <filterscript>
#define GetPlayerAdmin(%0) CallRemoteFunction("GM_GetPlayerAdmin", "i", %0)
// <gamemode>
forward GM_GetPlayerAdmin(playerid);
public GM_GetPlayerAdmin(playerid) return PlayerInfo[playerid][pAdmin];

