Stance switching with 2 different weapon types by Eaos
Description: script to handle codex stances when using more than one weapon type this script is swords/archery but can easily be modified for other weapon combinations
1
2
3if mana >= 3
4 if findtype 'viking sword' righthand or findtype 'halberd' lefthand or findtype 'cutlass' righthand or findtype 'katana' righthand or findtype 'scimitar' righthand or findtype 'broadsword' righthand or findtype 'longsword' righthand or findtype '3909' lefthand or findtype 'battle axe' lefthand or findtype 'two handed axe' lefthand or findtype 'double axe' lefthand or findtype 'large battle axe' lefthand or findtype 'axe' lefthand or findtype 'bardiche' lefthand
5
6 if findtype "sword codex" backpack as jodex
7 getlabel jodex desc
8 wait 200
9 if "Flaying" in desc
10 break
11 else
12 say "[SwordsStance5"
13 endif
14 endif
15 endif
16
17
18 if findtype 'crossbow' hand or findtype 'bow' hand or findtype 'heavy crossbow' hand
19
20 if findtype "archery codex" backpack as jodex1
21 getlabel jodex1 desc
22 wait 200
23 if "Maiming" in desc
24 break
25 else
26 say "[ArcheryAmmunition5"
27 endif
28 endif
29 endif
30endif