Search found 5027 matches

by Vadi
Fri Aug 26, 2022 1:02 pm
Forum: Help Forum
Topic: Replace a text in a specific position in a user window
Replies: 10
Views: 8082

Re: Replace a text in a specific position in a user window

Capture all the mobs, and then redraw the table once. Try it out - you'll find the performance of that quite satisfying.
by Vadi
Fri Aug 26, 2022 5:25 am
Forum: Help Forum
Topic: Replace a text in a specific position in a user window
Replies: 10
Views: 8082

Re: Replace a text in a specific position in a user window

You could just change the echo you are outputting, is that what you mean?
by Vadi
Tue Aug 16, 2022 6:06 pm
Forum: General Forum
Topic: Any other enginerds/devs having a hard time searching for simple things?
Replies: 2
Views: 17869

Re: Any other enginerds/devs having a hard time searching for simple things?

Hey fair concern. There's a lot of information in the manual but we don't necessarily look at it from a SEO lens, any help there would be welcome :) For the wait/delay method, check out the https://wiki.mudlet.org/w/Manual:Introduction page, especially the timers part within. https://wiki.mudlet.org...
by Vadi
Sat Aug 13, 2022 5:31 am
Forum: International
Topic: plz support korean language
Replies: 6
Views: 52018

Re: plz support korean language

Where will you find this useful and what games can we test it with?
by Vadi
Mon Aug 01, 2022 2:59 pm
Forum: Help Forum
Topic: Aggregating multiple lines.
Replies: 5
Views: 5668

Re: Aggregating multiple lines.

http://www.youtube.com/watch?v=nwfjzRlgG9E&hd=1 might also help for a video format
by Vadi
Tue Jul 05, 2022 4:38 pm
Forum: Mudlet Mapper
Topic: (mapping script) Generic GMCP Mapper Script
Replies: 9
Views: 16904

Re: (mapping script) Generic GMCP Mapper Script

Code: Select all

exits = gmcp.Room.Info.exits
should be

Code: Select all

exits = table.deepcopy(gmcp.Room.Info.exits)
since it tries to manipulate the 'exits' key afterwards. See https://github.com/Mudlet/Mudlet/issues/6019
by Vadi
Sat Jun 25, 2022 5:21 pm
Forum: General Forum
Topic: Can mudlet provide websocket related functions
Replies: 1
Views: 18216

Re: Can mudlet provide websocket related functions

That would be nice to have, if you could send in a pull request adding it, we'll merge it.

In the meantime have a look at using viewtopic.php?t=23136&p=46785#p46785
by Vadi
Sat Jun 11, 2022 5:54 am
Forum: Help Forum
Topic: tempLineTrigger help
Replies: 5
Views: 4184

Re: tempLineTrigger help

I've removed it from the docs and we'll remove the no-op argument (as it had no effect right now anyway) from a future version in Mudlet. Backwards compatibility is our promise in Mudlet and given how nobody found this for the last 4 years - plus the fact that it had no practical effect in scripts -...