diff options
Diffstat (limited to 'npc/027-2_Caretakers_House/golbanez.txt')
-rw-r--r-- | npc/027-2_Caretakers_House/golbanez.txt | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/npc/027-2_Caretakers_House/golbanez.txt b/npc/027-2_Caretakers_House/golbanez.txt index b466bccf..301d0a8f 100644 --- a/npc/027-2_Caretakers_House/golbanez.txt +++ b/npc/027-2_Caretakers_House/golbanez.txt @@ -1,3 +1,14 @@ +// author: Jenalya +// love triangle quest, involved npcs: Reid's Ghost, Hamond, Savaric, Aldred, Golbenez +// state 0: just talking, if lovers state is >= 2, go on +// state 1: ignores you until lovers state is >= 3, player can ask about the inn. needs if woman >= 7, lover >= 3 and husband >= 4 to go on +// state 2: shows reids memory if the player brings @ROTTENRAGS_AMOUNT rotten rags and an orange cake +// state 3: shows hamonds memory if the player brings @UNDEADEAR_AMOUNT undead ears and a chocolate cake +// state 4: shows savarics memory if the player brings @UNDEADEYE_AMOUNT undead eyes and an apple cake +// state 5: shows all memories again if asked for them. if @lover == 6, player can ask for savarics soul +// state 6: wants jackOsouls, random chance of 1/50 to success +// state 7: done + 027-2.gat,39,91,0 script Golbenez 307,{ set @Graveyard_Inn_MASK, NIBBLE_4_MASK; @@ -20,13 +31,12 @@ set @husband, ((QUEST_Graveyard_Inn & @Graveyard_Inn_Husband_MASK) >> @Graveyard_Inn_Husband_SHIFT); - //TODO: determine sane values set @ROTTENRAGS_AMOUNT, 50; - set @ROTTENRAGS_EXP, 30000; - set @UNDEADEAR_AMOUNT, 50; - set @UNDEADEAR_EXP, 50000; - set @UNDEADEYE_AMOUNT, 50; - set @UNDEADEYE_EXP, 50000; + set @ROTTENRAGS_EXP, 100000; + set @UNDEADEAR_AMOUNT, 30; + set @UNDEADEAR_EXP, 150000; + set @UNDEADEYE_AMOUNT, 30; + set @UNDEADEYE_EXP, 150000; if (@state >= 7) goto L_Done; if (@state == 6) goto L_Soul; @@ -275,7 +285,7 @@ L_Soul_Try: set @soul, rand(50); if (@soul == 0) goto L_Soul_Success; mes "[Golbanez]"; - mes "\"No, this one isn't as powerful as the mage ones. Bring me another.\""; + mes "\"No, this one isn't as powerful as the mage ones. Bring me another one of them.\""; goto L_Soul_Try; L_Soul_Success: |