PM not to be able to trade or drop items

09/21/2010 17:04 gxaris#1
Hello ppl please if someone can help me on this one i would be gratefull....
i would like to have the PM not to drop items or trade with others. The GM should be able to do those actions.

I am using Conquer-SX but if you could tell me in any other source i will get the point.

thank you all in advance!
09/21/2010 18:48 .Beatz#2
Search.

There is a thread on how to make PM and GM drop so just reverse it.
09/21/2010 21:02 gxaris#3
i have already did my search and have seen the code but i am not a progammer and i dont know which parts where changed, i know its Trade.cs DropAnItem.cs and DropMoney.cs
Trust me for a non programmer i have search a lot!!!
I still appreciate any help form the gurus :)
thank you!!
09/21/2010 21:07 .Beatz#4
Well it explains on the thread what to change to make GMs and PMs able to pk. So all you need to do is "Reverse Engineer" it so to speak.

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]
09/21/2010 22:23 Arcо#5
Simple auth check.
if (GC.AuthInfo.Status != "PM")
{
Action to be called;
}
else
return;