summaryrefslogtreecommitdiff
path: root/world/map/npc/008-1/annualeaster.txt
diff options
context:
space:
mode:
authorJessica Tölke <jtoelke@mail.upb.de>2013-03-07 23:16:09 +0100
committerJessica Tölke <jtoelke@mail.upb.de>2013-03-07 23:16:09 +0100
commitf6a824238f3f384a122d922667b67b118d7ec88f (patch)
tree0b11e38009dfb4a8e049538b1065a536f5bf1d1e /world/map/npc/008-1/annualeaster.txt
parent71e07c9d57d99016948e3733cba3bfa1fd78203c (diff)
downloadserverdata-f6a824238f3f384a122d922667b67b118d7ec88f.tar.gz
serverdata-f6a824238f3f384a122d922667b67b118d7ec88f.tar.bz2
serverdata-f6a824238f3f384a122d922667b67b118d7ec88f.tar.xz
serverdata-f6a824238f3f384a122d922667b67b118d7ec88f.zip
Modifications on the Easter event after testing with a group of people:
- add message when you find something in a nest - add message when you get the unique reward - increase number of relocations - reduce the time penalty after checking a nest from 30 to 15 seconds - change behavior when checking a nest during the penalty time -- message should make it more clear that it's needed to wait a while -- extend the time penalty for a few seconds
Diffstat (limited to 'world/map/npc/008-1/annualeaster.txt')
-rw-r--r--world/map/npc/008-1/annualeaster.txt20
1 files changed, 13 insertions, 7 deletions
diff --git a/world/map/npc/008-1/annualeaster.txt b/world/map/npc/008-1/annualeaster.txt
index 425aa529..eedd5b9d 100644
--- a/world/map/npc/008-1/annualeaster.txt
+++ b/world/map/npc/008-1/annualeaster.txt
@@ -13,7 +13,7 @@ function|script|AnnualEasterEvent|{
// prevent players having level 19 or less to get anything:
if (BaseLevel < 20)
- goto L_End2;
+ goto L_EndTooYoung;
// prevent clicking multiple times:
if (gettimetick(2) < @eastertimepenalty + $@EASTER_FOUND_WAIT_TIME)
@@ -24,7 +24,7 @@ function|script|AnnualEasterEvent|{
set $@peopleFoundEggs[@EasterEggID], $@peopleFoundEggs[@EasterEggID]+1;
// give a small reward:
-
+ message strcharinfo(0), "You found something!";
set @tmp, getarraysize($@SmallAnnualEasterItems$);
set @random, rand(@tmp + 2);
if (@random < @tmp) getitem $@SmallAnnualEasterItems$[@random], rand(1, 2);
@@ -65,6 +65,7 @@ NoEasterEgg:
// now hand out the specific item:
set @rewardindex, @rewardindex % getarraysize($@FinalAnnualEasterReward$);
getitem $@FinalAnnualEasterReward$[@rewardindex], 1;
+ message strcharinfo(0), "This is really special. You won't find anything like this again.";
goto L_End1;
S_Read_Annual_Quest:
@@ -75,8 +76,15 @@ S_Update_Annual_Quest:
set Annual_Quest, (Annual_Quest & ~(BYTE_1_MASK) | (@easter_year << BYTE_1_SHIFT));
return;
+L_EndTooYoung:
+ message strcharinfo(0), "The nest is empty.";
+ goto L_End1;
+
L_End2:
- message strcharinfo(0), "Why are these empty?";
+ message strcharinfo(0), "Don't be greedy! You just found something a moment ago.";
+ set @eastertimepenalty, @eastertimepenalty + 5;
+ if (@eastertimepenalty > gettimetick(2))
+ set @eastertimepenalty, gettimetick(2);
L_End1:
set @rewardindex, 0;
set @easter_year, 0;
@@ -106,7 +114,7 @@ L_End1:
end;
onInit:
- set $@EASTER_FOUND_WAIT_TIME, 30;
+ set $@EASTER_FOUND_WAIT_TIME, 15;
set $@EASTER_FINAL_REW_INV_CHANCE, 35;
set $@EASTER_EGG_INV_CHANCE, 750;
@@ -136,9 +144,7 @@ OnTimer1000:
// an egg can be 'found' multiple times, make this number of possible findings
// depend on the number of players currently on the map.
- set $@AEASTER_mapcount, getmapusers("008-1.gat");
- if ($@AEASTER_mapcount > 9)
- set $@AEASTER_mapcount, 6 + $@AEASTER_mapcount / 3;
+ set $@AEASTER_mapcount, 1 + getmapusers("008-1.gat") / 3;
set $@isEaster, 0;
if ((gettime(6) == 3 && gettime(5) > 22) || (gettime(6) == 4 && gettime(5) < 25) || debug)