Add "/shop" as command too
Add "/shop" as command too please.

Alot of people don't understand it's "/s"

Would be better if both "/s" and "/shop" open the shop.

Merged post

Could you please add this?

It's so tiring to have people ask "how do I open the shop?"

/s doesnt make much sense, why not add /shop aswell?
open the ServerRewards.cs and go to line 2274 and add this
        [ChatCommand("shop")]
        private void cmdShop(BasePlayer player, string command, string[] args)
        {
            if ((configData.Options.NPCOnly && isAuth(player)) || !configData.Options.NPCOnly)
            {
                OpenStore(player);
            }
        }​


Edit:

look post #6 there are a better, more compactly and simple way

In response to dIMjIM ():
open the ServerRewards.cs and go to line 2274 and add this
[ChatCommand("shop")]...
It's unnecessary to copy the entire method, just add another command registered to the existing method.
In response to Wulf ():
It's unnecessary to copy the entire method, just add another command registered to the existing meth...
i am very nooby to this :D and i learn can u show me / us a example how it look like?
In response to dIMjIM ():
i am very nooby to this :D and i learn can u show me / us a example how it look like?
In Init() or similiar hook:

cmd.AddChatCommand("shop", this, "cmdStore");​
In response to Wulf ():
In Init() or similiar hook:

cmd.AddChatCommand("shop", this, "cmdStore");​
thx wulf

@Goldie
search line 1387 and add wulfs example
cmd.AddChatCommand("shop", this, "cmdStore");​
ok thanks guys but why isn't this in the default plugin? would be much easier to just update it

ill try this soon anyway when its a good moment
Because the plugin was never intended to be used as a shop. If you want to have alternate commands without modifying the plugin every update you can use https://umod.org/plugins/alias-system
In response to k1lly0u ():
Because the plugin was never intended to be used as a shop. If you want to have alternate commands w...
It's not intended as a shop but still says Reward Store :P

But still i think it would be handy to have it in the plugin aswell