git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8806 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
cf75d0d331
commit
b0ff60c47b
@ -32,6 +32,8 @@ Playtester
|
|||||||
|
|
||||||
Date Added
|
Date Added
|
||||||
======
|
======
|
||||||
|
09/19
|
||||||
|
* Preparations for optimization of Louyang/Nifelhem scripts [Lupus]
|
||||||
09/16
|
09/16
|
||||||
* fixed apple dice game in Airship, fixed missing } in Einbech quests [Lupus]
|
* fixed apple dice game in Airship, fixed missing } in Einbech quests [Lupus]
|
||||||
09/15
|
09/15
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//===== By: ==================================================
|
//===== By: ==================================================
|
||||||
//= Nexon
|
//= Nexon
|
||||||
//===== Current Version: =====================================
|
//===== Current Version: =====================================
|
||||||
//= 1.3
|
//= 1.4
|
||||||
//===== Compatible With: =====================================
|
//===== Compatible With: =====================================
|
||||||
//= eAthena Revision 3000+
|
//= eAthena Revision 3000+
|
||||||
//===== Description: =========================================
|
//===== Description: =========================================
|
||||||
@ -374,22 +374,21 @@ einbroch.gat,232,272,3 script Train Station Staff#01::EinbrochTrain 852,{
|
|||||||
mes "stay in Einbroch.";
|
mes "stay in Einbroch.";
|
||||||
close;
|
close;
|
||||||
s_Yes:
|
s_Yes:
|
||||||
if(Zeny < 200)goto s_NEnough;
|
|
||||||
mes "[Staff]";
|
mes "[Staff]";
|
||||||
|
if(Zeny < 200){
|
||||||
|
mes "I'm sorry but you";
|
||||||
|
mes "do not have enough";
|
||||||
|
mes "money to pay the fee.";
|
||||||
|
close;
|
||||||
|
}
|
||||||
|
set Zeny,Zeny - 200;
|
||||||
mes "Thank you";
|
mes "Thank you";
|
||||||
mes "very much.";
|
mes "very much.";
|
||||||
mes "Have a safe trip.";
|
mes "Have a safe trip.";
|
||||||
mes "^111111*Ahem*^000000 All aboard!";
|
mes "^111111*Ahem*^000000 All aboard!";
|
||||||
close2;
|
close2;
|
||||||
set Zeny,Zeny - 200;
|
|
||||||
warp "einbech.gat",43,215;
|
warp "einbech.gat",43,215;
|
||||||
end;
|
end;
|
||||||
s_NEnough:
|
|
||||||
mes "[Staff]";
|
|
||||||
mes "I'm sorry but you";
|
|
||||||
mes "do not have enough";
|
|
||||||
mes "money to pay the fee.";
|
|
||||||
close;
|
|
||||||
s_Enviroment:
|
s_Enviroment:
|
||||||
mes "[Staff]";
|
mes "[Staff]";
|
||||||
mes "Einbroch is infamous for";
|
mes "Einbroch is infamous for";
|
||||||
@ -665,17 +664,17 @@ ein_in01.gat,68,209,4 script Khashurantze 852,{
|
|||||||
mes "special authority in order";
|
mes "special authority in order";
|
||||||
mes "to enter this place. I'll have";
|
mes "to enter this place. I'll have";
|
||||||
mes "to ask you to leave right now.";
|
mes "to ask you to leave right now.";
|
||||||
if(EinFactory > 0)goto L_work;
|
if(EinFactory > 0){
|
||||||
close2;
|
|
||||||
warp "einbroch.gat",179,63;
|
|
||||||
end;
|
|
||||||
|
|
||||||
L_work:
|
|
||||||
next;
|
next;
|
||||||
mes "[Khashurantze]";
|
mes "[Khashurantze]";
|
||||||
mes "Oh? Mr. Zelmeto asked you to help out?";
|
mes "Oh? Mr. Zelmeto asked you to help out?";
|
||||||
mes "In that case excuse me.";
|
mes "In that case excuse me.";
|
||||||
close;
|
close;
|
||||||
|
}
|
||||||
|
close2;
|
||||||
|
warp "einbroch.gat",179,63;
|
||||||
|
end;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ein_in01.gat,113,211,3 script Treinz 851,{
|
ein_in01.gat,113,211,3 script Treinz 851,{
|
||||||
@ -923,8 +922,13 @@ s_Save:
|
|||||||
close;
|
close;
|
||||||
|
|
||||||
s_Rest:
|
s_Rest:
|
||||||
if(Zeny < 5000)goto s_NEnoughZeny;
|
|
||||||
mes "[Hotel Employee]";
|
mes "[Hotel Employee]";
|
||||||
|
if(Zeny < 5000){
|
||||||
|
mes "I'm sorry but";
|
||||||
|
mes "you don't seem";
|
||||||
|
mes "to have enough zeny.";
|
||||||
|
close;
|
||||||
|
}
|
||||||
mes "Thank you.";
|
mes "Thank you.";
|
||||||
mes "Please enjoy";
|
mes "Please enjoy";
|
||||||
mes "your rest~";
|
mes "your rest~";
|
||||||
@ -934,13 +938,6 @@ s_Rest:
|
|||||||
percentheal 100,100;
|
percentheal 100,100;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
s_NEnoughZeny:
|
|
||||||
mes "[Hotel Employee]";
|
|
||||||
mes "I'm sorry but";
|
|
||||||
mes "you don't seem";
|
|
||||||
mes "to have enough zeny.";
|
|
||||||
close;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ein_in01.gat,21,147,4 script Megass 853,3,3,{
|
ein_in01.gat,21,147,4 script Megass 853,3,3,{
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//===== By: ==================================================
|
//===== By: ==================================================
|
||||||
//= erKURITA
|
//= erKURITA
|
||||||
//===== Current Version: =====================================
|
//===== Current Version: =====================================
|
||||||
//= 1.0
|
//= 1.0a
|
||||||
//===== Compatible With: =====================================
|
//===== Compatible With: =====================================
|
||||||
//= eAthena 1.0
|
//= eAthena 1.0
|
||||||
//===== Description: =========================================
|
//===== Description: =========================================
|
||||||
@ -19,6 +19,7 @@
|
|||||||
//= 0.8 Removed Duplicates [Silent]
|
//= 0.8 Removed Duplicates [Silent]
|
||||||
//= 0.9 Removed Duplicates [Toms]
|
//= 0.9 Removed Duplicates [Toms]
|
||||||
//= 1.0 Added a missing feature to the donation NPC [MasterOfMuppets]
|
//= 1.0 Added a missing feature to the donation NPC [MasterOfMuppets]
|
||||||
|
//= 1.0a added constants to emotions, minor optimization [Lupus]
|
||||||
//=============================================================
|
//=============================================================
|
||||||
|
|
||||||
lighthalzen.gat,198,285,5 script Jiwon 862,{
|
lighthalzen.gat,198,285,5 script Jiwon 862,{
|
||||||
@ -40,7 +41,6 @@ lighthalzen.gat,198,285,5 script Jiwon 862,{
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
lighthalzen.gat,220,244,3 script Samnang 863,{
|
lighthalzen.gat,220,244,3 script Samnang 863,{
|
||||||
|
|
||||||
mes "[Samnang]";
|
mes "[Samnang]";
|
||||||
@ -590,8 +590,8 @@ lighthalzen.gat,182,102,3 script Lucius 866,{
|
|||||||
next;
|
next;
|
||||||
menu "Sure.",s_Sure,"No, thanks.",-;
|
menu "Sure.",s_Sure,"No, thanks.",-;
|
||||||
|
|
||||||
s_Cancel:
|
|
||||||
mes "[Lucius]";
|
mes "[Lucius]";
|
||||||
|
s_Cancel:
|
||||||
mes "I understand. Still,";
|
mes "I understand. Still,";
|
||||||
mes "keep in mind that when";
|
mes "keep in mind that when";
|
||||||
mes "you give from your heart,";
|
mes "you give from your heart,";
|
||||||
@ -609,12 +609,25 @@ s_Sure:
|
|||||||
mes "to cancel, please enter '0'.";
|
mes "to cancel, please enter '0'.";
|
||||||
next;
|
next;
|
||||||
input @zenydonate;
|
input @zenydonate;
|
||||||
if(@zenydonate > 30000)goto s_Much;
|
mes "[Lucius]";
|
||||||
if(!@zenydonate)goto s_Cancel;
|
if(!@zenydonate)goto s_Cancel;
|
||||||
if(Zeny < @zenydonate)goto s_NEnoughZ;
|
if(@zenydonate > 30000){
|
||||||
|
mes "I'm sorry but you can't";
|
||||||
|
mes "donate more than 30,000";
|
||||||
|
mes "zeny. Please choose another";
|
||||||
|
mes "number.";
|
||||||
|
close;
|
||||||
|
}
|
||||||
|
if(Zeny < @zenydonate){
|
||||||
|
mes "I'm sorry but you do";
|
||||||
|
mes "not have as much zeny";
|
||||||
|
mes "as you wish to donate.";
|
||||||
|
mes "Please come back when you";
|
||||||
|
mes "do!";
|
||||||
|
close;
|
||||||
|
}
|
||||||
set Zeny,Zeny - @zenydonate;
|
set Zeny,Zeny - @zenydonate;
|
||||||
set $donatedzeny,$donatedzeny + @zenydonate;
|
set $donatedzeny,$donatedzeny + @zenydonate;
|
||||||
mes "[Lucius]";
|
|
||||||
mes "Thank you so much";
|
mes "Thank you so much";
|
||||||
mes "for your " + @zenydonate + " zeny donation.";
|
mes "for your " + @zenydonate + " zeny donation.";
|
||||||
mes "I promise that your money";
|
mes "I promise that your money";
|
||||||
@ -627,8 +640,7 @@ s_Sure:
|
|||||||
mes "donations. I'm glad to see";
|
mes "donations. I'm glad to see";
|
||||||
mes "that there are still kinda and";
|
mes "that there are still kinda and";
|
||||||
mes "generous people in the world.";
|
mes "generous people in the world.";
|
||||||
if($donatedzeny > 259999)
|
if($donatedzeny > 259999){
|
||||||
{
|
|
||||||
next;
|
next;
|
||||||
mes "[Lucius]";
|
mes "[Lucius]";
|
||||||
mes "This should be enough";
|
mes "This should be enough";
|
||||||
@ -643,23 +655,6 @@ s_Sure:
|
|||||||
}
|
}
|
||||||
close;
|
close;
|
||||||
|
|
||||||
s_Much:
|
|
||||||
mes "[Lucius]";
|
|
||||||
mes "I'm sorry but you can't";
|
|
||||||
mes "donate more than 30,000";
|
|
||||||
mes "zeny. Please choose another";
|
|
||||||
mes "number.";
|
|
||||||
close;
|
|
||||||
|
|
||||||
s_NEnoughZ:
|
|
||||||
mes "[Lucius]";
|
|
||||||
mes "I'm sorry but you do";
|
|
||||||
mes "not have as much zeny";
|
|
||||||
mes "as you wish to donate.";
|
|
||||||
mes "Please come back when you";
|
|
||||||
mes "do!";
|
|
||||||
close;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lighthalzen.gat,147,105,3 script Laqumet 869,{
|
lighthalzen.gat,147,105,3 script Laqumet 869,{
|
||||||
@ -1019,7 +1014,7 @@ lighthalzen.gat,296,239,3 script Berru 706,{
|
|||||||
mes "[Berru]";
|
mes "[Berru]";
|
||||||
mes "Daddy...! Waaaaah~!";
|
mes "Daddy...! Waaaaah~!";
|
||||||
mes "I wanna see my daddy!";
|
mes "I wanna see my daddy!";
|
||||||
emotion 28;
|
emotion e_sob;
|
||||||
next;
|
next;
|
||||||
mes "[Pilia]";
|
mes "[Pilia]";
|
||||||
mes "Berru, I don't";
|
mes "Berru, I don't";
|
||||||
@ -1033,7 +1028,7 @@ lighthalzen.gat,296,239,3 script Berru 706,{
|
|||||||
mes "home! He said he'll";
|
mes "home! He said he'll";
|
||||||
mes "bring us candy tonight!";
|
mes "bring us candy tonight!";
|
||||||
mes "You go sleep first, Pilia!";
|
mes "You go sleep first, Pilia!";
|
||||||
emotion 7;
|
emotion e_ag;
|
||||||
next;
|
next;
|
||||||
mes "[Pilia]";
|
mes "[Pilia]";
|
||||||
mes "*Sigh...*";
|
mes "*Sigh...*";
|
||||||
@ -1054,18 +1049,22 @@ lighthalzen.gat,312,234,2 script Beggar 777,{
|
|||||||
mes "Would you give me";
|
mes "Would you give me";
|
||||||
mes "some money?";
|
mes "some money?";
|
||||||
next;
|
next;
|
||||||
menu "Give him some money.",L_give,"Ignore him.",-;
|
if(select("Give him some money.:Ignore him.")==2){
|
||||||
mes "[" + strcharinfo(0) + "]";
|
mes "[" + strcharinfo(0) + "]";
|
||||||
mes "...";
|
mes "...";
|
||||||
mes "......";
|
mes "......";
|
||||||
close;
|
close;
|
||||||
|
}
|
||||||
L_give:
|
if(Zeny < 50){
|
||||||
if(Zeny < 50)goto L_zeny;
|
mes "[Beggar]";
|
||||||
|
mes "You don't seem to have";
|
||||||
|
mes "enough zeny.";
|
||||||
|
close;
|
||||||
|
}
|
||||||
|
set Zeny,Zeny-50;
|
||||||
mes "[" + strcharinfo(0) + "]";
|
mes "[" + strcharinfo(0) + "]";
|
||||||
mes "Here you go,";
|
mes "Here you go,";
|
||||||
mes "take this.";
|
mes "take this.";
|
||||||
set Zeny,Zeny-50;
|
|
||||||
next;
|
next;
|
||||||
mes "[Beggar]";
|
mes "[Beggar]";
|
||||||
mes "Thank you so much.";
|
mes "Thank you so much.";
|
||||||
@ -1074,7 +1073,7 @@ L_give:
|
|||||||
mes "a story with you and impart";
|
mes "a story with you and impart";
|
||||||
mes "some of the wisdom I've";
|
mes "some of the wisdom I've";
|
||||||
mes "learned over the years.";
|
mes "learned over the years.";
|
||||||
emotion 15;
|
emotion e_thx;
|
||||||
next;
|
next;
|
||||||
mes "[Beggar]";
|
mes "[Beggar]";
|
||||||
mes "Anger. People deal with";
|
mes "Anger. People deal with";
|
||||||
@ -1134,12 +1133,6 @@ L_give:
|
|||||||
mes "to take in, I know.";
|
mes "to take in, I know.";
|
||||||
close;
|
close;
|
||||||
|
|
||||||
L_zeny:
|
|
||||||
mes "[Beggar]";
|
|
||||||
mes "You don't seem to have";
|
|
||||||
mes "enough zeny.";
|
|
||||||
close;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
@ -1158,7 +1151,7 @@ lighthalzen.gat,311,194,3 script Reuben 870,{
|
|||||||
mes "Did you just hear";
|
mes "Did you just hear";
|
||||||
mes "me talk to myself?";
|
mes "me talk to myself?";
|
||||||
mes "Crud! Don't be so nosy!";
|
mes "Crud! Don't be so nosy!";
|
||||||
emotion 6;
|
emotion e_an;
|
||||||
close;
|
close;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1260,7 +1253,7 @@ lighthalzen.gat,337,296,3 script Employee 867,{
|
|||||||
mes "professional positions. This";
|
mes "professional positions. This";
|
||||||
mes "is a great chance to make a";
|
mes "is a great chance to make a";
|
||||||
mes "difference... and some money~";
|
mes "difference... and some money~";
|
||||||
emotion 21;
|
emotion e_no1;
|
||||||
close;
|
close;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1372,7 +1365,7 @@ lhz_in01.gat,125,40,2 script Dowbow Ryuei#Dowbow_Ryuei 843,{
|
|||||||
mes "outlook on life. If you don't";
|
mes "outlook on life. If you don't";
|
||||||
mes "mind, I'd like to shake";
|
mes "mind, I'd like to shake";
|
||||||
mes "your hand, adventurer.";
|
mes "your hand, adventurer.";
|
||||||
emotion 21;
|
emotion e_no1;
|
||||||
close;
|
close;
|
||||||
|
|
||||||
L_reality:
|
L_reality:
|
||||||
@ -2003,18 +1996,8 @@ s_Staff:
|
|||||||
|
|
||||||
lhz_in01.gat,19,129,0 script LhzHiddenTrg1::LhzTrig -1,1,1{
|
lhz_in01.gat,19,129,0 script LhzHiddenTrg1::LhzTrig -1,1,1{
|
||||||
OnTouch:
|
OnTouch:
|
||||||
if(isequipped(2241) && isequipped(2243)) goto s_Staff;
|
|
||||||
mes "[Rekenber Guard]";
|
|
||||||
mes "This area is restricted";
|
|
||||||
mes "to the public! Who are you";
|
|
||||||
mes "and how did you get in here?!";
|
|
||||||
mes "Hey, I need backup right away!";
|
|
||||||
close2;
|
|
||||||
warp "lhz_in01.gat",34,224;
|
|
||||||
end;
|
|
||||||
|
|
||||||
s_Staff:
|
|
||||||
mes "[Rekenber Guard]";
|
mes "[Rekenber Guard]";
|
||||||
|
if(isequipped(2241) && isequipped(2243)){
|
||||||
mes "Keep your eyes open.";
|
mes "Keep your eyes open.";
|
||||||
mes "I've heard rumors that some";
|
mes "I've heard rumors that some";
|
||||||
mes "adventurers from Rune-Midgard";
|
mes "adventurers from Rune-Midgard";
|
||||||
@ -2022,6 +2005,14 @@ s_Staff:
|
|||||||
mes "I know the security here is";
|
mes "I know the security here is";
|
||||||
mes "pretty much failsafe, but...";
|
mes "pretty much failsafe, but...";
|
||||||
close;
|
close;
|
||||||
|
}
|
||||||
|
mes "This area is restricted";
|
||||||
|
mes "to the public! Who are you";
|
||||||
|
mes "and how did you get in here?!";
|
||||||
|
mes "Hey, I need backup right away!";
|
||||||
|
close2;
|
||||||
|
warp "lhz_in01.gat",34,224;
|
||||||
|
end;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2031,30 +2022,16 @@ lhz_in01.gat,24,131,2 duplicate(LhzTrig) Rekenber Guard#02 867
|
|||||||
|
|
||||||
lhz_in01.gat,25,141,4 script Regenschirm Guard 868,{
|
lhz_in01.gat,25,141,4 script Regenschirm Guard 868,{
|
||||||
|
|
||||||
if(isequipped(2241) && isequipped(2243)) goto s_Staff;
|
|
||||||
mes "[Regenschirm Guard]";
|
|
||||||
mes "This area is restricted";
|
|
||||||
mes "to the public! Who are you";
|
|
||||||
mes "and how did you get in here?!";
|
|
||||||
mes "Hey, I need backup right away!";
|
|
||||||
close2;
|
|
||||||
warp "lhz_in01.gat",34,224;
|
|
||||||
end;
|
|
||||||
|
|
||||||
s_Staff:
|
|
||||||
mes "[Regenschirm Guard]";
|
mes "[Regenschirm Guard]";
|
||||||
|
if(isequipped(2241) && isequipped(2243)){
|
||||||
mes "Do you wish to";
|
mes "Do you wish to";
|
||||||
mes "go underground?";
|
mes "go underground?";
|
||||||
next;
|
next;
|
||||||
menu "Yes",s_Yes,"No",-;
|
if(select("Yes:No")==1){
|
||||||
|
if(isequipped(2657)){
|
||||||
mes "[Regenschirm Guard]";
|
warp "lhz_dun01.gat",150,288;
|
||||||
mes "Thank you and";
|
end;
|
||||||
mes "have a nice day.";
|
}
|
||||||
close;
|
|
||||||
|
|
||||||
s_Yes:
|
|
||||||
if(isequipped(2657)) goto s_Auth;
|
|
||||||
mes "[Regenschirm Guard]";
|
mes "[Regenschirm Guard]";
|
||||||
mes "I'm sorry but I can't let";
|
mes "I'm sorry but I can't let";
|
||||||
mes "staff without proper autorization";
|
mes "staff without proper autorization";
|
||||||
@ -2063,8 +2040,18 @@ s_Yes:
|
|||||||
mes "to enter the underground.";
|
mes "to enter the underground.";
|
||||||
close;
|
close;
|
||||||
|
|
||||||
s_Auth:
|
}
|
||||||
warp "lhz_dun01.gat",150,288;
|
mes "[Regenschirm Guard]";
|
||||||
|
mes "Thank you and";
|
||||||
|
mes "have a nice day.";
|
||||||
|
close;
|
||||||
|
}
|
||||||
|
mes "This area is restricted";
|
||||||
|
mes "to the public! Who are you";
|
||||||
|
mes "and how did you get in here?!";
|
||||||
|
mes "Hey, I need backup right away!";
|
||||||
|
close2;
|
||||||
|
warp "lhz_in01.gat",34,224;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
//= MasterOfMuppets (2.0)
|
//= MasterOfMuppets (2.0)
|
||||||
//= eAthena Dev Team
|
//= eAthena Dev Team
|
||||||
//===== Current Version: =====================================
|
//===== Current Version: =====================================
|
||||||
//= 2.7
|
//= 2.7a
|
||||||
//===== Compatible With: =====================================
|
//===== Compatible With: =====================================
|
||||||
//= Any eAthena Version
|
//= Any eAthena Version
|
||||||
//===== Description: =========================================
|
//===== Description: =========================================
|
||||||
@ -33,7 +33,7 @@
|
|||||||
//= 2.6 Removed Duplicates [Silent]
|
//= 2.6 Removed Duplicates [Silent]
|
||||||
//= 2.6a Updated a few names with new item_db.txt names [Evera]
|
//= 2.6a Updated a few names with new item_db.txt names [Evera]
|
||||||
//= 2.7 Split quests to quests/quests_louyang.txt [Evera]
|
//= 2.7 Split quests to quests/quests_louyang.txt [Evera]
|
||||||
//= Replaced some instances of using global vars when not needed [Evera]
|
//= 2.7a Minor optimizations before Louyang quests [Lupus]
|
||||||
//============================================================
|
//============================================================
|
||||||
|
|
||||||
alberta.gat,245,45,4 script Girl#02 815,{
|
alberta.gat,245,45,4 script Girl#02 815,{
|
||||||
@ -81,8 +81,14 @@ M_GOTO:
|
|||||||
next;
|
next;
|
||||||
menu "Sure",-,"Cancel",M_CANCEL2;
|
menu "Sure",-,"Cancel",M_CANCEL2;
|
||||||
|
|
||||||
if(Zeny < 10000) goto L_NOZENY;
|
|
||||||
mes "[Girl]";
|
mes "[Girl]";
|
||||||
|
if(Zeny < 10000){
|
||||||
|
mes "...";
|
||||||
|
mes "You don't seem";
|
||||||
|
mes "to have 10,100 zeny...";
|
||||||
|
mes "Go get some money first!";
|
||||||
|
close;
|
||||||
|
}
|
||||||
mes "Okay~";
|
mes "Okay~";
|
||||||
mes "Ready!";
|
mes "Ready!";
|
||||||
mes "Have fun!";
|
mes "Have fun!";
|
||||||
@ -91,14 +97,6 @@ M_GOTO:
|
|||||||
warp "lou_fild01.gat",190,101;
|
warp "lou_fild01.gat",190,101;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
L_NOZENY:
|
|
||||||
mes "[Girl]";
|
|
||||||
mes "...";
|
|
||||||
mes "You don't seem";
|
|
||||||
mes "to have 10,100 zeny...";
|
|
||||||
mes "Go get some money first!";
|
|
||||||
close;
|
|
||||||
|
|
||||||
M_CANCEL:
|
M_CANCEL:
|
||||||
mes "[Girl]";
|
mes "[Girl]";
|
||||||
mes "Oh...";
|
mes "Oh...";
|
||||||
@ -519,90 +517,71 @@ louyang.gat,276,136,4 script Fist Master 819,{
|
|||||||
}
|
}
|
||||||
|
|
||||||
louyang.gat,272,133,0 script Trainee::trainees 819,{
|
louyang.gat,272,133,0 script Trainee::trainees 819,{
|
||||||
set @talk,rand(12);
|
|
||||||
if(@talk == 1) goto L_QUOT1;
|
|
||||||
if(@talk == 2) goto L_QUOT2;
|
|
||||||
if(@talk == 3) goto L_QUOT3;
|
|
||||||
if(@talk == 4) goto L_QUOT4;
|
|
||||||
if(@talk == 5) goto L_QUOT5;
|
|
||||||
if(@talk == 6) goto L_QUOT6;
|
|
||||||
if(@talk == 7) goto L_QUOT7;
|
|
||||||
if(@talk == 8) goto L_QUOT8;
|
|
||||||
if(@talk == 9) goto L_QUOT9;
|
|
||||||
if(@talk == 10) goto L_QUOT10;
|
|
||||||
if(@talk == 11) goto L_QUOT11;
|
|
||||||
L_QUOT0:
|
|
||||||
mes "[Trainee]";
|
mes "[Trainee]";
|
||||||
|
switch(rand(12)){
|
||||||
|
case 0:
|
||||||
mes "Aha~!";
|
mes "Aha~!";
|
||||||
mes "Hai~!!";
|
mes "Hai~!!";
|
||||||
mes "Huh...";
|
mes "Huh...";
|
||||||
close;
|
close;
|
||||||
L_QUOT1:
|
case 1:
|
||||||
mes "[Trainee]";
|
mes "[Trainee]";
|
||||||
mes "Woh~!";
|
mes "Woh~!";
|
||||||
mes "Hai~!!";
|
mes "Hai~!!";
|
||||||
mes "Huh huh...";
|
mes "Huh huh...";
|
||||||
close;
|
close;
|
||||||
L_QUOT2:
|
case 2:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "Kyaa~";
|
mes "Kyaa~";
|
||||||
mes "Yah~~!!";
|
mes "Yah~~!!";
|
||||||
mes ".......";
|
mes ".......";
|
||||||
close;
|
close;
|
||||||
L_QUOT3:
|
case 3:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "Hu~!";
|
mes "Hu~!";
|
||||||
mes "Hu hu~~!!";
|
mes "Hu hu~~!!";
|
||||||
mes "Hu...";
|
mes "Hu...";
|
||||||
close;
|
close;
|
||||||
L_QUOT4:
|
case 4:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "Wah?!";
|
mes "Wah?!";
|
||||||
mes "Ahchiu~~!!";
|
mes "Ahchiu~~!!";
|
||||||
mes "Wah...";
|
mes "Wah...";
|
||||||
close;
|
close;
|
||||||
L_QUOT5:
|
case 5:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "Yaah~";
|
mes "Yaah~";
|
||||||
mes "...!";
|
mes "...!";
|
||||||
mes "........!!";
|
mes "........!!";
|
||||||
close;
|
close;
|
||||||
L_QUOT6:
|
case 6:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "Chongchiu!!";
|
mes "Chongchiu!!";
|
||||||
mes "Hu~~!!";
|
mes "Hu~~!!";
|
||||||
mes "Hwooh~~";
|
mes "Hwooh~~";
|
||||||
close;
|
close;
|
||||||
L_QUOT7:
|
case 7:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "Zhua loh~!";
|
mes "Zhua loh~!";
|
||||||
mes ".....";
|
mes ".....";
|
||||||
mes "Hu";
|
mes "Hu";
|
||||||
close;
|
close;
|
||||||
L_QUOT8:
|
case 8:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "One hit~!";
|
mes "One hit~!";
|
||||||
mes "Hai~!!";
|
mes "Hai~!!";
|
||||||
mes "Yah~!!";
|
mes "Yah~!!";
|
||||||
close;
|
close;
|
||||||
L_QUOT9:
|
case 9:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "Ai yah..";
|
mes "Ai yah..";
|
||||||
mes "Yaahah~~";
|
mes "Yaahah~~";
|
||||||
mes "(rolls around)......";
|
mes "(rolls around)......";
|
||||||
close;
|
close;
|
||||||
L_QUOT10:
|
case 10:
|
||||||
mes "[Trainee]";
|
|
||||||
mes "Niu ah...";
|
mes "Niu ah...";
|
||||||
mes "One~~!!";
|
mes "One~~!!";
|
||||||
mes "Two~~!!!";
|
mes "Two~~!!!";
|
||||||
close;
|
close;
|
||||||
L_QUOT11:
|
case 11:
|
||||||
mes "[Trainee]";
|
default:
|
||||||
mes "Yeeah~!";
|
mes "Yeeah~!";
|
||||||
mes "Ah I’m so tired~~!!";
|
mes "Ah I’m so tired~~!!";
|
||||||
mes "(faints).....";
|
mes "(faints).....";
|
||||||
close;
|
close;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
louyang.gat,272,131,0 duplicate(trainees) Trainee#2 819
|
louyang.gat,272,131,0 duplicate(trainees) Trainee#2 819
|
||||||
@ -737,8 +716,11 @@ lou_in01.gat,25,23,4 script Friendly Looking Lady 817,{
|
|||||||
mes "person.";
|
mes "person.";
|
||||||
close;
|
close;
|
||||||
s_Yes:
|
s_Yes:
|
||||||
if(zeny < 500)goto L_Zeny;
|
|
||||||
mes "[Hong Miao]";
|
mes "[Hong Miao]";
|
||||||
|
if(zeny < 500){
|
||||||
|
mes "I am sorry, but you don't have enough money.";
|
||||||
|
close;
|
||||||
|
}
|
||||||
mes "Thank for your patronage.";
|
mes "Thank for your patronage.";
|
||||||
mes "We are trying to provide you with";
|
mes "We are trying to provide you with";
|
||||||
mes "the best service, Please";
|
mes "the best service, Please";
|
||||||
@ -747,10 +729,7 @@ s_Yes:
|
|||||||
set Zeny,Zeny - 500;
|
set Zeny,Zeny - 500;
|
||||||
warp "lou_in01.gat",16,19;
|
warp "lou_in01.gat",16,19;
|
||||||
end;
|
end;
|
||||||
L_Zeny:
|
|
||||||
mes "[Hong Miao]";
|
|
||||||
mes "I am sorry, but you don't have enough money.";
|
|
||||||
close;
|
|
||||||
s_Next_Time:
|
s_Next_Time:
|
||||||
mes "[Hong Miao]";
|
mes "[Hong Miao]";
|
||||||
mes "Please come";
|
mes "Please come";
|
||||||
@ -778,6 +757,6 @@ lou_in02.gat,272,55,1 script Familiar-Looking Patient 86,{
|
|||||||
mes "*Cough cough...*";
|
mes "*Cough cough...*";
|
||||||
mes "Awww......www...";
|
mes "Awww......www...";
|
||||||
mes "Aww...wwww..";
|
mes "Aww...wwww..";
|
||||||
emotion 9;
|
emotion e_dots;
|
||||||
close;
|
close;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user