Search found 46 matches

by Iktomi
Fri Jul 18, 2014 2:28 am
Forum: Help Forum
Topic: [SOLVED] Mapper issues
Replies: 4
Views: 3890

Re: Mapper issues

Am I the only one experiencing this?
by Iktomi
Wed Jul 16, 2014 4:28 pm
Forum: Help Forum
Topic: [SOLVED] Mapper issues
Replies: 4
Views: 3890

[SOLVED] Mapper issues

I'm running mudlet under Arch Linux 64-bit. When playing Achaea, if I attempt a room find "rf <keywords>" I get a list of room numbers, and I can click them and it'll take me there, however I cannot actually see the name of the room unless I mouse over the room number. Any ideas on how to ...
by Iktomi
Thu Jan 05, 2012 3:48 am
Forum: Howtos, FAQs and Tips & Tricks
Topic: Howto: Sync profiles using dropbox
Replies: 30
Views: 135089

Re: Howto: Sync profiles using dropbox

There's a tool called Dropbox Folder Sync for Windows that makes this super easy, without any need to use the command line. You can get the application at: Dropbox Folder Sync . You simply right click the mudlet folder in your .config folder, and there'll be an option to sync with dropbox. It actual...
by Iktomi
Mon Sep 26, 2011 7:22 am
Forum: Scripts & Packages
Topic: YATCO - Yet Another Tabbed Chat Option. This time it blinks
Replies: 58
Views: 61173

Re: YATCO - Yet Another Tabbed Chat Option. This time it bli

Hey Demonnic, thanks for this, it's my favorite tabbed chat so far. The only thing I would like different is if the tabs just lit up, instead of blinked. Is there a way to change it so it'll behave this way?
by Iktomi
Fri Sep 23, 2011 5:59 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Releasing a package?
Replies: 11
Views: 12729

Re: Releasing a package?

Aha, thank you, I was trying to install just lxml.
by Iktomi
Thu Sep 22, 2011 5:57 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Releasing a package?
Replies: 11
Views: 12729

Re: Releasing a package?

Hey guys, I'm trying to use this but I'm getting the following error:

Traceback (most recent call last):
File "/home/zach/Desktop/mudlet-release.py", line 34, in <module>
from lxml import etree as ET
ImportError: No module named lxml


Any ideas?
by Iktomi
Tue Sep 13, 2011 6:17 pm
Forum: Help Forum
Topic: Help with a highlight script
Replies: 11
Views: 15770

Re: Help with a highlight script

Okay, making good progress. Now when I do the add alias, it adds the name to the list and creates the tempTrigger highlight. If I do the remove alias it remove the name from the list and kills the tempTrigger highlight. However, if I do the add alias twice, it DOES recognize that the name is already...
by Iktomi
Mon Sep 12, 2011 10:46 pm
Forum: Help Forum
Topic: Help with a highlight script
Replies: 11
Views: 15770

Re: Help with a highlight script

Hey Rakon, I haven't had the chance to try things out with the killTrigger yet, but matches:title() does just that? Checks to see if the trigger title matches that? Would it go like this? if hlName and matches:title(hlName(matches[2])) What is the benefit of using the matches:title() over jus the ch...
by Iktomi
Mon Sep 12, 2011 5:56 pm
Forum: Help Forum
Topic: Help with a highlight script
Replies: 11
Views: 15770

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 Iktomi
Mon Sep 12, 2011 5:53 pm
Forum: Help Forum
Topic: Help with a highlight script
Replies: 11
Views: 15770

Re: Help with a highlight script

The error I'm getting when the function is called says: [ERROR:] object:<Display> function:<Alias256> <[string "function highlight()..."]:3: attempt to index global 'highlight' (a function value)> I changed the highlight[v] at the beginning of the temp trigger to hlName[v] and ran it again...