Search found 133 matches

by Omni
Tue Dec 13, 2011 11:28 pm
Forum: Whatever
Topic: Codebase help.
Replies: 6
Views: 6983

Re: Codebase help.

Not the forums for this.
by Omni
Sat Sep 24, 2011 7:26 am
Forum: Help Forum
Topic: cant figure out something
Replies: 5
Views: 3637

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.
by Omni
Sat Sep 24, 2011 7:04 am
Forum: Help Forum
Topic: cant figure out something
Replies: 5
Views: 3637

Re: cant figure out something

What game?
by Omni
Thu Sep 22, 2011 7:35 pm
Forum: General Forum
Topic: Menu Bar
Replies: 2
Views: 3698

Re: Menu Bar

Right click at the top, reselect the blank option. Can also do the same with the map window.
by Omni
Thu Sep 22, 2011 4:39 am
Forum: Scripts & Packages
Topic: Nestable Labels
Replies: 11
Views: 9051

Re: Nestable Labels

Mind posting a screenshot?
by Omni
Fri Sep 16, 2011 3:13 pm
Forum: Help Forum
Topic: Where do I start from?
Replies: 9
Views: 5908

Re: Where do I start from?

I feel like the best choice here is to get a non-Mac. :sagenod:
by Omni
Wed Sep 14, 2011 3:17 am
Forum: Mudlet Development
Topic: Interest in a Mudlet wiki [now available!]
Replies: 44
Views: 51358

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...
by Omni
Mon Sep 12, 2011 5:46 pm
Forum: Help Forum
Topic: Help with a highlight script
Replies: 11
Views: 14799

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...
by Omni
Sat Sep 10, 2011 10:52 pm
Forum: Help Forum
Topic: Need some Help
Replies: 7
Views: 4252

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.
by Omni
Sat Sep 10, 2011 6:09 pm
Forum: Scripts & Packages
Topic: display()
Replies: 10
Views: 8619

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...