Search found 5028 matches

by Vadi
Wed Nov 18, 2009 12:04 am
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 707121

Re: Mudlet API requests

deleteLabel()

actually delete a label, remove from screen and forget it ever existed
by Vadi
Tue Nov 17, 2009 11:48 pm
Forum: General Forum
Topic: Loving the 1.01 release
Replies: 1
Views: 3621

Re: Loving the 1.01 release

Glad to hear :)
by Vadi
Tue Nov 17, 2009 4:33 pm
Forum: Mudlet Development
Topic: Enchanting Mudlets replay feature
Replies: 0
Views: 3592

Enchanting Mudlets replay feature

Opened a meta-report about it: https://bugs.launchpad.net/mudlet/+bug/484286

if anyone has any ideas, lemme know
by Vadi
Tue Nov 17, 2009 4:44 am
Forum: General Forum
Topic: mxp
Replies: 13
Views: 13701

Re: mxp

Hey,

Thanks for the feedback. Hopefully it'll be convincing to heiko. I'm of the opinion that it's necessary too :)
by Vadi
Tue Nov 17, 2009 2:21 am
Forum: Scripts & Packages
Topic: achaea: compass, gauges, map, big prompt, chat balance check
Replies: 19
Views: 17432

Re: achaea: compass, gauges, map, big prompt, chat balance check

should still be the same. let me know if you'll run into trouble.
by Vadi
Mon Nov 16, 2009 12:56 am
Forum: Scripts & Packages
Topic: Achaea Curing System
Replies: 7
Views: 8427

Re: Achaea Curing System

I can't help, not a lot of time... but someone starting with a K posted a huge list of triggers on Achaea forums somewhere. That would be of help.
by Vadi
Mon Nov 16, 2009 12:53 am
Forum: Help Forum
Topic: My Curing System so far... and it doesn't work
Replies: 6
Views: 5252

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

Could you post screenshots of your trigger & debug window?
by Vadi
Mon Nov 16, 2009 12:49 am
Forum: Help Forum
Topic: Priority Curing System - Trying to Match Values in a Table
Replies: 12
Views: 7880

Re: Priority Curing System - Trying to Match Values in a Table

Code: Select all

if affs.paralys == 1 then
    eat ("bloodroot")
else if affs.stupidity == 1 and not eating == 1 then
    eat ("goldenseal")
....
Like that. So not a for loop, but a series of if statements.

The flexibility comes from being able to use multiple conditions on one if.
by Vadi
Sun Nov 15, 2009 1:35 am
Forum: Help Forum
Topic: Priority Curing System - Trying to Match Values in a Table
Replies: 12
Views: 7880

Re: Priority Curing System - Trying to Match Values in a Table

So you basically want a key-value pair table, I'm guessing. Key would be the affliction name, value is if you have it or no. This page would be useful to you, in the "Tables as dictionaries" section. Along with this one: http://lua-users.org/wiki/TableLibraryTutorial Though really, as some...