Page 1 of 1

enchanted throw and poison Bug

Posted: Mon Aug 01, 2016 4:18 am
by beanybabe
RoM Bot Version 3.29, Revision 787ñ i'm using this as the newer version started to get errors.
Poison seems to auto cast on some classes and not others.
if i cast enchanted throw on r/m it seems to cast poison and replaces enchanted throw buff. this is a problem.

I do not have poison set to auto use.

----------------
I found a way to get it to work I have to remove all poison from my bag and put the following code in </onPreSkillCast> and </onSkillCast> But this does not work every time either the bot seems to just not do it some times there has to be a way to get this buff to cast and not have poision try to cast.

Code: Select all

		if(player.Class1 == CLASS_ROGUE and player.Class2 == CLASS_MAGE and (not player:hasBuff("501279"))) then
					player:cast("ROGUE_ENCHANTED_THROW")
		end;