diff options
Diffstat (limited to 'npc/005-2')
-rw-r--r-- | npc/005-2/saxsochest.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/005-2/saxsochest.txt b/npc/005-2/saxsochest.txt index 6aaad374f..ddc9672c6 100644 --- a/npc/005-2/saxsochest.txt +++ b/npc/005-2/saxsochest.txt @@ -1,11 +1,10 @@ // TMW2 Script // Author: // Crazyfefe +// Description: +// Minor quest for a necklace 005-2,44,41,0 script Saxso Chest NPC_NO_SPRITE,{ - - .key = SaxsoKey; - .reward = ToothNecklace; function quest_completed { speech S_FIRST_BLANK_LINE | S_LAST_NEXT, @@ -54,7 +53,7 @@ if (.@chest == 1) goto quest_completed; select - rif(.@chest == 0,l("There are a dusty chest.")), + rif(.@chest == 0,l("There is a dusty chest.")), menuaction(l("Quit")); switch (@menu) { @@ -69,6 +68,9 @@ close; OnInit: + .key = SaxsoKey; + .reward = ToothNecklace; + .sex = G_MALE; .distance = 3; end; |