Yoruk2009-07-08 19:19:59
Umm....yeah i was being stupid.
Problem solved.
I should totally add a flag that says "PAUSED IDIOT".
Thanks though.
Problem solved.
I should totally add a flag that says "PAUSED IDIOT".
Thanks though.
Unknown2009-07-08 19:20:57
FYI, the GUI has a bar that tells you if it's paused or active.
Yoruk2009-07-08 19:52:42
If i could get it to work that would be nice.
I just added the require in the treant.lua script.
Do i have to copy the entire gui script over to treant.lua as well?
Well i know this is probably out of the free support but meh. I gave up on trying to work it a long time ago.
I just added the require in the treant.lua script.
Do i have to copy the entire gui script over to treant.lua as well?
Well i know this is probably out of the free support but meh. I gave up on trying to work it a long time ago.
Ayisdra2009-07-08 19:56:09
for the gui,
needs to be in your system file (one you renamed from template.)
CODE
require "treant"
require "gui"
require "gui"
needs to be in your system file (one you renamed from template.)
Yoruk2009-07-08 20:16:47
thanks much it works =]
Unknown2009-07-10 06:28:34
I've been wrestling with this darn 'do' alias for ages now, trying to get spiritbonding to work. It is most definitely not. Help would be appreciated.
Unknown2009-07-10 10:44:25
QUOTE (Ilaveuse @ Jul 10 2009, 02:28 AM) <{POST_SNAPBACK}>
I've been wrestling with this darn 'do' alias for ages now, trying to get spiritbonding to work. It is most definitely not. Help would be appreciated.
Not saying that I will (or won't) help, but you really should post more details than that, such as what you tried and how it didn't work.
Ilyarin2009-07-10 11:31:20
All you need to do is do something like this in the command line...
or whatever.
CODE
do spiritbond wolf
do spiritbond skunk
do spiritbond rock
do spiritbond moon
do spiritbond skunk
do spiritbond rock
do spiritbond moon
or whatever.
Unknown2009-07-10 21:18:43
match="^\\s*do1\\s+(.+?)\\s*$"
enabled="y"
group="Treant_Interface"
regexp="y"
send_to="12"
ignore_case="y"
sequence="10000"
>
Base alias. The expression syntax confuses me, so I tried ^\\s*do1 spiritbond squirrel|spiritbond skunk\\s+(.+?)\\s*$, I tried putting the do1 spiritbond skunk|spiritbond squirrel in the code box, I tried ^\\s*do1\\s+(.+?)spiritbond squirrel|spiritbond skunk\\s*$... I am utterly confused. I have the sneaking suspicion that I am being an idiot again. It's highly likely. Nonetheless, I'm stumped.
Also, on a completely unrelated note, on Ilaveuse, my healing scroll isn't found, and I have no idea what to do with MagicList to get it working. Help there would be appreciated too.
Unknown2009-07-10 22:46:44
If you use it from an alias, make sure you send to execute so that it executes the do/do1 alias. (Your second syntax will work. The others are just you not understanding the first thing about regular expressions...)
Ardmore2009-07-11 01:17:19
fixed
Unknown2009-07-11 01:53:18
I wish, or is it for paying customers?
Cause I WILL PAY!
Cause I WILL PAY!
Unknown2009-07-11 01:55:53
Huh? What are you paying for? Even with the context of the message that got edited, I don't know what you mean...
Yoruk2009-07-12 16:39:58
Hey again. This time it's no problem on Treant's part. But of course you mentioned something funky going on with the new prompt for Treant and i had to toy with it on my own
I used a separate prompt plugin that displayed the time and differences in health/mana/ego loss/gain before 1.26 came out and it worked great!
So now i want to implement it again, but I'm working with the Treant prompt script itself. I managed to add the timer as a prefix to the prompt (it's two simple lines of code within the prompt:capture function) but i want the health/mana/ego loss/gain message to appear to the right of the prompt. You mentioned a treant:suffix or treant:prefix function but i haven't managed to figure out how those work yet.
Mind giving me a push on my back to lead me on the right direction for this?
Thanks =]
I used a separate prompt plugin that displayed the time and differences in health/mana/ego loss/gain before 1.26 came out and it worked great!
So now i want to implement it again, but I'm working with the Treant prompt script itself. I managed to add the timer as a prefix to the prompt (it's two simple lines of code within the prompt:capture function) but i want the health/mana/ego loss/gain message to appear to the right of the prompt. You mentioned a treant:suffix or treant:prefix function but i haven't managed to figure out how those work yet.
Mind giving me a push on my back to lead me on the right direction for this?
Thanks =]
Unknown2009-07-12 21:46:21
Here's what I use for my prompt timestamping. Maybe it'll help you understand how it works.
I don't use a H/M/E difference script, so good luck with that...
CODE
function timestamper()
  local time_ms = GetInfo(232)
  ColourTell("dimgray", "", string.format(" ", time_ms))
  queue:add(function () treant:prefix(timestamper) end)
