Hello! I'm having trouble editing my group commands for level 0 group_id. I would like normal players by default to be able to use autoloot and everything I have tried doesn't seem to be working. I have edited the script and reloaded everything in the game-client side, but when I try to use a command on a normal account, it just shows up as normal chat text, not "Invalid ID" or anything.
This is my current script:
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 */
autoloot: true
alootid: true
go: true
permissions: {
/* without this basic permissions regular players could not
trade or party */
can_trade: true
can_party: true
command_enable: true
}
},
{
id: 1
name: "Super Player"
inherit: ( "Player" ) /* can do everything Players can and more */
level: 0
commands: {
/* informational commands */
commands: true
charcommands: true
help: true
rates: true
uptime: true
showdelay: true
exp: true
mobinfo: true
iteminfo: true
whodrops: true
time: true
jailtime: true
hominfo: true
homstats: true
showexp: true
showzeny: true
whereis: true
/* feature commands */
refresh: true
noask: true
noks: true
autoloot: true
alootid: true
autoloottype: true
autotrade: true
request: true
go: true
breakguild: true
channel: true
langtype: true
}
permissions: {
}
},
Any help would be appreciated. Thank you!