You mean that bar behind C:\> ?
Theres no command for it.
You have to copy it into the buffer, and erase it. Time based i mean.
or something like
std::stringstream inputbuffer;
inputbuffer << your_text;
if((GetTickCount() / 1000) >= Timer_Next)
{
inputbuffer << "_";
Timer_Next = (GetTickCount() / 1000) + 1
}
dbText(0,0, const_cast<char*>inputbuffer.str().c_str()
i don't think it's possible if you use the dbInput command, you have to write your own.
Edit: Oh, you have to set it for a whole time, with that code it'll just be shown for one frame