Search found 92 matches

by Phoenix
Fri Oct 07, 2011 7:35 am
Forum: Scripts & Packages
Topic: showColors()
Replies: 4
Views: 4183

showColors()

Continuing my tradition of recoding basic mudlet functions, I have made it so that showColors takes a search argument... So many times, I don't want to read through each and every colour just to find the one I want. So, for instance: showColors("red") would now be a valid way to use this f...
by Phoenix
Mon Sep 26, 2011 10:00 pm
Forum: Mudlet Development
Topic: OSX TEST build
Replies: 2
Views: 3026

Re: OSX TEST build

I can't even open -mudlet-... Let alone get an error from a damned profile :/ Process: mudlet [797] Path: /Users/Eli/Downloads/mudlet.app/Contents/MacOS/mudlet Identifier: com.yourcompany.mudlet Version: ??? (???) Code Type: X86-64 (Native) Parent Process: launchd [124] Interval Since Last Report: 3...
by Phoenix
Fri Sep 16, 2011 2:19 pm
Forum: Help Forum
Topic: Where do I start from?
Replies: 9
Views: 5950

Re: Where do I start from?

The answer to both those questions, actually, is to create a SymLink in the terminal. If you need help doing this, just hit me up on IRC, though that topic is pretty thorough. Alternatively, just create an alias/shortcut to your .config folder, or learn how to open it in the terminal nice and fast.....
by Phoenix
Fri Sep 16, 2011 6:47 am
Forum: Help Forum
Topic: Selecting and modifying lines in mini-consoles!
Replies: 0
Views: 1946

Selecting and modifying lines in mini-consoles!

So, I want to do some things to a line in a mini-console. Like, getLastLineNumber("chatCity"), etcetera. However, I'm having trouble getting it to work... the above function returns -1, while echo("chatCity", "stuff") works to echo to that windows - the name isn't the i...
by Phoenix
Wed Sep 14, 2011 6:25 pm
Forum: Help Forum
Topic: Importing triggers
Replies: 2
Views: 2177

Re: Importing triggers

Quick solution - post the XML here, and someone will look at it. It wouldn't be a generic line causing that problem, it'd be the creator of the XML screwing things up when they merged triggers/aliases/scripts etcetera, forgetting lines or adding extra lines. The other possibility is that you, possib...
by Phoenix
Wed Sep 14, 2011 6:01 pm
Forum: Help Forum
Topic: Key stroke trigger OR Custom tab completion
Replies: 2
Views: 2160

Re: Key stroke trigger OR Custom tab completion

you have printCmdLine() and appendCmdLine() and clearCmdLine() in terms of API for modifying the command line text. To the best of my knowledge, there is no getCmdLine() (though there really needs to be, to return the current contents of the command line!!!!) As for an event raised on a keystroke......
by Phoenix
Mon Sep 12, 2011 5:57 pm
Forum: Help Forum
Topic: Help with a highlight script
Replies: 11
Views: 15348

Re: Help with a highlight script

Haha!! Good effin catch. Can't have two things that have the same name... even three seperate things (function, variable, table). It's the way Lua saves them... Hehehe... For your "Kill", use this: if highlight and highlight[matches[2]] then killTrigger(highlight[matches[2]]) echo ("\...
by Phoenix
Mon Sep 12, 2011 5:03 pm
Forum: Help Forum
Topic: Help with a highlight script
Replies: 11
Views: 15348

Re: Help with a highlight script

Aright, first off - the for k,v in ipairs() that you have, that should be working. If it isn't, check the error log? Second: highlight[v] = tempRegexTrigger() -- This is not setting the id of the temp trigger, it's setting the table value TO the id. tempRegexTrigger will return the ID, and you are s...
by Phoenix
Mon Sep 12, 2011 5:20 am
Forum: Help Forum
Topic: More Questions
Replies: 3
Views: 2737

Re: More Questions

Could be wrong, but I am pretty sure the answer to all of these questions is 'no'...
by Phoenix
Mon Sep 12, 2011 5:13 am
Forum: Scripts & Packages
Topic: [Achaea] Roulette Counter
Replies: 14
Views: 13252

Re: [Achaea] Roulette Counter

I clipped a bunch of stuff, but basically, the end of the startroulette alias was set up like this: roulette34 = 0 roulette35 = 0 roulette36 = 0 roulettered = 0 rouletteblack = 0 roulettegreen = 0 xecho("(counts reset)") And now it works. I'm not sure what xecho is though... xecho is -not...