Add investigatethefactions meta (Radiant Blood path)
All checks were successful
/ test (push) Successful in 20s
All checks were successful
/ test (push) Successful in 20s
This commit is contained in:
parent
75705710fd
commit
745546f7ff
2 changed files with 2051 additions and 0 deletions
325
af/investigatethefactions.af
Normal file
325
af/investigatethefactions.af
Normal file
|
|
@ -0,0 +1,325 @@
|
|||
~~
|
||||
~~ Investigate the Factions - Radiant Blood path
|
||||
~~
|
||||
~~ Quest flow:
|
||||
~~ 1. Travel to Zaikhal, talk to Jondor Torgren
|
||||
~~ 2. Travel to Graveyard east, talk to Jawaq ibn Janath
|
||||
~~ 3. Kill Blight Lictor in the Blight Revenant Pit south of Jawaq
|
||||
~~ 4. Return to Jawaq and give him the Blight Lictor's Head
|
||||
~~ 5. Travel to Ayan Baqur, give Radiant Blood Letter of Introduction to Vierana du Canamorra
|
||||
~~
|
||||
|
||||
~~ ============================================================
|
||||
~~ STATE MACHINE
|
||||
~~ ============================================================
|
||||
|
||||
STATE: {Default}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: Always
|
||||
DO: SetState {GoToJondor}
|
||||
|
||||
~~ Step 1: Travel to Zaikhal and talk to Jondor Torgren
|
||||
STATE: {GoToJondor}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: All
|
||||
NavEmpty
|
||||
Expr {testvar[jondorNavLoaded]}
|
||||
DO: SetState {WaitJondor}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
EmbedNav nav_jondortorgren {Travel to Jondor Torgren}
|
||||
DoExpr {touchvar[jondorNavLoaded]}
|
||||
SetWatchdog 10.0 300.0 {Stuck}
|
||||
|
||||
STATE: {WaitJondor}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ChatMatch {^Jondor Torgren tells you,}
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[jondorNavLoaded]}
|
||||
SetState {GoToJawaq}
|
||||
IF: SecsInStateGE 30
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[jondorNavLoaded]}
|
||||
SetState {GoToJawaq}
|
||||
|
||||
~~ Step 2: Travel to Jawaq ibn Janath and talk to him
|
||||
STATE: {GoToJawaq}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: All
|
||||
NavEmpty
|
||||
Expr {testvar[jawaqNavLoaded]}
|
||||
DO: SetState {WaitJawaq}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
EmbedNav nav_jawaqibnjanath {Travel to Jawaq ibn Janath}
|
||||
DoExpr {touchvar[jawaqNavLoaded]}
|
||||
SetWatchdog 10.0 300.0 {Stuck}
|
||||
|
||||
STATE: {WaitJawaq}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ChatMatch {^Jawaq ibn Janath tells you,}
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[jawaqNavLoaded]}
|
||||
SetState {GoToLictorPit}
|
||||
IF: SecsInStateGE 30
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[jawaqNavLoaded]}
|
||||
SetState {GoToLictorPit}
|
||||
|
||||
~~ Step 3: Move to the Blight Revenant Pit and kill Blight Lictor
|
||||
STATE: {GoToLictorPit}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: All
|
||||
NavEmpty
|
||||
Expr {testvar[translictorNavLoaded]}
|
||||
DO: SetState {HuntLictor}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
EmbedNav nav_translictor {Move to Blight Revenant Pit}
|
||||
DoExpr {touchvar[translictorNavLoaded]}
|
||||
SetWatchdog 10.0 120.0 {Stuck}
|
||||
|
||||
STATE: {HuntLictor}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ItemCountGE 1 {Blight Lictor's Head}
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[translictorNavLoaded]}
|
||||
SetState {GiveHead}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
EmbedNav nav_lictorhead {Hunt Blight Lictor}
|
||||
SetWatchdog 10.0 600.0 {Stuck}
|
||||
|
||||
~~ Step 4: Return to Jawaq and give him the head
|
||||
~~ nav_givehead nav walks back to Jawaq and issues /ub give via cht node
|
||||
STATE: {GiveHead}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: All
|
||||
NavEmpty
|
||||
Expr {testvar[giveHeadNavLoaded]}
|
||||
DO: SetState {WaitLetter}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
EmbedNav nav_givehead {Return to Jawaq, give Blight Lictor's Head}
|
||||
DoExpr {touchvar[giveHeadNavLoaded]}
|
||||
SetWatchdog 10.0 300.0 {Stuck}
|
||||
|
||||
STATE: {WaitLetter}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: ItemCountGE 1 {Radiant Blood Letter of Introduction}
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[giveHeadNavLoaded]}
|
||||
SetState {GoToVierana}
|
||||
IF: SecsInStateGE 30
|
||||
DO: DoAll
|
||||
DoExpr {clearvar[giveHeadNavLoaded]}
|
||||
SetState {GiveHead}
|
||||
|
||||
~~ Step 5: Travel to Ayan Baqur and give letter to Vierana du Canamorra
|
||||
~~ nav_vieranaducanamorra walks to Vierana and issues /ub give via cht node
|
||||
STATE: {GoToVierana}
|
||||
IF: Death
|
||||
DO: SetState {Death}
|
||||
IF: All
|
||||
NavEmpty
|
||||
Expr {testvar[vieranaNavLoaded]}
|
||||
DO: SetState {Done}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
EmbedNav nav_vieranaducanamorra {Travel to Vierana du Canamorra}
|
||||
DoExpr {touchvar[vieranaNavLoaded]}
|
||||
SetWatchdog 10.0 300.0 {Stuck}
|
||||
|
||||
STATE: {Done}
|
||||
IF: Always
|
||||
DO: Chat {Investigate the Factions (Radiant Blood) complete!}
|
||||
|
||||
STATE: {Stuck}
|
||||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/ub face}
|
||||
SetState {Default}
|
||||
|
||||
STATE: {Death}
|
||||
IF: ExitPortal
|
||||
DO: SetState {Default}
|
||||
|
||||
~~ ============================================================
|
||||
~~ NAV ROUTES
|
||||
~~ ============================================================
|
||||
|
||||
NAV: nav_jondortorgren once ~~ {
|
||||
cht 0.675179147720337 13.5718362808228 0.521687507629395 {/ah}
|
||||
pau 0.675179147720337 13.5718362808228 0.521687507629395 15000
|
||||
pnt 59.3342878341675 -28.5975779215495 0.0500208298365275
|
||||
pnt 59.35896803538 -28.6749758720398 0.0500208298365275
|
||||
pnt 59.37918065389 -28.7118357340495 0.0500208298365275
|
||||
ptl 0.675179147720337 13.5718362808228 0.521687507629395 59.3936458587647 -28.7256083488464 0.0508250035345554 14 {Portal to Town Network}
|
||||
pnt -101.617960484823 -96.6229596773783 2.08333134651184E-05
|
||||
pnt -101.64374332428 -96.6113506952922 2.08333134651184E-05
|
||||
pnt -101.677829106649 -96.6077419598897 2.08333134651184E-05
|
||||
pnt -101.708999125163 -96.6393287976583 2.08333134651184E-05
|
||||
pnt -101.720591862996 -96.644443766276 2.08333134651184E-05
|
||||
pnt -101.724977588654 -96.6444894790649 2.08333134651184E-05
|
||||
pnt -101.766201734543 -96.642304166158 2.08333134651184E-05
|
||||
pnt -101.826050774256 -96.6380467732747 2.08333134651184E-05
|
||||
pnt -101.873989931742 -96.6189005851746 2.08333134651184E-05
|
||||
pnt -101.907649771372 -96.5925824801127 2.08333134651184E-05
|
||||
pnt -101.907772219181 -96.5846062819163 2.08333134651184E-05
|
||||
ptl 0.675179147720337 13.5718362808228 0.521687507629395 -101.90858749946 -96.5742208321889 -0.000262499845121056 14 {Portal to Zaikhal}
|
||||
pnt 0.684857130050659 13.498526652654 0.516687520345052
|
||||
pnt 0.648467270533244 13.6382585525513 0.516687520345052
|
||||
pnt 0.663638496398926 13.6434263865153 0.516687520345052
|
||||
tlk 0.675179147720337 13.5718362808228 0.521687507629395 0.675 13.6436941782633 0.516687512397766 37 {Jondor Torgren}
|
||||
~~ }
|
||||
|
||||
NAV: nav_jawaqibnjanath once ~~ {
|
||||
cht -42.3523971557617 -65.2599358876546 0.0329546411832174 {/ah}
|
||||
pau -42.3523971557617 -65.2599358876546 0.0329546411832174 15000
|
||||
pnt 59.3349650382996 -28.5986352920532 0.0500208298365275
|
||||
pnt 59.3422830581665 -28.6478862762451 0.0500208298365275
|
||||
pnt 59.3745415687561 -28.7087308883667 0.0500208298365275
|
||||
ptl -42.3523971557617 -65.2599358876546 0.0329546411832174 59.3936458587647 -28.7256083488464 0.0508250035345554 14 {Portal to Town Network}
|
||||
pnt -101.487263329824 -96.6416310628255 2.08333134651184E-05
|
||||
pnt -101.426060072581 -96.6713267644246 2.08333134651184E-05
|
||||
pnt -101.415002822876 -96.6800889650981 2.08333134651184E-05
|
||||
pnt -101.410864003499 -96.696038945516 2.08333134651184E-05
|
||||
ptl -42.3523971557617 -65.2599358876546 0.0329546411832174 -101.408554140727 -96.7098208427429 -0.000262499845121056 14 {Portal to Yanshi}
|
||||
pnt 42.570612970988 -12.3978833516439 0.135118023554484
|
||||
pnt 43.117503229777 -12.0324651400248 0.163984711964925
|
||||
pnt 44.3272780100505 -11.2182702700297 0.0973679860432943
|
||||
pnt 44.7140724817912 -10.9568198521932 0.0774464686711629
|
||||
pnt 45.0523721059163 -10.7322178781033 0.0985389868418376
|
||||
pnt 45.510213804245 -10.4240825653076 0.0838116486867269
|
||||
pnt 45.5792653083801 -10.39835729599 0.0793243885040283
|
||||
pnt 45.611367225647 -10.3886341412862 0.0782402276992798
|
||||
ptl -42.3523971557617 -65.2599358876546 0.0329546411832174 45.6337008476257 -10.36811876297 0.0760957673192024 14 {Imuth Maer Cottages Portal}
|
||||
pnt 60.6844003359477 -15.8498600959778 0.263809172312419
|
||||
pnt 60.6559405326843 -15.7736094156901 0.265697415669759
|
||||
pnt 60.3075848897298 -15.4376958529154 0.284838072458903
|
||||
pnt 60.1630346616109 -15.3032150745392 0.282803789774577
|
||||
pnt 59.8481479167938 -14.9749188741048 0.275020853678385
|
||||
pnt 59.7556303580602 -14.8240637461344 0.272859477996826
|
||||
pnt 59.5214548746745 -14.4617527961731 0.24168750445048
|
||||
pnt 59.1688228607178 -13.9155393838882 0.236225891113281
|
||||
pnt 58.7691486358643 -13.2976042429606 0.209949890772502
|
||||
pnt 58.0443833669027 -12.1811443010966 0.199552790323893
|
||||
pnt 57.8929854075114 -11.8780462265015 0.185691356658936
|
||||
pnt 57.855659866333 -11.68420753479 0.175492493311564
|
||||
pnt 57.900355275472 -11.6850378036499 0.179217116038005
|
||||
pnt 57.9766059239705 -11.7284083048503 0.184616231918335
|
||||
pnt 57.9996327082316 -11.7331106185913 0.184464550018311
|
||||
pnt 57.9998336156209 -11.7163631439209 0.185004790623983
|
||||
pnt 58.0034070968628 -11.6496791203817 0.163354174296061
|
||||
pnt 57.979798634847 -11.6489050547282 0.163354174296061
|
||||
pnt 57.968748664856 -11.6485427220662 0.163354174296061
|
||||
pnt 57.9585139592489 -11.6487343470256 0.163354174296061
|
||||
pnt 57.9589287439982 -11.6140794754028 0.163354174296061
|
||||
ptl -42.3523971557617 -65.2599358876546 0.0329546411832174 57.9596499760946 -11.5774124781291 0.163070842623711 14 {Gateway to the Halls of Metos}
|
||||
pnt -99.9346605618795 92.6503574371338 2.08333134651184E-05
|
||||
pnt -99.94812707901 92.6354245503744 2.08333134651184E-05
|
||||
pnt -99.9403787295024 92.6217887878418 2.08333134651184E-05
|
||||
pnt -99.9274781862895 92.6195088704427 2.08333134651184E-05
|
||||
pnt -99.9182874997457 92.6301512400309 2.08333134651184E-05
|
||||
pnt -99.9102941830953 92.6320143381755 2.08333134651184E-05
|
||||
ptl -42.3523971557617 -65.2599358876546 0.0329546411832174 -99.8916666666667 92.6333333333333 -0.000262499845121056 14 {Surface Portal}
|
||||
pnt -46.5680209477743 -61.4624371846517 0.291687520345052
|
||||
pnt -46.4474327087402 -61.5421078364054 0.303491465250651
|
||||
pnt -46.3155998547872 -61.6036398887634 0.310880915323893
|
||||
pnt -46.2094100316366 -61.6388254801432 0.313009516398112
|
||||
pnt -46.0876953125 -61.6975317319234 0.313689867655436
|
||||
pnt -45.987780380249 -61.7263656139374 0.326870663960775
|
||||
pnt -45.7395635604858 -61.9928538004557 0.284223874409993
|
||||
pnt -45.6000915209452 -62.3942604700724 0.283354187011719
|
||||
pnt -45.2575759251912 -62.48324842453 0.283354187011719
|
||||
pnt -45.151632754008 -62.4987634499868 0.283354187011719
|
||||
pnt -45.1237116495768 -62.5301484107971 0.283354187011719
|
||||
pnt -45.0540870984395 -62.6563587506612 0.283354187011719
|
||||
pnt -45.0353980541229 -62.7047371983528 0.283354187011719
|
||||
pnt -45.0312361796697 -62.7691226323446 0.284917799631755
|
||||
pnt -45.0245874722799 -62.8371835708618 0.284422206878662
|
||||
pnt -45.2491385142008 -63.095785967509 0.283354155222575
|
||||
pnt -45.4886133511861 -63.4006808439891 0.283354155222575
|
||||
pnt -45.4615438461304 -63.4462312539419 0.283354155222575
|
||||
pnt -44.4704615275065 -63.3698233604431 0.276725959777832
|
||||
pnt -44.3865599314372 -63.3625384012858 0.276128037770589
|
||||
pnt -44.2351636330287 -63.3710106054942 0.283354187011719
|
||||
pnt -44.2088191827138 -63.4109995206197 0.283354187011719
|
||||
pnt -44.0094676017761 -63.5868757883708 0.286731878916423
|
||||
pnt -43.783557510376 -63.7855415980021 0.288725694020589
|
||||
pnt -43.6464767456055 -63.9775186538696 0.292861938476563
|
||||
pnt -43.580413945516 -64.0324352900187 0.314882850646973
|
||||
pnt -43.5285935799281 -64.0764983177185 0.326891263326009
|
||||
pnt -43.4685421228409 -64.1349182764689 0.337443669637044
|
||||
pnt -43.4242894887924 -64.1757117112478 0.333116753896077
|
||||
pnt -43.4141160011292 -64.2152758598328 0.315030256907145
|
||||
pnt -43.4053275108337 -64.3469035218159 0.28759298324585
|
||||
pnt -43.3156284809113 -64.7922865549723 0.283354187011719
|
||||
pnt -42.7738382339478 -64.7604583740234 0.283354187011719
|
||||
pau -42.3523971557617 -65.2599358876546 0.0329546411832174 4000
|
||||
cht -42.3523971557617 -65.2599358876546 0.0329546411832174 {/ub face 135}
|
||||
pau -42.3523971557617 -65.2599358876546 0.0329546411832174 3000
|
||||
cht -42.3523971557617 -65.2599358876546 0.0329546411832174 {/ub jumpw 1000}
|
||||
pau -42.3523971557617 -65.2599358876546 0.0329546411832174 10000
|
||||
pnt -42.5006133079529 -65.1091889460882 0.0193737844626109
|
||||
pnt -42.4289771080017 -65.2117535273234 0.0170041084289551
|
||||
pnt -42.3684973398844 -65.2471349080404 0.0300325194994609
|
||||
pnt -42.3523971557617 -65.2599358876546 0.0329546411832174
|
||||
tlk -42.3523971557617 -65.2599358876546 0.0329546411832174 -42.3394416809082 -65.2727708180745 0.0333541706204414 37 {Jawaq ibn Janath}
|
||||
~~ }
|
||||
|
||||
NAV: nav_translictor once ~~ {
|
||||
pnt -42.3132985750834 -65.3354646046956 0.0333541631698608
|
||||
pnt -42.2656172116598 -65.4753905296326 0.00262370407581329
|
||||
~~ }
|
||||
|
||||
NAV: nav_lictorhead circular ~~ {
|
||||
pnt -42.2468266487122 -65.4811676661173 2.08330806344748E-05
|
||||
pnt -42.1813977559408 -65.5013703664144 2.08330806344748E-05
|
||||
pnt -42.105576578776 -65.4916516939799 2.08330806344748E-05
|
||||
pnt -42.0858658472697 -65.5384854952494 2.08330806344748E-05
|
||||
pnt -42.0841004053752 -65.5736665407817 2.08330806344748E-05
|
||||
pnt -42.1037221908569 -65.6091889381409 2.08330806344748E-05
|
||||
pnt -42.1405606587728 -65.5985468546549 2.08330806344748E-05
|
||||
pnt -42.1740496317546 -65.5959187825521 2.08330806344748E-05
|
||||
pnt -42.2145811080933 -65.6163506825765 2.08330806344748E-05
|
||||
pnt -42.2300188064575 -65.5779284477234 2.08330806344748E-05
|
||||
pnt -42.2159494400024 -65.5467923164368 2.08330806344748E-05
|
||||
pnt -42.242648379008 -65.5006230354309 2.08330806344748E-05
|
||||
~~ }
|
||||
|
||||
NAV: nav_givehead once ~~ {
|
||||
pnt -42.1653347651164 -65.4820268630981 2.08333134651184E-05
|
||||
pnt -42.1995681762695 -65.4468711535136 0.00106378731628259
|
||||
pnt -42.2516595204671 -65.3853866577148 0.0215586185455322
|
||||
pnt -42.3217656453451 -65.3035984039307 0.0333541631698608
|
||||
pnt -42.3360598246257 -65.2829126993815 0.0333541631698608
|
||||
pnt -42.3364802360535 -65.2786419550578 0.0333541631698608
|
||||
pnt -42.3364802360535 -65.2786419550578 0.0333541631698608
|
||||
pau -42.3364802360535 -65.2786419550578 0.0333541631698608 2000
|
||||
cht -42.3364802360535 -65.2786419550578 0.0333541631698608 {/ub give Blight Lictor's Head to Jawaq Ibn Janath}
|
||||
pau -42.3364802360535 -65.2786419550578 0.0333541631698608 2000
|
||||
~~ }
|
||||
|
||||
NAV: nav_vieranaducanamorra once ~~ {
|
||||
pnt -87.92324330012 -60.0094824790955 0.175020837783813
|
||||
pnt -87.8757994651794 -59.995051797231 0.175020837783813
|
||||
pnt -87.8182104746501 -59.9852794329325 0.175020837783813
|
||||
pnt -87.8021244684855 -59.9855664571126 0.175020837783813
|
||||
pnt -87.7838175455729 -59.9822776794434 0.175020837783813
|
||||
pnt -87.7850209554037 -59.9897710800171 0.175020837783813
|
||||
pnt -87.7875458399455 -60.0054923057556 0.175020837783813
|
||||
pnt -87.7882535934448 -60.0123209317525 0.175020837783813
|
||||
pau -87.7882535934448 -60.0123209317525 0.175020837783813 2000
|
||||
cht -87.7882535934448 -60.0123209317525 0.175020837783813 {/ub give Radiant Blood Letter of Introduction to Vierana du Canamorra}
|
||||
pau -87.7882535934448 -60.0123209317525 0.175020837783813 2000
|
||||
~~ }
|
||||
Loading…
Add table
Add a link
Reference in a new issue