how to disable # from gm below 60 and lock item

minx123

New member
Messages
283
Points
0
Github
minx123
i need to disable # from gm command below GM 60.

so all command to give player they cant use..

it is possible?

and how to lock all item from they made give to player?

or its bound to gm account only.

right now my server all item is trade able.. worry they will give to player so i want lock all to their account cant be trade without GM 99.

 
@@minx123

to disabled #item command use boolean

groups.conf
item: [true,false]

construction of boolean [ @ , # ]

so [ @@True, #false ]

your GM Level 60 you can put permission

can_trade:false

can_trade_bound: false

example :
 

Code:
{	id: 60	name: "Custom GM"	level: 60	commands: { /* PUT COMMANDS HERE */ }	permissions: {		can_trade : false		can_trade_bound : false	}},
 
Last edited by a moderator:
@@minx123

to disabled #item command use boolean

groups.conf

item: [true,false]

construction of boolean [ @ , # ]

so [ @@True, #false ]

your GM Level 60 you can put permission

can_trade:false

can_trade_bound: false

example :

{ id: 60 name: "Custom GM" level: 60 commands: { /* PUT COMMANDS HERE */ } permissions: { can_trade : false can_trade_bound : false }},
thank you sir. 

 
Back
Top