21.06.2013, 12:13
I'm sending from fs the enum to gm
I'm thinking the enum is not simple variable, could be other type like bool,float,etc
pawn Code:
CallRemoteFunction("callMe","ddd",0,shit,PlayerInfo[0][shit]);
forward callMe(playerid,key,date);
public callMe(playerid,key,date)
{
PlayerInfo[playerid][key]=date;//line 36
printf("shit = %d",PlayerInfo[playerid][key]); //line 37
return 1;
}