ID:262770
 
Code:
//Tried 2 ways

client
command_text = ">"

client
command_text = ".alt"

mob
verb
Say(T as command_text)
set name =">"
set hidden = 1
world << "[usr] says : [T]"

/**
guide : It is also possible to turn on macro mode, in
which each keypress executes a keyboard macro, by setting
command_text to ".alt ". That stands for the Alt key,
which can be used to execute macros in normal mode.
**/


Problem description: What I'm tyring to do is allow players to type in the box on DS to input text. I've tried the ways above, but I continue to see the red error messages.

I believe you need to put a space after it.

EX:
client/command_text="> "
In response to Mega fart cannon
Ok thanks.