wrong Dream thats for an old revision of it,
groups: (
{
id: 0 /* group 0 is the default group for every new account */
name: "Player"
level: 0
inherit: ( /*empty list*/ )
commands: {
/* no commands by default */ //<--- add commands here
}
permissions: {
/* without this basic permissions regular players could not
trade or party */
can_trade: true
can_party: true
}
},
kakashi you need to add commands to that part of the group.conf file in ur /conf/ folder,
to add commands you just type the name and put true afterwards i'll put an example
groups: (
{
id: 0 /* group 0 is the default group for every new account */
name: "Player"
level: 0
inherit: ( /*empty list*/ )
commands: {
/* no commands by default */
rates: true
commands: true
help: true
exp: true //<--- custom commands and what not. just read the file and you'll know how it works.
}
permissions: {
/* without this basic permissions regular players could not
trade or party */
can_trade: true
can_party: true
}
},