summaryrefslogtreecommitdiff
path: root/npc/003-2
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-12-17 03:21:55 -0200
committerJesusaves <cpntb1@ymail.com>2018-12-17 03:21:55 -0200
commite6c6f2c9f6fa44a8d274c3f5f39ec1e5f903a1ad (patch)
treed653d9c38fd22eb7a8ed171807d7273a1a2b0e01 /npc/003-2
parentcd237b94dfa0103d15ff72152b7ebf784be2bd18 (diff)
downloadserverdata-e6c6f2c9f6fa44a8d274c3f5f39ec1e5f903a1ad.tar.gz
serverdata-e6c6f2c9f6fa44a8d274c3f5f39ec1e5f903a1ad.tar.bz2
serverdata-e6c6f2c9f6fa44a8d274c3f5f39ec1e5f903a1ad.tar.xz
serverdata-e6c6f2c9f6fa44a8d274c3f5f39ec1e5f903a1ad.zip
Stop beating around the bush. reputation() now returns a 0~100 int.
Diffstat (limited to 'npc/003-2')
-rw-r--r--npc/003-2/lua.txt6
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.");