Hello i want to change [ per a . so i can write .createworld and not [createworld, how can do it?, im learning how to create my own shard and feel the dot more easy access than a [.


Thanks in advance.



ps: sorry my "engrish"
 
Scripts/Commands/Handlers.cs Should be about line 22
Just change
Code:
CommandSystem.Prefix = "[";
to
Code:
CommandSystem.Prefix = ".";
and save it.
 
Back