[PM]/[GM] question

01/08/2010 22:22 WHITELIONX#1
Just a silly little question but it is possible to have the [PM] pking but not the[GM]?
01/08/2010 22:41 taylor2846#2
yes find
Code:
public bool GM
under it if its not alredy there i dotn rember if i added it or not but under put

Code:
        public bool PM
        {
            get { return (AuthInfo.Status.Contains("PM")); }
        }
and edit
Code:
        public bool GM
        {
            get { return (AuthInfo.Status.Contains("PM") || AuthInfo.Status.Contains("GM")); }
        }
to
Code:
        public bool GM
        {
            get { return (AuthInfo.Status.Contains("GM")); }
        }
then GMs will not beable to pk and pms will

note:: there will be no blocks for pms no more so thay can pk sell buy etc.etc.
01/08/2010 22:43 Arcо#3
Quote:
Originally Posted by taylor2846 View Post
yes find
Code:
public bool GM
under it if its not alredy there i dotn rember if i added it or not but under put

Code:
        public bool PM
        {
            get { return (AuthInfo.Status.Contains("PM")); }
        }
and edit
Code:
        public bool GM
        {
            get { return (AuthInfo.Status.Contains("PM") || AuthInfo.Status.Contains("GM")); }
        }
to
Code:
        public bool GM
        {
            get { return (AuthInfo.Status.Contains("GM")); }
        }
then GMs will not beable to pk and pms will

note:: there will be no blocks for pms no more so thay can pk sell buy etc.etc.

Don't forget he is going to need to code it in for gms to pk and pms can't.
Also he will need to code in more stuff as in what pms and gms can do.
01/08/2010 22:47 WHITELIONX#4
[PM] and [GM] can pk trade etc at the moment I just wanted to know if I could semi revert it back so that [PM] can pk where as [GM] can not lol
01/08/2010 22:48 taylor2846#5
what i said will make it so PMS can pk and Gms can not pk if your code is alredy set so GMS and PMs cant pk