|
When using telnet, you don't need to type in "/run". You just need to put in "#" infront of it instead. So instead of
/run notice("test")
it's
#notice("test")
For character specific commands such as learn_all_skill. You have to put the character name at the end of most commands. For example, in game you usually put in:
/run learn_all_skill()
In telnet or the game server console it's:
#learn_all_skill("character_name")
Have fun.
|