diff options
Diffstat (limited to 'npc/003-2/lua.txt')
-rw-r--r-- | npc/003-2/lua.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt index 17aae3d06..46b5b9d30 100644 --- a/npc/003-2/lua.txt +++ b/npc/003-2/lua.txt @@ -147,11 +147,11 @@ L_Check: next; .@r=reputation("Tulim"); mesn; - if (.@r < 5) + if (.@r <= 35) mesq l("Try helping the city guard. Talk to NPCs around the city. Outside the city walls too. And there are some people on the mines."); - else if (.@r < 9) + else if (.@r <= 60) mesq l("You are doing some progress. There are about 4 quests on the mines, 1 outside walls, and 10 on the town. Some require level, so talk to people again sometimes."); - else if (.@r < 12) + else if (.@r <= 85) mesq l("You'll soon run out of stuff to do around here, so yeah, you should extend your horizons or you may get bored soon enough."); else mesq l("Tulimshar doesn't have a lot more of quests to offer you, so you should definitely explore new places."); |