Back to "b" tags

AFK Bard Chivalry Maid by Spiral

1## AFK Bard Chivalry Maid by Spiraal
2## Requires AFK character with Chivalry, Provocation, Peacemaking, Discordance.
3
4## Bard Chivalry Maid will cast Provocation, Peacemaking and Discordance every 11 seconds.
5
6## If dagger is dropped near Bard Chivalry Maid, they will attempt every 11 seconds to cast Sacred Journey to dungeons (about 30 second cooldown per gate).
7## If scissors is dropped near Bard Chivalry Maid, they will attempt every 11 seconds to cast Sacred Journey to towns (about 30 second cooldown per gate).
8
9
10## Bard Chivalry Maid will invite nearby players every 11 seconds, comment line with ## or delete lines with "menu 0 7" if this is not preferred.
11
12## March 10th, 2023 update: Added self heal equal to or under 40 HP back to 100 HP. Bard Chivalry Maid can now be used as a weapon skill training dummy (must be flagged green)
13
14while findtype "lute" backpack
15        menu 0 7
16        skill "Provocation"
17        waitfortarget 
18        targetrelloc 0 1
19        
20if findtype "dagger" true
21        say [sacredjourney
22        wait 500
23        waitforgump "any"
24        gumpresponse 2
25        
26elseif findtype "scissors" true
27        say [sacredjourney
28        wait 500
29        waitforgump "any"
30        gumpresponse 1
31        
32elseif hp <= 40
33        say [noblesacrifice
34        waitfortarget 
35        target self
36        
37endif   
38
39        wait 11000
40        menu 0 7
41        skill "Peacemaking"
42        waitfortarget 
43        targetrelloc 0 1
44        
45        
46if findtype "dagger" true
47        say [sacredjourney
48        wait 500
49        waitforgump "any"
50        gumpresponse 2
51        
52elseif findtype "scissors" true
53        say [sacredjourney
54        wait 500
55        waitforgump "any"
56        gumpresponse 1
57        
58elseif hp <= 40
59        say [noblesacrifice
60        waitfortarget 
61        target self
62        
63endif  
64
65        wait 11000
66        menu 0 7
67        skill "Discordance"
68        waitfortarget 
69        targetrelloc 0 1
70        
71if findtype "dagger" true
72        say [sacredjourney
73        wait 500
74        waitforgump "any"
75        gumpresponse 2
76elseif findtype "scissors" true
77        say [sacredjourney
78        wait 500
79        waitforgump "any"
80        gumpresponse 1
81        
82elseif hp <= 40
83        say [noblesacrifice
84        waitfortarget 
85        target self
86        
87endif  
88
89        wait 11000
90endwhile