* Added Juperos Ruins History Quest. Thanks to Keplerk.
* Moved a book non-related to Lighthalzen quests. * Applied a minor fix to Payon Archer Kafra. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10433 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
c138ffc458
commit
6acf678de8
@ -1,6 +1,9 @@
|
||||
Date Added
|
||||
======
|
||||
2007/05/03
|
||||
* Added Juperos Ruins History Quest. Thanks to Keplerk. [SinSloth]
|
||||
* Moved a book non-related to Lighthalzen quests. [SinSloth]
|
||||
* Applied a minor fix to Payon Archer Kafra. [SinSloth]
|
||||
* Removed and altered exploitable warps for Kiel Hyre Quest. [L0ne_W0lf]
|
||||
2007/05/02
|
||||
* Added forgotten warp entries to the main conf file [ultramage]
|
||||
|
@ -3,7 +3,7 @@
|
||||
//===== By: =========================
|
||||
//= eAthena Dev Team
|
||||
//===== Current Version: ===================
|
||||
//= 2.31
|
||||
//= 2.32
|
||||
//===== Compatible With: =====================
|
||||
//= eAthena 1.0
|
||||
//===== Description: ============================================
|
||||
@ -20,6 +20,7 @@
|
||||
//= v2.2 New Payon Locations. [Darkchild]
|
||||
//= 2.3 1 New Kafra, fixed save menus
|
||||
//= 2.31 New prices [Evera]
|
||||
//= 2.32 Minor fix to Payon Archer Kafra [SinSloth]
|
||||
//==========================================================================
|
||||
|
||||
|
||||
@ -46,7 +47,7 @@ payon,175,226,4 script Kafra::kaf_payon2 116,{
|
||||
}
|
||||
|
||||
// Archer Village ------------------------------------------------------------
|
||||
pay_arche,55,123,8 script Kafra::kaf_payon3 115,{
|
||||
pay_arche,55,123,0 script Kafra::kaf_payon3 115,{
|
||||
cutin "kafra_03",2;
|
||||
callfunc "F_KafSetPay";
|
||||
callfunc "F_Kafra",0,5,1;
|
||||
|
@ -1,132 +0,0 @@
|
||||
//===== Athena Script =====================================
|
||||
//= Juperos Dungeon Quests
|
||||
//===== By ================================================
|
||||
//= MasterOfMuppets
|
||||
//===== Version ===========================================
|
||||
//= 1.0
|
||||
//===== Compatible With ===================================
|
||||
//= eAthena 1.0
|
||||
//===== Description =======================================
|
||||
//=
|
||||
//===== Comments ==========================================
|
||||
//= 1.0 First version, partly implemented [MasterOfMuppets]
|
||||
//=========================================================
|
||||
|
||||
juperos_01,79,91,1 script Sculpture#Juperos1 111,{
|
||||
|
||||
mes "^3131FFIt's a sculpture that";
|
||||
mes "looks familiar to you.";
|
||||
close;
|
||||
|
||||
}
|
||||
|
||||
juperos_01,100,71,1 script Bronze Statue#Juperos2 111,{
|
||||
|
||||
mes "^3131FFIt's an elaborate";
|
||||
mes "bronze statue that";
|
||||
mes "is twice the height of";
|
||||
mes "a normal human being.";
|
||||
close;
|
||||
|
||||
}
|
||||
|
||||
juperos_01,124,92,1 script Stone Statue#Juperos3 111,{
|
||||
|
||||
mes "^3131FFIt's an old";
|
||||
mes "statue sculpted";
|
||||
mes "out of stone.";
|
||||
close;
|
||||
|
||||
}
|
||||
|
||||
//Quest related?
|
||||
//juperos_01,x,y,1 script Bronze Statue#Juperos4 111,{
|
||||
//
|
||||
// mes "^3131FFThere's a peculiar";
|
||||
// mes "engraving on the";
|
||||
// mes "Bronze Statue's rod.";
|
||||
// next;
|
||||
// menu "Investigate",s_Invest,"Ignore it",-;
|
||||
//
|
||||
// close;
|
||||
//
|
||||
//s_Invest:
|
||||
//
|
||||
// mes "^3131FFIt's an inscription that's";
|
||||
// mes "written in an old language";
|
||||
// mes "that you can't understand,";
|
||||
// mes "but have no problem reading";
|
||||
// mes "and making out the sounds";
|
||||
// mes "for some weird reason.";
|
||||
// next;
|
||||
// mes "[" + strcharinfo(0) + "]";
|
||||
// mes "This is creepy!";
|
||||
// mes "I know that I'm not";
|
||||
// mes "supposed to be able";
|
||||
// mes "to read this, but here";
|
||||
// mes "I am. I know what sounds";
|
||||
// mes "all of these letters make...";
|
||||
// next;
|
||||
// mes "[" + strcharinfo(0) + "]";
|
||||
// mes "Huh. Only a scholar,";
|
||||
// mes "maybe someone even in";
|
||||
// mes "Juno, could make sense";
|
||||
// mes "of what this stuff says.";
|
||||
// close;
|
||||
//
|
||||
//}
|
||||
|
||||
juperos_02,1,1,1 script JuperosLvl2QuestInit -1,{
|
||||
OnInit:
|
||||
while(1)
|
||||
{
|
||||
|
||||
monster "juperos_02",24,276,"1st Gate Switch",1674,1,"JuperosLvl2QuestInit::OnGate1Dead";
|
||||
monster "juperos_02",240,29,"2nd Gate Switch",1674,1,"JuperosLvl2QuestInit::OnGate2Dead";
|
||||
monster "juperos_02",282,183,"3rd Gate Switch",1674,1,"JuperosLvl2QuestInit::OnGate3Dead";
|
||||
end;
|
||||
|
||||
OnGate1Dead:
|
||||
|
||||
mapannounce "juperos_02","Have you come seeking Juperos?! It no longer exists...",1,0xFF0000;
|
||||
set $JupeGate1,1;
|
||||
if($JupeGate1 && $JupeGate2 && $JupeGate3)goto s_WarpOpen;
|
||||
end;
|
||||
|
||||
OnGate2Dead:
|
||||
|
||||
mapannounce "juperos_02","Who are you to come here?",1,0xFF0000;
|
||||
set $JupeGate2,1;
|
||||
if($JupeGate1 && $JupeGate2 && $JupeGate3)goto s_WarpOpen;
|
||||
end;
|
||||
|
||||
OnGate3Dead:
|
||||
|
||||
mapannounce "juperos_02","Have you come to see me? Fine! Find me first!",1,0xFF0000;
|
||||
set $JupeGate3,1;
|
||||
if($JupeGate1 && $JupeGate2 && $JupeGate3)goto s_WarpOpen;
|
||||
end;
|
||||
|
||||
s_WarpOpen:
|
||||
attachnpctimer;
|
||||
initnpctimer;
|
||||
end;
|
||||
OnTimer3000:
|
||||
mapannounce "juperos_02","Vroom! Vroom!",1,0xBA55D3;
|
||||
end;
|
||||
OnTimer6000:
|
||||
mapannounce "juperos_02","Attention, visitors.",1,0xBA55D3;
|
||||
end;
|
||||
OnTimer9000:
|
||||
mapannounce "juperos_02","You are allowed to enter the next zone for a short period of time. Please use the portal in the center of the map.",1,0xBA55D3;
|
||||
enablenpc "JupeWarp2";
|
||||
end;
|
||||
OnTimer309000:
|
||||
mapannounce "juperos_02","The portal has now closed.",1,0xBA55D3;
|
||||
disablenpc "JupeWarp2";
|
||||
set $JupeGate1,0;
|
||||
set $JupeGate2,0;
|
||||
set $JupeGate3,0;
|
||||
stopnpctimer;
|
||||
}
|
||||
}
|
1800
npc/quests/quests_juperos.txt
Normal file
1800
npc/quests/quests_juperos.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -4,7 +4,7 @@
|
||||
//= Persian, Vicious_Pucca, aoa00, Evera, MasterOfMupppets,
|
||||
//= Lupus, Lord Gywall
|
||||
//===== Current Version: =====================================
|
||||
//= 2.9
|
||||
//= 3.0
|
||||
//===== Compatible With: =====================================
|
||||
//= eAthena SVN
|
||||
//===== Description: =========================================
|
||||
@ -50,6 +50,7 @@
|
||||
//= 2.8 More optimization. Also fixed bug with "2x short sticks -> long" [Lupus]
|
||||
//= Now uses MISC_QUEST&512 instead of 'hzdun'. WIP
|
||||
//= 2.9 Fixed Friendship Quest levelup exploit (u could get EXP twice) [Lupus]
|
||||
//= 3.0 Moved a book non-related to Lighthalzen quests. [SinSloth]
|
||||
//============================================================
|
||||
|
||||
lighthalzen,1,1,7 script sneakAddSuber -1,{
|
||||
@ -2563,33 +2564,6 @@ Book2:
|
||||
|
||||
}
|
||||
|
||||
yuno_in04,169,109,1 script Ambitious Hollgrehenn 111,{
|
||||
|
||||
mes "*Hollgrehenn: The Ambition*";
|
||||
mes "By Aragham Caul*";
|
||||
mes "";
|
||||
mes "";
|
||||
mes "";
|
||||
mes "";
|
||||
mes "Publisher:";
|
||||
mes "Muha Books, Co.";
|
||||
next;
|
||||
mes "...";
|
||||
mes "He would stop at nothing";
|
||||
mes "to have the greatest weapon";
|
||||
mes "in the world in his possession.";
|
||||
mes "He became a smith so that he";
|
||||
mes "could discern which weapons";
|
||||
mes "were the most powerful...";
|
||||
next;
|
||||
mes "[" + strcharinfo(0) + "]";
|
||||
mes "That's strange...";
|
||||
mes "The next page";
|
||||
mes "has been torn out.";
|
||||
close;
|
||||
|
||||
}
|
||||
|
||||
yuno_in04,171,117,1 script List of Books 111,{
|
||||
|
||||
mes "^3131FFYou find a series";
|
||||
|
@ -74,6 +74,7 @@ npc: npc/quests/quests_ein.txt
|
||||
npc: npc/quests/quests_geffen.txt
|
||||
npc: npc/quests/quests_gonryun.txt
|
||||
npc: npc/quests/quests_izlude.txt
|
||||
npc: npc/quests/quests_juperos.txt
|
||||
npc: npc/quests/quests_lighthalzen.txt
|
||||
npc: npc/quests/quests_louyang.txt
|
||||
npc: npc/quests/quests_lutie.txt
|
||||
@ -92,7 +93,6 @@ npc: npc/quests/doomed_swords.txt
|
||||
npc: npc/quests/bongunsword.txt
|
||||
npc: npc/quests/monstertamers.txt
|
||||
npc: npc/quests/Lvl4_weapon_quest.txt
|
||||
npc: npc/quests/juperos.txt
|
||||
npc: npc/quests/thana_quest.txt
|
||||
npc: npc/quests/eye_of_hellion.txt
|
||||
npc: npc/quests/quests_airship.txt
|
||||
|
Loading…
x
Reference in New Issue
Block a user