137 lines
3.5 KiB
Text
137 lines
3.5 KiB
Text
~~
|
|
~~ 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}
|