diff options
author | (no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-05 09:43:07 +0000 |
---|---|---|
committer | (no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-05 09:43:07 +0000 |
commit | 4ad4d0d5b4be685a44bbe707d986b639ec874b0c (patch) | |
tree | 4ba20462240a4d74d968e090a119e59ea804d69b /npc/jobs/2-1 | |
parent | 537c22a65e88daf7945c5e080d40e9180c1962ad (diff) | |
download | hercules-4ad4d0d5b4be685a44bbe707d986b639ec874b0c.tar.gz hercules-4ad4d0d5b4be685a44bbe707d986b639ec874b0c.tar.bz2 hercules-4ad4d0d5b4be685a44bbe707d986b639ec874b0c.tar.xz hercules-4ad4d0d5b4be685a44bbe707d986b639ec874b0c.zip |
Added easter, xmas event npcs. Added custom blackjack npc. [kobra_k88]
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@13 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/2-1')
-rw-r--r-- | npc/jobs/2-1/knight.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/npc/jobs/2-1/knight.txt b/npc/jobs/2-1/knight.txt index 60a86da6a..2eba470d5 100644 --- a/npc/jobs/2-1/knight.txt +++ b/npc/jobs/2-1/knight.txt @@ -875,7 +875,10 @@ OnStart: if($@KntUsers > 0) end;
if ((getwaitingroomstate(33)) == 0) end; // stops the rest of the script from running if there is no one in the waiting room;
- killmonsterall "job_knt.gat"; //kills off any left over monsters from other testers
+ //kills off any left over monsters from other testers
+ killmonster "job_knt.gat", "KntLvl1::OnMyMobDead";
+ killmonster "job_knt.gat", "KntLvl2::OnMyMobDead";
+ killmonster "job_knt.gat", "KntLvl3::OnMyMobDead";
warpwaitingpc "job_knt.gat",43,146;
donpcevent "KntLvl1";
end;
@@ -884,7 +887,6 @@ OnStart: // First Level ---------------------------------------------------------
job_knt.gat,1,1,1 script KntLvl1 -1,
{
- disablenpc "Warp1";
set $@KntRm, 1;
set $@KntMob,12;
monster "job_knt.gat",39,150,"Dustiness",1114,1,"KntLvl1::OnMyMobDead";
@@ -1015,7 +1017,9 @@ OnTimer184000: if($@KntRm==2) areawarp "job_knt.gat", 24, 32, 63, 71, "prt_in.gat",77,96;
if($@KntRm==3) areawarp "job_knt.gat", 124, 132, 163, 171, "prt_in.gat",77,96;
areaannounce "job_knt.gat", 82, 98, 97, 113, "[Sir Windsor]: The testing rooms are now open.....",8;
- killmonsterall "job_knt.gat";
+ killmonster "job_knt.gat", "KntLvl1::OnMyMobDead";
+ killmonster "job_knt.gat", "KntLvl2::OnMyMobDead";
+ killmonster "job_knt.gat", "KntLvl3::OnMyMobDead";
donpcevent "SW2::OnStart";
end;
|