Search found 13 matches

by goose
Fri Dec 11, 2009 7:29 am
Forum: Help Forum
Topic: Mantis Bug Squashing Help
Replies: 13
Views: 8698

Re: Mantis Bug Squashing Help

Try changing "anorexia" to "anorexic" in the Pipe Queue script.
by goose
Thu Dec 03, 2009 8:21 pm
Forum: Help Forum
Topic: Curing System Delays
Replies: 7
Views: 5689

Re: Curing System Delays

Noticed some weirdness in http://i991.photobucket.com/albums/af40/xakd/Mudlet/cureAffs_herb.jpg Unless you have a variable prone that contains "prone", herbQueue[prone] == true is likely equal to nil == true . You'll probably want to make that herbQueue["prone"] instead. With tha...
by goose
Sat Nov 28, 2009 12:00 am
Forum: Mudlet Development
Topic: Enchantments to the trigger area
Replies: 10
Views: 10183

Re: Enchantments to the trigger area

Please don't! Or if you must, (why? The trigger editor is awesome as is, and from what I can tell, that wouldn't add anything but an annoyance) please at least make it a toggleable setting.
by goose
Tue Nov 17, 2009 2:13 am
Forum: Help Forum
Topic: My Curing System so far... and it doesn't work
Replies: 6
Views: 5302

Re: My Curing System so far... and it doesn't work

The for-loop, and everything in the quote box was just copy-pasted from lua in interactive mode to show how it works. I just meant you should change "affs.affl" to "affs[affl]" in your scripts.
by goose
Mon Nov 16, 2009 7:10 am
Forum: Help Forum
Topic: My Curing System so far... and it doesn't work
Replies: 6
Views: 5302

Re: My Curing System so far... and it doesn't work

Don't know about the trigger matching without seeing your settings, but: > affs = { a = true, b = false, c = false } > affl = "d" > affs.affl = true > for k,v in pairs(affs) do io.write(k..":"..(v and "true" or "false").."\n") end a:true affl:true c:...
by goose
Sun Nov 01, 2009 8:12 pm
Forum: Help Forum
Topic: Replacing MUD Text with Your Own
Replies: 7
Views: 8624

Re: Replacing MUD Text with Your Own

Will do. Thanks
by goose
Sat Oct 31, 2009 3:26 pm
Forum: Help Forum
Topic: Replacing MUD Text with Your Own
Replies: 7
Views: 8624

Re: Replacing MUD Text with Your Own

Ah, right. That was off the top of my head - anyway, the questions still stands, and I'll try to clarify what I meant a bit. Say I get this from the MUD: You see some cheese. H:100 M:100 mv:68> It is yellow with spots on. H:100 M:100 mv:68> It's cheese man, what do you want? Seriously. H:100 M:100 m...
by goose
Fri Oct 30, 2009 2:45 pm
Forum: Help Forum
Topic: Replacing MUD Text with Your Own
Replies: 7
Views: 8624

Re: Replacing MUD Text with Your Own

I have a related question which, as it might help Jules as well and fits well under this subject, I won't make its own thread for: If I have a lot of substitutions, which of the following would be the Better Idea: A) Make n triggers matching on each of the lines to be substituted, that each do, simp...
by goose
Mon Sep 07, 2009 9:33 am
Forum: Help Forum
Topic: deleteLine() versus echo()
Replies: 8
Views: 6433

Re: deleteLine() versus echo()

putting a space in the replace() just adds an extra space after the yellow "SCRYING: " (seen when highlighting it)
by goose
Mon Sep 07, 2009 12:47 am
Forum: Help Forum
Topic: deleteLine() versus echo()
Replies: 8
Views: 6433

Re: deleteLine() versus echo()

I am using deleteLine() before the echoes. That deletes the line and only shows the echoes, on the preceding line, when I scroll up and down first. I'll have to screw around with the cursor positions and insertText() a bit, but it seems rather a lot of trouble for what seems like a simple substituti...