diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2013-03-22 21:59:40 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2013-03-22 21:59:40 +0100 |
commit | b44a71b7ac154557da4fa646eb0b2bd522542877 (patch) | |
tree | 0ab7e495b7a9117f353ffaeaba9103ea5b5a174e /world/map/npc/025-4 | |
parent | c21606fd4c02c23b7bf6c06ecd838c53f5e3eb75 (diff) | |
download | serverdata-b44a71b7ac154557da4fa646eb0b2bd522542877.tar.gz serverdata-b44a71b7ac154557da4fa646eb0b2bd522542877.tar.bz2 serverdata-b44a71b7ac154557da4fa646eb0b2bd522542877.tar.xz serverdata-b44a71b7ac154557da4fa646eb0b2bd522542877.zip |
Add boss point reward to boss fights.
Auldsbel's snakes: 5 per snake
Giant Cave Maggot: 10
Bandit Lord: 20
Rossy and Julia battle caves: each 10, final boss 50
Cindy: 70
Illia: depending on the current difficulty between 120 and 200
Diffstat (limited to 'world/map/npc/025-4')
-rw-r--r-- | world/map/npc/025-4/battlecaves.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/world/map/npc/025-4/battlecaves.txt b/world/map/npc/025-4/battlecaves.txt index dfe08749..17f801a1 100644 --- a/world/map/npc/025-4/battlecaves.txt +++ b/world/map/npc/025-4/battlecaves.txt @@ -53,6 +53,8 @@ L_Done: if ($@wave_cave1 < $@cave1_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE1); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -138,6 +140,8 @@ L_Done: if ($@wave_cave2 < $@cave2_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE2); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -220,6 +224,8 @@ L_Done: if ($@wave_cave3 < $@cave3_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE3); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -305,6 +311,8 @@ L_Done: if ($@wave_cave4 < $@cave4_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE4); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -391,6 +399,8 @@ L_Done: if ($@wave_cave5 < $@cave5_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE5); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -477,6 +487,8 @@ L_Done: if ($@wave_cave6 < $@cave6_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE6); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -565,6 +577,8 @@ L_Done: if ($@wave_cave7 < $@cave7_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE7); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -653,6 +667,8 @@ L_Done: if ($@wave_cave8 < $@cave8_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE8); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -741,6 +757,8 @@ L_Done: if ($@wave_cave9 < $@cave9_waves) goto L_Summon; set cavefights, (cavefights | BATTLE_CAVE9); + set BOSS_POINTS, BOSS_POINTS + 10; + message strcharinfo(0), "You gain 10 Boss Points giving you a total of " + BOSS_POINTS; end; OnMonsterDeath: @@ -858,6 +876,8 @@ OnBossDeath: message strcharinfo(0), "What a harsh battle... You should hurry and save Julia!"; set Rossy_Quest, 16; getexp 100000, 0; + set BOSS_POINTS, BOSS_POINTS + 50; + message strcharinfo(0), "You gain 50 Boss Points giving you a total of " + BOSS_POINTS; end; L_Close: |