Just a silly little question but it is possible to have the [PM] pking but not the[GM]?
public bool GM
public bool PM
{
get { return (AuthInfo.Status.Contains("PM")); }
}
public bool GM
{
get { return (AuthInfo.Status.Contains("PM") || AuthInfo.Status.Contains("GM")); }
}
public bool GM
{
get { return (AuthInfo.Status.Contains("GM")); }
}
Quote:
yes findunder it if its not alredy there i dotn rember if i added it or not but under putCode:public bool GM
and editCode:public bool PM { get { return (AuthInfo.Status.Contains("PM")); } }
toCode:public bool GM { get { return (AuthInfo.Status.Contains("PM") || AuthInfo.Status.Contains("GM")); } }
then GMs will not beable to pk and pms willCode:public bool GM { get { return (AuthInfo.Status.Contains("GM")); } }
note:: there will be no blocks for pms no more so thay can pk sell buy etc.etc.