* Corrected some issues in the Keil Hyre Quest and Mjolnir Seal quest.
- Corrected Sudri not setting player and NPC hp variables. (bugreport:2355) - Corrected a few minor typos in the Kyle Hyre Quest. (bugreport:2356) - Corrected bad if condition checking in Kyle Hyre Quest. (bugreport:2358) - Corrected Mjolnir seal checking for Oridecon hammer. (bugreport:2363) git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13305 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
2f4acc9ad7
commit
c78b24f6df
@ -1,5 +1,11 @@
|
|||||||
Date Added
|
Date Added
|
||||||
======
|
======
|
||||||
|
2008/10/17
|
||||||
|
* Rev. 13305 Corrected some issues in the Keil Hyre Quest and Mjolnir Seal quest. [L0ne_W0lf]
|
||||||
|
- Corrected Sudri not setting player and NPC hp variables. (bugreport:2355)
|
||||||
|
- Corrected a few minor typos in the Kyle Hyre Quest. (bugreport:2356)
|
||||||
|
- Corrected bad if condition checking in Kyle Hyre Quest. (bugreport:2358)
|
||||||
|
- Corrected Mjolnir seal checking for Oridecon hammer. (bugreport:2363)
|
||||||
2008/10/16
|
2008/10/16
|
||||||
* Rev. 13295 Corrected typo in Nameless Monestary quest. (bugreport:2352) [L0ne_W0lf]
|
* Rev. 13295 Corrected typo in Nameless Monestary quest. (bugreport:2352) [L0ne_W0lf]
|
||||||
* Swapped baseclass for basejob and fixed server-wide announce in god item quests. (bugreport:2349)
|
* Swapped baseclass for basejob and fixed server-wide announce in god item quests. (bugreport:2349)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//===== By: ==================================================
|
//===== By: ==================================================
|
||||||
//= L0ne_W0lf (Script), DZeroX (Timer)
|
//= L0ne_W0lf (Script), DZeroX (Timer)
|
||||||
//===== Current Version: =====================================
|
//===== Current Version: =====================================
|
||||||
//= 4.2c
|
//= 4.3
|
||||||
//===== Compatible With: =====================================
|
//===== Compatible With: =====================================
|
||||||
//= eAthena SVN
|
//= eAthena SVN
|
||||||
//===== Description: =========================================
|
//===== Description: =========================================
|
||||||
@ -92,6 +92,8 @@
|
|||||||
//= 4.2a Follow up to last update. [L0ne_W0lf]
|
//= 4.2a Follow up to last update. [L0ne_W0lf]
|
||||||
//= 4.2b Missed a condition, fixed it though. [L0ne_W0lf]
|
//= 4.2b Missed a condition, fixed it though. [L0ne_W0lf]
|
||||||
//= 4.2c More various fixes :D [L0ne_W0lf]
|
//= 4.2c More various fixes :D [L0ne_W0lf]
|
||||||
|
//= 4.3 Fixed improper condition in the Elly NPC. [L0ne_W0lf]
|
||||||
|
//= Corrected some typos in the dialogs.
|
||||||
//============================================================
|
//============================================================
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
@ -1429,7 +1431,7 @@ kh_school,179,39,0 script Cute Student#kh 895,{
|
|||||||
mes "[Elly]";
|
mes "[Elly]";
|
||||||
mes "This place certainly";
|
mes "This place certainly";
|
||||||
mes "isn't like other schools.";
|
mes "isn't like other schools.";
|
||||||
mes "You already know that only";
|
//mes "You already know that only";
|
||||||
mes "Yeah, everything is made to";
|
mes "Yeah, everything is made to";
|
||||||
mes "fit each of the student's needs.";
|
mes "fit each of the student's needs.";
|
||||||
next;
|
next;
|
||||||
@ -1492,7 +1494,7 @@ kh_school,179,39,0 script Cute Student#kh 895,{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (KielHyreQuest >= 24 || KielHyreQuest <= 26) {
|
else if (KielHyreQuest >= 24 && KielHyreQuest <= 26) {
|
||||||
cutin "kh_elly04",2;
|
cutin "kh_elly04",2;
|
||||||
mes "[Elly]";
|
mes "[Elly]";
|
||||||
mes "Argh, I'm in a fix!";
|
mes "Argh, I'm in a fix!";
|
||||||
@ -4899,7 +4901,7 @@ kh_mansion,18,30,4 script Allysia 894,{
|
|||||||
mes "[Allysia]";
|
mes "[Allysia]";
|
||||||
mes "With their organic bodies";
|
mes "With their organic bodies";
|
||||||
mes "and advanced artificial hearts";
|
mes "and advanced artificial hearts";
|
||||||
mes "make from imitation Ymir Heart";
|
mes "made from imitation Ymir Heart";
|
||||||
mes "Pieces, they can experience";
|
mes "Pieces, they can experience";
|
||||||
mes "physiologic phenomena";
|
mes "physiologic phenomena";
|
||||||
mes "just like ordinary humans.";
|
mes "just like ordinary humans.";
|
||||||
@ -5063,7 +5065,7 @@ OnTouch:
|
|||||||
mes "son and heir, Kiehl, helped";
|
mes "son and heir, Kiehl, helped";
|
||||||
mes "his father establish this";
|
mes "his father establish this";
|
||||||
mes "special academy as their";
|
mes "special academy as their";
|
||||||
mes "way of giving back t society.";
|
mes "way of giving back to society.";
|
||||||
next;
|
next;
|
||||||
mes "[??????]";
|
mes "[??????]";
|
||||||
mes "Almost every corporation and";
|
mes "Almost every corporation and";
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//===== By: ==================================================
|
//===== By: ==================================================
|
||||||
//= SinSloth
|
//= SinSloth
|
||||||
//===== Current Version: =====================================
|
//===== Current Version: =====================================
|
||||||
//= 1.5
|
//= 1.6
|
||||||
//===== Compatible With: =====================================
|
//===== Compatible With: =====================================
|
||||||
//= eAthena
|
//= eAthena
|
||||||
//===== Description: =========================================
|
//===== Description: =========================================
|
||||||
@ -16,6 +16,8 @@
|
|||||||
//= 1.3 Minor Touchups to quest. [L0ne_W0lf]
|
//= 1.3 Minor Touchups to quest. [L0ne_W0lf]
|
||||||
//= 1.4 Optimizing refine method and wrong close2. [Zephyrus]
|
//= 1.4 Optimizing refine method and wrong close2. [Zephyrus]
|
||||||
//= 1.5 Fixed Trans classes being assigned random reward. [L0ne_W0lf]
|
//= 1.5 Fixed Trans classes being assigned random reward. [L0ne_W0lf]
|
||||||
|
//= 1.6 Fixed checking for Oridecon Hammer. [L0ne_W0lf]
|
||||||
|
//= Corrected Sudi's and player's HP settings.
|
||||||
//============================================================
|
//============================================================
|
||||||
|
|
||||||
prontera,124,297,3 script Tialfi 706,{
|
prontera,124,297,3 script Tialfi 706,{
|
||||||
@ -1050,6 +1052,8 @@ mjolnir_09,209,341,3 script Dwarf Blacksmith#south 826,{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(god_mjo_2 == 1) {
|
else if(god_mjo_2 == 1) {
|
||||||
|
set .@n_vit,200;
|
||||||
|
set .@p_vit,100;
|
||||||
while(1) {
|
while(1) {
|
||||||
mes "Sudri : " + .@n_vit + " HP";
|
mes "Sudri : " + .@n_vit + " HP";
|
||||||
mes "" + strcharinfo(0) + " : " + .@p_vit + " HP";
|
mes "" + strcharinfo(0) + " : " + .@p_vit + " HP";
|
||||||
@ -1456,6 +1460,8 @@ mjolnir_09,209,341,3 script Dwarf Blacksmith#south 826,{
|
|||||||
mes "[Sudri]";
|
mes "[Sudri]";
|
||||||
mes "Cool, let's fight!";
|
mes "Cool, let's fight!";
|
||||||
next;
|
next;
|
||||||
|
set .@n_vit,200;
|
||||||
|
set .@p_vit,100;
|
||||||
while(1) {
|
while(1) {
|
||||||
mes "Sudri : " + .@n_vit + " HP";
|
mes "Sudri : " + .@n_vit + " HP";
|
||||||
mes "" + strcharinfo(0) + " : " + .@p_vit + " HP";
|
mes "" + strcharinfo(0) + " : " + .@p_vit + " HP";
|
||||||
@ -2021,7 +2027,7 @@ mjolnir_01,35,136,7 script Dwarf Blacksmith#west 826,{
|
|||||||
close;
|
close;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (countitem(615) > 0) {
|
if (countitem(984) > 0) {
|
||||||
delitem 984,1; //Oridecon
|
delitem 984,1; //Oridecon
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user