MulinexMan
Member
- Joined
- Jan 15, 2010
- Messages
- 164
Recently I've had the problem that the CastSpellAction with the RepeatType="Craftable" kept trying to craft although it didn't had the mats required. Now I've read that this may be due to a messy HB installation, but be it as it may I've decided to change my CastSpellActions to the RepeatType="Specific" and controlling it through my own loops.
Now I have this part:
Which does the job. But for some reason between every craft, my toon keeps mounting up. This is quite anoying as it slows down the crafting alot.
So why is it that it keeps trying to mount up? Is there a way to disable mounting for the crafting session?
By the way, right before the above part there's a milling subroutine and before that a FlyToAction with Dismount="True". So I thought this would keep it dismounted but doesn't do the job.
Any help would be appreciated!
Now I have this part:
PHP:
<If Condition="HasMats(111646)" IgnoreCanRun="True">
<CustomAction Code="Log("[PB] Crafting Starlight Ink.");" />
</If>
<While Condition="HasMats(111646)" IgnoreCanRun="False">
<CastSpellAction Entry="111646" Repeat="1" RepeatType="Specific" CastOnItem="False" ItemId="0" ItemType="Chest" />
</While>
Which does the job. But for some reason between every craft, my toon keeps mounting up. This is quite anoying as it slows down the crafting alot.
So why is it that it keeps trying to mount up? Is there a way to disable mounting for the crafting session?
By the way, right before the above part there's a milling subroutine and before that a FlyToAction with Dismount="True". So I thought this would keep it dismounted but doesn't do the job.
Any help would be appreciated!