Search found 176 matches
- Thu Mar 24, 2011 4:24 pm
- Forum: Help Forum
- Topic: Possible to check for lag?
- Replies: 2
- Views: 2984
Re: Possible to check for lag?
Aptly named getNetworkLatency()
- Wed Mar 16, 2011 10:56 pm
- Forum: Help Forum
- Topic: A few quick questions about some of the code i've started
- Replies: 7
- Views: 6565
Re: A few quick questions about some of the code i've starte
There seems to be some confusion about the correct way to address table entries in some of your code snippets.
If we have the table: mytable = {firstentry = "foo", secondentry = "bar", thirdentry = "foobar"} then there are two different ways of addressing individual entries.
Variant 1: mytable ...
If we have the table: mytable = {firstentry = "foo", secondentry = "bar", thirdentry = "foobar"} then there are two different ways of addressing individual entries.
Variant 1: mytable ...
- Mon Mar 07, 2011 1:02 pm
- Forum: Help Forum
- Topic: Complicated regex matching question
- Replies: 4
- Views: 4219
Re: Complicated regex matching question
\w can match anything \d does, so [\w\d]+ is exactly the same as \w+Yetzederixx wrote:^run ([\w\d]+)$
- Sun Mar 06, 2011 12:18 pm
- Forum: Help Forum
- Topic: table.insert position
- Replies: 2
- Views: 2978
Re: table.insert position
In a key-value pair table, simple do: guys[nickname] = name
- Tue Mar 01, 2011 10:25 am
- Forum: Help Forum
- Topic: how to trigger a room description?
- Replies: 5
- Views: 5515
Re: how to trigger a room description?
The line delta bug isn't fixed in the 2.0 snapshot for me. You can still set it however:
- Check the multiline/AND checkbox.
- Right click on the small white line that's supposed to be the line delta field.
- Click on "Select All". The contents of the box are now selected, even if you can't see it ...
- Check the multiline/AND checkbox.
- Right click on the small white line that's supposed to be the line delta field.
- Click on "Select All". The contents of the box are now selected, even if you can't see it ...
- Tue Mar 01, 2011 10:19 am
- Forum: General Forum
- Topic: Mudlet-2.0 release candidates [latest: Mudlet 2.0 final]
- Replies: 190
- Views: 3166674
Re: 2.0 snapshots
Any estimate on if and when the line delta bug in the Mac version can be fixed? That's really my biggest issue with Mudlet right now, since I tend to shield all my regexes, and seeing my line delta would be quite useful for that.
- Sun Feb 20, 2011 1:34 pm
- Forum: Scripts & Packages
- Topic: Custom Quick Queues
- Replies: 6
- Views: 11300
Re: Custom Quick Queues
Have you registered those events at the top of the script?
You have to add any events you want to work with this next to "Add User Defined Event Handler" and click on the + button to the right of it, so you get something like:
http://i55.tinypic.com/jr8e40.png
That's how it looks for me ...
You have to add any events you want to work with this next to "Add User Defined Event Handler" and click on the + button to the right of it, so you get something like:
http://i55.tinypic.com/jr8e40.png
That's how it looks for me ...
- Mon Feb 14, 2011 12:59 am
- Forum: General Forum
- Topic: Look and Feel
- Replies: 53
- Views: 84029
Re: Look and Feel
To make this point again, im not saying Mudlet should do this natively. If i was then sure, I missed the point. But im not, im saying that Mudlet is not at present meeting the ui requirements that many new players will expect, not because it CANT but because nobody HAS.
How can you be sure of ...
- Sat Feb 12, 2011 1:10 pm
- Forum: Help Forum
- Topic: Auto rescue triggers
- Replies: 11
- Views: 10276
Re: Auto rescue triggers
I think "situationally acceptable" is a bit harsh. It is part of most regex flavours I am aware of, and the fact that some interpreters don't support it doesn't mean much: Some interpreters also don't support a ton of other regex features which they probably should support, since they are good and ...
- Sat Feb 12, 2011 2:32 am
- Forum: Help Forum
- Topic: Auto rescue triggers
- Replies: 11
- Views: 10276
Re: Auto rescue triggers
Mudlet does, though.tsuujin wrote:Not all regex interpreters accept pattern groups inside brackets.