Search found 68 matches

by zhenzh
Thu Aug 06, 2020 7:36 pm
Forum: Help Forum
Topic: Unexpected Trigger Fire
Replies: 2
Views: 12518

Unexpected Trigger Fire

At the begining, I want to confirm a consensus against trigger firing mechanism in mudlet that any trigger can only be fired by new arriving lines after the point of time the trigger itself being created, isn't it? If the above view is correct, the below scenario should not get the trigger fired: ne...
by zhenzh
Sun Jul 26, 2020 9:14 am
Forum: General Forum
Topic: geyser questions
Replies: 1
Views: 10941

geyser questions

Does MiniConsole supports image background or transparent background?
How can I get the width of scrollbar in main window
by zhenzh
Sat Jul 18, 2020 4:19 pm
Forum: Mudlet Development
Topic: How to make a custom UI
Replies: 3
Views: 28699

Re: How to make a custom UI

Got it. Geyser is what I want for UI customize.
BTW, does the main window support image background?
by zhenzh
Fri Jul 17, 2020 2:49 pm
Forum: Mudlet Development
Topic: How to make a custom UI
Replies: 3
Views: 28699

How to make a custom UI

I'm going to make a custom UI as mudlet.org home page shown for my playing mud game. like this: 捕获.PNG I have investigated Geyser, MDK, EMOC but none of are the same as the example. These minWindow methods will not arrange the size/position of main window/status bar/mapper/tabwindow as what the home...
by zhenzh
Sat May 09, 2020 10:03 am
Forum: General Forum
Topic: command separator incorrectly parsed
Replies: 9
Views: 13781

Re: command separator incorrectly parsed

Then, the send command will also be changed to send("north;;look").
Or, the "north;look" will be considered as the entire string and the ; will not be parsed as separator.
by zhenzh
Sat May 09, 2020 8:23 am
Forum: General Forum
Topic: command separator incorrectly parsed
Replies: 9
Views: 13781

Re: command separator incorrectly parsed

Yes, it can be processed in an alias as a work around. Just wonder whether there will be a better solution as some times I may run a batch of lua commands from input cli for debugging. I have to create some temp aliases and edit them again and again for different trouble shooting purpose. Updating l...
by zhenzh
Sat May 09, 2020 7:54 am
Forum: General Forum
Topic: command separator incorrectly parsed
Replies: 9
Views: 13781

Re: command separator incorrectly parsed

I use send here for there are some additional lua judgement around, for example: if string.match(line, "north") then send("north;look;south") else send("south;look;north") end Besides, the # repeat script may also be impacted. When I run #3 north;look to expect the resu...
by zhenzh
Sat May 09, 2020 7:25 am
Forum: General Forum
Topic: command separator incorrectly parsed
Replies: 9
Views: 13781

Re: command separator incorrectly parsed

How about the other non-walk comands?
When I try to do send("north;look;south")
by zhenzh
Fri May 08, 2020 9:46 am
Forum: General Forum
Topic: command separator incorrectly parsed
Replies: 9
Views: 13781

command separator incorrectly parsed

When I try running lua send() from input command line, separators were parsed incorrectly. For example, I'm using ; as separator and will send a batch of commands from lua. I used: lua send("north;north;north") While the command was considered as send("north, north, north") 3 par...
by zhenzh
Thu May 07, 2020 7:12 am
Forum: Howtos, FAQs and Tips & Tricks
Topic: How to get specified number of output lines in history
Replies: 1
Views: 8875

How to get specified number of output lines in history

I'd like to get last 10 lines received from server, how to implement that?