diff options
-rw-r--r-- | npc/003-1/sarah.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-1/sarah.txt b/npc/003-1/sarah.txt index 0a2339dd6..809656038 100644 --- a/npc/003-1/sarah.txt +++ b/npc/003-1/sarah.txt @@ -1,11 +1,11 @@ // Author: // Saulc -// TODO: Different reward when repeating quest (eg. 60 GP, so you can have a 10 GP profit selling cakes) +// TODO: Could be repeatable quest (eg. 60 GP for a cake every day, so you can have a 10 GP profit selling cakes) 003-1,90,144,0 script Sarah NPC_FEMALE,{ .cake = CherryCake; - .reward = FancyHat; // TODO + .reward = SerfHat; function quest_completed{ speech S_FIRST_BLANK_LINE | S_LAST_NEXT, @@ -74,7 +74,7 @@ close; OnInit: - .@npcId = getnpcid(0, "Sarah"); + .@npcId = getnpcid(0, .name$); //setunitdata(.@npcId, UDT_HEADTOP, 2936); setunitdata(.@npcId, UDT_HEADMIDDLE, 1311); setunitdata(.@npcId, UDT_HEADBOTTOM, 2201); |