Is it possible to make commands without "/"? It sadly cant be as simple as:
on chat:
if message is "!test":
send "test"
It has to have arguments, like:
on chat:
if message is "!test <arg>":
send "test %arg%"
But that sadly doesn't work. Is there anyway to get around that?
on chat:
if message is "!test":
send "test"
It has to have arguments, like:
on chat:
if message is "!test <arg>":
send "test %arg%"
But that sadly doesn't work. Is there anyway to get around that?