This commit is contained in:
parent
352cdfd11c
commit
1d6c0505bc
2 changed files with 866 additions and 0 deletions
137
af/radiantbloodinitiation.af
Normal file
137
af/radiantbloodinitiation.af
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
~~
|
||||
~~ Radiant Blood Initiation
|
||||
~~
|
||||
~~ Quest flow:
|
||||
~~ 1. Talk to Ayesha of the Radiant Blood in Zaikhal (12.8N 0.7E)
|
||||
~~ 2. Travel to Corrupted Catacombs (23.9S 54.1E near Sawato)
|
||||
~~ 3. Navigate dungeon to find Slimy Key on the floor
|
||||
~~ 4. Navigate to locked door (lockpick 660 diff) and use key
|
||||
~~ 5. Navigate to pedestal and grab Corrupted Mana Shard
|
||||
~~ 6. Return to Ayesha and give her the shard
|
||||
~~
|
||||
|
||||
~~ ============================================================
|
||||
~~ STATE MACHINE
|
||||
~~ ============================================================
|
||||
|
||||
STATE: {Default}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/vt opt set enablecombat false}
|
||||
Chat {/vt opt set lootrarecorpsesonly false}
|
||||
SetState {TalkToAyesha}
|
||||
|
||||
~~ Step 1: Travel to Zaikhal and talk to Ayesha of the Radiant Blood
|
||||
STATE: {TalkToAyesha}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ChatMatch {^Ayesha of the Radiant Blood tells you,}
|
||||
DO: SetState {GoToCatacombs}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/vt nav load nav_radiantblood_ayesha}
|
||||
SetWatchdog 10.0 300.0 {Stuck}
|
||||
|
||||
~~ Step 2: Travel to Corrupted Catacombs and enter
|
||||
STATE: {GoToCatacombs}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: All
|
||||
NavEmpty
|
||||
Expr {testvar[navLoaded]}
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[navLoaded]}
|
||||
SetState {GetKey}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/vt nav load nav_radiantblood_catacombs}
|
||||
DoExpr {touchvar[navLoaded]}
|
||||
SetWatchdog 10.0 300.0 {Stuck}
|
||||
|
||||
~~ Step 3: Navigate dungeon to find the Slimy Key
|
||||
~~ When nav ends, retry /ub use Slimy Key every 10s until it's in inventory
|
||||
STATE: {GetKey}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ItemCountGE 1 {Slimy Key}
|
||||
DO: SetState {GoToDoor}
|
||||
IF: All
|
||||
NavEmpty
|
||||
Expr {testvar[navLoaded]}
|
||||
DO: DoAll
|
||||
Chat {/ub use Slimy Key}
|
||||
DoExpr {clearvar[navLoaded]}
|
||||
SetState {PickUpKey}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/vt nav load nav_radiantblood_key}
|
||||
DoExpr {touchvar[navLoaded]}
|
||||
SetWatchdog 10.0 600.0 {Stuck}
|
||||
|
||||
~~ Retry picking up the key every 10 seconds
|
||||
STATE: {PickUpKey}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ItemCountGE 1 {Slimy Key}
|
||||
DO: SetState {GoToDoor}
|
||||
IF: SecsInStateGE 10
|
||||
DO: DoAll
|
||||
Chat {/ub use Slimy Key}
|
||||
SetState {PickUpKey}
|
||||
|
||||
~~ Step 4: Navigate to the locked door, use key, then load shard nav
|
||||
STATE: {GoToDoor}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: All
|
||||
NavEmpty
|
||||
Expr {testvar[navLoaded]}
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[navLoaded]}
|
||||
Chat {/ub use Slimy Key on Locked Door}
|
||||
Chat {/vt nav load nav_radiantblood_shard}
|
||||
SetState {GetShard}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/vt nav load nav_radiantblood_door}
|
||||
DoExpr {touchvar[navLoaded]}
|
||||
SetWatchdog 10.0 600.0 {Stuck}
|
||||
|
||||
~~ Step 5: Navigate to pedestal and grab the Corrupted Mana Shard
|
||||
STATE: {GetShard}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ItemCountGE 1 {Corrupted Mana Shard}
|
||||
DO: SetState {ReturnToAyesha}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/vt nav load nav_radiantblood_shard}
|
||||
SetWatchdog 10.0 300.0 {Stuck}
|
||||
|
||||
~~ Step 6: Return to Ayesha and give her the shard
|
||||
~~ Reuse nav_radiantblood_ayesha to travel back to Zaikhal and talk to Ayesha
|
||||
STATE: {ReturnToAyesha}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ChatMatch {^Ayesha of the Radiant Blood tells you,}
|
||||
DO: SetState {Done}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/vt nav load nav_radiantblood_ayesha}
|
||||
SetWatchdog 10.0 300.0 {Stuck}
|
||||
|
||||
STATE: {Done}
|
||||
IF: Always
|
||||
DO: Chat {Radiant Blood Initiation complete!}
|
||||
|
||||
STATE: {Stuck}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/ub face}
|
||||
SetState {Default}
|
||||
|
||||
STATE: {Death}
|
||||
IF: ExitPortal
|
||||
DO: SetState {Default}
|
||||
Loading…
Add table
Add a link
Reference in a new issue