I have searched all over for this. Basically, just want to script executing multiple permissions after Rust server and associated plugins are updated. For example:
o.group add FRIEND
o.group add ENEMY
o.usergroup add jack FRIEND
o.usergroup add larry ENEMY
o.grant group FRIEND backpacks.size.144
o.grant user LARRY backpacks.size.48
// would like something like:
o.group add FRIEND ; o.group add ENEMY ; o.usergroup add jack FRIEND ; o.usergroup add larry ENEMY
o.grant group FRIEND backpacks.size.144 ; o.grant user LARRY backpacks.size.48
Am I correct in assuming "F1 - console" only allows ONE command per line?
I have tried ";" "/" "\" to simulate end-of-line but no-go.
I appreciate your time.
-Jack