Quote:
|
Originally Posted by prozac424242
cannot add WEAPONS/bagname/weapon
|
There's something in serveropts called 'npcrights', and if it's true, which it should be for certain reasons, then you need to have rights to the individual bagname. So add "rw WEAPONS/bagname/*" to your rights list, or you can go with "rw WEAPONS/*/*" to give yourself rights to every weapon.
Quote:
|
Originally Posted by prozac424242
also i kinda got my own q menu replacement made,
i am guessing i can parse the weapon name on the / charachter
for different 'folders'in my custom system?
|
That would work. In GS2, you can use string.tokenize(delim) and have the "/" character, in quotes, as the delim. This would tokenize the string based not only on spaces, but on both spaces and the "/" character. GS1 uses the tokenize2 delims,string; command, and it works the same, but the "/" character doesn't need to be in quotes.