This Addon is to help with the first boss of the instance DoD, dungeon of dalanis(something like that)
So when Madman Mallen jumps into the air he will randomly choose a player to land on, he lands on the spot that player is when he jumps into the air. So in order to live you need to move away when he jumps into the air.
This Addon will monitor /say for the keywords specified and if it sees those words then it will make the character run forward for 5 seconds.
I will try to answer questions and issues that are posted as a reply to this topic that are actually about the madman addon, please stop sending me PMs.
In your profile add this
Code: Select all
<onPreSkillCast><![CDATA[
if getZoneId() == 127 or getZoneId() == 128 then
target = player:getTarget();
if target.Id == 103857 or target.Id == 103169 then
if RoMScript("madman.Time") >= 1 then
player:clearTarget();
printf("Running\n")
yrest(4000)
end
end
end
]]></onPreSkillCast>
Runes of Magic/Interface/AddOns
So that for example the file madman.lua is located like this
Runes of Magic/Interface/AddOns/madman/madman.lua
Ok let the issue posts begin, BTW it works flawlessly for me.
--=== Note for other languages ===--
If your client uses a language other then English you can click the little eye icon which should be near the minimap, a window will pop up and in the text box you can change the writing to your language client to be what Madman Mallen says when he jumps.
The text it look for in english is
crush you
There is also a tick option to turn off the addon on this window aswell.
The Addon works regardless of if bot is running or not, it is independant, so keep that in mind when playing normally. You can always tick the addon on or off as required.