26.11.2014, 16:34
Try this:
And see if anything comes up in your console (just to see if the methods are even being called)
Код:
public OnPlayerText(playerid, text[]) { if(text[0] == '*' && P_Data[playerid][VIP] >= 1) print("VIP test"); else if(text[0] == '#' && P_Data[playerid][pAdmin] >= 1) print("Admin test"); return 1; }