end
treant:prefix(timestamper)
  local time_ms = GetInfo(232)
  ColourTell("dimgray", "", string.format(" ", time_ms))
  queue:add(function () treant:prefix(timestamper) end)
end
treant:prefix(timestamper)
I don't use a H/M/E difference script, so good luck with that...
Unknown2009-07-21 08:06:19
Why oh why can I never have just a nice, easy Treant setup...
Okay, configuring a Nihilist now. Trying to put up defenses.
name="fdef__"
match="^\\s*startup\\s*$"
enabled="y"
regexp="y"
send_to="12"
ignore_case="y"
sequence="100"
>
my_defup = {
= php:Table(),
= php:Table(),
= php:Table(),
= php:Table()
}
my_defup = "nightsight"
my_defup = "insomnia"
my_defup = "abjure deathsight"
my_defup = "abjure waterwalk"
my_defup = "abjure timeslip"
my_defup = "abjure cloak"
my_defup = "abjure diminish me"
my_defup = "chant draconis"
my_defup = "chant fortuna"
my_defup = "chant populus"
my_defup = "chant acquisitio on"
my_defup = "chant rubeus"
my_defup = "darkcall demonscales"
my_defup = "darkcall barbedtail"
my_defup = "darkcall wings"
my_defup = "evoke malkuth"
my_defup = "evoke yesod"
defs:def_up(my_defup)
Sorry, my computer doesn't like code boxes.
Anyway, that just skips over deathsight and sends waterwalk over and over and over again, every time I recover balance or eq, and nothing else. What's up?
Okay, configuring a Nihilist now. Trying to put up defenses.
match="^\\s*startup\\s*$"
enabled="y"
regexp="y"
send_to="12"
ignore_case="y"
sequence="100"
>
= php:Table(),
= php:Table(),
= php:Table(),
= php:Table()
}
my_defup = "nightsight"
my_defup = "insomnia"
my_defup = "abjure deathsight"
my_defup = "abjure waterwalk"
my_defup = "abjure timeslip"
my_defup = "abjure cloak"
my_defup = "abjure diminish me"
my_defup = "chant draconis"
my_defup = "chant fortuna"
my_defup = "chant populus"
my_defup = "chant acquisitio on"
my_defup = "chant rubeus"
my_defup = "darkcall demonscales"
my_defup = "darkcall barbedtail"
my_defup = "darkcall wings"
my_defup = "evoke malkuth"
my_defup = "evoke yesod"
defs:def_up(my_defup)
Sorry, my computer doesn't like code boxes.
Anyway, that just skips over deathsight and sends waterwalk over and over and over again, every time I recover balance or eq, and nothing else. What's up?
Unknown2009-07-21 10:52:54
The names of the defenses are important. It's 'waterwalking' and not 'waterwalk.' Also, many Nihilist defenses are not included yet (because no one's ever sent them to me). You should have a look inside the various XML files to figure out what is included and what each defense is really named.
Unknown2009-07-21 17:07:07
Ah, okay, I'll fiddle with that and see what I can get. If I trans Nihilism I'll send you a list of the defenses... or bug somebody else. Thanks, I'll do my best.
Unknown2009-07-22 06:37:25
EDIT::
*being an idiot*
*epic facepalm*
*thanks Ardmore*
Forget I said anything.
Unknown2009-07-22 10:39:35
You really should stop posting here and just buy a support contract.