I wanted to make a timer to send a newline to the mud (to refresh the prompt) and it tells me that the timer cannot be blank. Anyway to allow newlines to be sent without bothering to script?
Blank timers
Posted by Poromenos on Thu 17 Jun 2004 12:01 PM — 5 posts, 19,254 views.
Well, the script is pretty short:
<timers>
<timer enabled="y" second="2" send_to="12" >
<send>Send ""</send>
</timer>
</timers>
Could you not send just a space and achieve the same effect?
I could, it's not that big of a problem, I'm just saying that why should MUclient stop me from doing something that's perfectly legal...
It is smart enough, if you will pardon the expression, to not allow you to enter that.
What you can do is this:
This pastes in a timer with a newline in it. Since it doesn't go through the GUI timer validation it lets you have a blank send box.
What you can do is this:
<timers>
<timer enabled="y" second="2" send_to="0" >
<send>
</send>
</timer>
</timers>
This pastes in a timer with a newline in it. Since it doesn't go through the GUI timer validation it lets you have a blank send box.