Search found 65 matches

by Alexander Divine
Thu Jan 14, 2010 6:49 pm
Forum: General Forum
Topic: The Mudlet Crucible
Replies: 26
Views: 132453

Re: The Mudlet Crucible

This is a fantastic idea. I did something like this back in the day on zMud, although it's much less sophisticated since all it was was a package of triggers that ensured variables were saved properly, etc. It would package full prompt-tracking, what I called a "Command-Queueing" system, a...
by Alexander Divine
Wed Jan 13, 2010 6:30 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Print out all named colors
Replies: 10
Views: 32535

Re: Print out all named colors

Now how would one, say, echo some text using such a code? A search for ANSI in the manual didn't yield a whole lot.

Edit: Nevermind, found another thread explaining it. Sweet!
by Alexander Divine
Wed Jan 13, 2010 5:27 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Print out all named colors
Replies: 10
Views: 32535

Re: Print out all named colors

Does anyone have a list of which of Mudlet's colors correspond with IRE's 16 colors? I found a few perfect matches, but the rest of my colors are out of whack.
by Alexander Divine
Sat Jan 09, 2010 10:57 pm
Forum: Scripts & Packages
Topic: Gauge functions
Replies: 5
Views: 8620

Re: Gauge functions

Heeey, that is sweet. This would answer the problem I was having with the font of my gauges always being black. You would encase your CSS in the [[]] double brackets, right? Also, what do I call the gauges in CSS? I know that you have to use QPushButton, etc. with buttons.
by Alexander Divine
Sat Jan 09, 2010 10:54 pm
Forum: Help Forum
Topic: Multiplayer (Controlling multiple session)
Replies: 40
Views: 74296

Re: Multiplayer (Controlling multiple session)

Once they implement sendSession() that'd be all there is to it. For a special character, just use an alias. Say you wanted to make it so anything with a slash sends commands to your other characters. Just do an alias with the matching pattern: ^\/(\s)(.*)$ And have it do sendSession(matches[2]).
by Alexander Divine
Sat Jan 02, 2010 10:48 pm
Forum: Help Forum
Topic: Best way to run lots of commands
Replies: 12
Views: 13713

Re: Best way to run lots of commands

I guess what I would do is something like

Code: Select all

for i = 1 .. 10000 do
  send("pick nose;eat sausage;deposit 1000 gold spinesreach")
end
by Alexander Divine
Sat Jan 02, 2010 10:26 pm
Forum: Help Forum
Topic: Persistent Variables?
Replies: 14
Views: 15577

Re: Persistent Variables?

Ha ha, that totally worked. Awesome! Thank ya much. And actually, now that I can use it, I don't really need to save a whole lot (just my target, whether or not I had auto-bashing active, etc...) but would it be terribly straining on the system or bad practice if every time I changed a variable that...
by Alexander Divine
Sat Jan 02, 2010 7:45 pm
Forum: Help Forum
Topic: Persistent Variables?
Replies: 14
Views: 15577

Re: Persistent Variables?

Gave that a shot, came up with "somevaluedeletedvaluedeletedvalue," so it seems something's not working with the loading. On another note, I actually located the SavedVariables.lua file in my /.config/Aetolia and Mapper/ profile. It contains this: return {{}, } Even after extensive attempt...
by Alexander Divine
Fri Jan 01, 2010 11:23 pm
Forum: Help Forum
Topic: Persistent Variables?
Replies: 14
Views: 15577

Re: Persistent Variables?

I had some questions regarding the saving of variables. I just grabbed Mudlet 1.0.5 but I can't seem to get the saving to work. I can't find the SavedVariables.lua file, and regardless of whether I know where it is or not, saveVars() and loadVars() don't do a whole lot. To test it, I altered my targ...
by Alexander Divine
Wed Dec 30, 2009 11:40 pm
Forum: Help Forum
Topic: A trigger with random * in it. Possible?
Replies: 8
Views: 7961

Re: A trigger with random * in it. Possible?

If the trigger highlights correctly, then it works. Just toss in a paralysis = 1 or something and you're set.