diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2011-08-01 17:36:30 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-08-01 17:37:09 +0200 |
commit | 9ebd0be924a02216eecbcd0f653d253662ef7b0f (patch) | |
tree | d2c3a15eb140ceba0e5734f423d1a0f66362f1e3 /world/map/npc/033-1 | |
parent | 3b6035b061df37a088c352925626351dc1be0757 (diff) | |
download | serverdata-9ebd0be924a02216eecbcd0f653d253662ef7b0f.tar.gz serverdata-9ebd0be924a02216eecbcd0f653d253662ef7b0f.tar.bz2 serverdata-9ebd0be924a02216eecbcd0f653d253662ef7b0f.tar.xz serverdata-9ebd0be924a02216eecbcd0f653d253662ef7b0f.zip |
some small fixes and notes in kimarr/fluffy hunting minigame
Diffstat (limited to 'world/map/npc/033-1')
-rw-r--r-- | world/map/npc/033-1/kimarr.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/world/map/npc/033-1/kimarr.txt b/world/map/npc/033-1/kimarr.txt index 4895e78b..62cbd372 100644 --- a/world/map/npc/033-1/kimarr.txt +++ b/world/map/npc/033-1/kimarr.txt @@ -42,7 +42,7 @@ L_Ask: mes "[Kimarr]"; mes "\"So, are you going to try?\""; menu - "Yeah, let's start",L_Game, + "Yeah, let's start!",L_Game, "Could you explain again?",-, "Maybe later.",L_Close; @@ -87,7 +87,7 @@ L_Again: goto L_ShowRecord; L_Full_Inv: - message strcharinfo(0), "Kimarr: That was very impressing - now you can call yourself hunter " + strcharinfo(0) +".\""; + message strcharinfo(0), "Kimarr: You can't carry the reward I want to give you."; close; L_Close: @@ -101,7 +101,7 @@ L_Game: set $@FLUFFY_FIGHTER$, strcharinfo(0); set $@FLUFFY_TIME, 0; set $@FLUFFY_LVL, baselevel; -//TODO: set minimum number of killed fluffies (maybe based on level?) +//TODO: set minimum number of killed fluffies (maybe based on level?) set $@FLUFFY_MIN, 1; warp "033-1.gat", 79, 34; set @place, 0; @@ -151,6 +151,7 @@ L_Hunting: areamonster "033-1.gat", 79, 29, 88, 42, "", 1058, 1, "Kimarr::onPetDeath"; if (($@FLUFFY_SPAWN > 0) && ($@FLUFFY_LVL > 60) && (rand(5 * $@FLUFFY_XMASCAKE + 3 * $@FLUFFY_CAKE + 10 * $@FLUFFY_LVL) > 550)) // Santa Slime areamonster "033-1.gat", 79, 29, 88, 42, "", 1015, 1, "Kimarr::onPetDeath"; + // TODO: add the wolvern as well when it has been added if (($@FLUFFY_SPAWN > 0) && ($@FLUFFY_LVL > 70) && (rand(5 * $@FLUFFY_XMASCAKE + 3 * $@FLUFFY_CAKE + 10 * $@FLUFFY_LVL) > 600)) // Yeti areamonster "033-1.gat", 79, 29, 88, 42, "", 1072, 1, "Kimarr::onPetDeath"; set $@FLUFFY_REDAPPLES, 0; @@ -163,6 +164,7 @@ L_Hunting: onFluffyDeath: set $@FLUFFY_COUNTER, $@FLUFFY_COUNTER + 1; + //TODO: remove announce after debugging mapannounce "033-1.gat", "fluffies killed: " + $@FLUFFY_COUNTER, 0; if ($@FLUFFY_COUNTER >= $@FLUFFY_SPAWN) set $@FLUFFY_HUNTING, 1; end; |