summaryrefslogtreecommitdiff
path: root/npc/functions/siege.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-07-16 14:05:38 -0300
committerJesusaves <cpntb1@ymail.com>2019-07-16 14:05:38 -0300
commitbf615f295f89a7a5e74c5ed1c572fd364516e112 (patch)
treecf5838a41332a2e6d5cdfda22fa0f7454f8155cc /npc/functions/siege.txt
parent73bcec44fc0c2dfa24cd85f0b101878b0b6a75d8 (diff)
downloadserverdata-bf615f295f89a7a5e74c5ed1c572fd364516e112.tar.gz
serverdata-bf615f295f89a7a5e74c5ed1c572fd364516e112.tar.bz2
serverdata-bf615f295f89a7a5e74c5ed1c572fd364516e112.tar.xz
serverdata-bf615f295f89a7a5e74c5ed1c572fd364516e112.zip
Defeating siege boss may now raise EXP rate for an hour (experimental).
Acknowledge Kolchak's contributions
Diffstat (limited to 'npc/functions/siege.txt')
-rw-r--r--npc/functions/siege.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt
index f7e2fac4e..a0429d1dc 100644
--- a/npc/functions/siege.txt
+++ b/npc/functions/siege.txt
@@ -435,6 +435,9 @@ OnSergeantDeath:
$MK_TEMPVAR+=1;
getitem StrangeCoin, rand(1,5);
announce("##2The Monster Sergeant was defeated by "+strcharinfo(0)+"!", bc_all);
+ $@EXP_EVENT=rand2(101, 103);
+ $@EXP_EVENT_TIME=1;
+ donpcevent "@exprate::OnPlayerCall";
end;
OnLieutenantDeath:
@@ -442,6 +445,9 @@ OnLieutenantDeath:
$MK_TEMPVAR+=3;
getitem StrangeCoin, rand(5,10);
announce("##2The Monster Lieutenant was defeated by "+strcharinfo(0)+"!", bc_all);
+ $@EXP_EVENT=rand2(102, 104);
+ $@EXP_EVENT_TIME=1;
+ donpcevent "@exprate::OnPlayerCall";
end;
OnCaptainDeath:
@@ -449,6 +455,9 @@ OnCaptainDeath:
$MK_TEMPVAR+=5;
getitem StrangeCoin, rand(10,15);
announce("##2The Monster Captain was defeated by "+strcharinfo(0)+"!", bc_all);
+ $@EXP_EVENT=rand2(103, 105);
+ $@EXP_EVENT_TIME=1;
+ donpcevent "@exprate::OnPlayerCall";
end;
OnColonelDeath:
@@ -457,6 +466,9 @@ OnColonelDeath:
getitem StrangeCoin, rand(15,20);
$MOST_HEROIC$=strcharinfo(0);
announce("##2The Monster Colonel was defeated by "+strcharinfo(0)+"!", bc_all);
+ $@EXP_EVENT=rand2(104, 106);
+ $@EXP_EVENT_TIME=1;
+ donpcevent "@exprate::OnPlayerCall";
end;
OnGeneralDeath:
@@ -465,6 +477,9 @@ OnGeneralDeath:
getitem StrangeCoin, rand(20,25);
$MOST_HEROIC$=strcharinfo(0);
announce("##2The Monster General was defeated by "+strcharinfo(0)+"!", bc_all);
+ $@EXP_EVENT=rand2(105, 107);
+ $@EXP_EVENT_TIME=1;
+ donpcevent "@exprate::OnPlayerCall";
end;
}