Search found 133 matches
- Tue Dec 13, 2011 11:28 pm
- Forum: Whatever
- Topic: Codebase help.
- Replies: 6
- Views: 8824
Re: Codebase help.
Not the forums for this.
- Sat Sep 24, 2011 7:26 am
- Forum: Help Forum
- Topic: cant figure out something
- Replies: 5
- Views: 4131
Re: cant figure out something
Aetolia gives balances with gmcp. Put display(gmcp) in an alias to see the syntax, then follow the example for the stats. No clue about Imperian and Achaea, but do know Lusternia recently added balances to gmcp.
- Sat Sep 24, 2011 7:04 am
- Forum: Help Forum
- Topic: cant figure out something
- Replies: 5
- Views: 4131
Re: cant figure out something
What game?
- Thu Sep 22, 2011 7:35 pm
- Forum: General Forum
- Topic: Menu Bar
- Replies: 2
- Views: 4148
Re: Menu Bar
Right click at the top, reselect the blank option. Can also do the same with the map window.
- Thu Sep 22, 2011 4:39 am
- Forum: Scripts & Packages
- Topic: Nestable Labels
- Replies: 11
- Views: 10791
Re: Nestable Labels
Mind posting a screenshot?
- Fri Sep 16, 2011 3:13 pm
- Forum: Help Forum
- Topic: Where do I start from?
- Replies: 9
- Views: 7017
Re: Where do I start from?
I feel like the best choice here is to get a non-Mac. :sagenod:
- Wed Sep 14, 2011 3:17 am
- Forum: Mudlet Development
- Topic: Interest in a Mudlet wiki [now available!]
- Replies: 44
- Views: 57240
Re: Interest in a Mudlet wiki [now available!]
When putting a note up on the wiki, it's a good idea to use this: <table frame="box" width="100%"> <caption>Note</caption> <tr> <td> Note text here. </td> </tr> </table> As it makes the note more noticeable. There are examples of it, mainly on the Migrating page. There are severa...
- Mon Sep 12, 2011 5:46 pm
- Forum: Help Forum
- Topic: Help with a highlight script
- Replies: 11
- Views: 16736
Re: Help with a highlight script
function highlight() for k,v in ipairs(listFriends) do highlight[v] = tempRegexTrigger("\\b(?i)"..v.."\\b", [[selectString("]]..v..[[", 1) fg("red") resetFormat()]]) end end The name of your function is the same name of your table. And killRegexTrigg...
- Sat Sep 10, 2011 10:52 pm
- Forum: Help Forum
- Topic: Need some Help
- Replies: 7
- Views: 5025
Re: Need some Help
First match is multimatches[1], all others increase by one. So second is multimatches[2], and so on and so forth.
- Sat Sep 10, 2011 6:09 pm
- Forum: Scripts & Packages
- Topic: display()
- Replies: 10
- Views: 10243
Re: display()
Using this new display(), I grabbed a text dump of Mudlet's _G. I don't know if anyone else thinks this is handy, but I have used it before to find esoteric, undocumented functions in the past. I can't guarantee this is the latest version of Mudlet (though I think it is). At the very least, we coul...