* Fixed a error in Rogue Job Quest. (bugreport:481)
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11790 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
a7163dc913
commit
fcb555eb2e
@ -1,5 +1,7 @@
|
|||||||
Date Added
|
Date Added
|
||||||
======
|
======
|
||||||
|
2007/11/23
|
||||||
|
* Fixed a error in Rogue Job Quest. (bugreport:481) [Samuray22]
|
||||||
2007/11/22
|
2007/11/22
|
||||||
* Fixed Missing Variables in Metto quest. (bugreport:473) [Samuray22]
|
* Fixed Missing Variables in Metto quest. (bugreport:473) [Samuray22]
|
||||||
* Deleted some unused Variables in Bio Ethics quest.
|
* Deleted some unused Variables in Bio Ethics quest.
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//===== By: ==================================================
|
//===== By: ==================================================
|
||||||
//= kobra_k88
|
//= kobra_k88
|
||||||
//===== Current Version: =====================================
|
//===== Current Version: =====================================
|
||||||
//= 2.4a
|
//= 2.4b
|
||||||
//===== Compatible With: =====================================
|
//===== Compatible With: =====================================
|
||||||
//= eAthena SVN
|
//= eAthena SVN
|
||||||
//===== Description: =========================================
|
//===== Description: =========================================
|
||||||
@ -13,6 +13,7 @@
|
|||||||
//= 2.4 Rescripted to Aegis 10.3 stadards. [L0ne_W0lf]
|
//= 2.4 Rescripted to Aegis 10.3 stadards. [L0ne_W0lf]
|
||||||
//= No longer uses function "F_BlockHigh"
|
//= No longer uses function "F_BlockHigh"
|
||||||
//= 2.4a Deleted unused variables. [Samuray22]
|
//= 2.4a Deleted unused variables. [Samuray22]
|
||||||
|
//= 2.4b Changed a Problem with JobLevel what made impossible get a Gladius [3]. (bugreport:481) [Samuray22]
|
||||||
//============================================================
|
//============================================================
|
||||||
|
|
||||||
morocc,100,104,1 script Thug#rg 118,{
|
morocc,100,104,1 script Thug#rg 118,{
|
||||||
@ -161,7 +162,6 @@ in_rogue,363,122,4 script Rogue Guildsman#rg 747,{
|
|||||||
mes "You've been";
|
mes "You've been";
|
||||||
mes "doin' a great job~";
|
mes "doin' a great job~";
|
||||||
}
|
}
|
||||||
set .@JobLevel,JobLevel;
|
|
||||||
callfunc "Job_Change",Job_Rogue;
|
callfunc "Job_Change",Job_Rogue;
|
||||||
callfunc "F_ClearJobVar";
|
callfunc "F_ClearJobVar";
|
||||||
next;
|
next;
|
||||||
@ -174,10 +174,11 @@ in_rogue,363,122,4 script Rogue Guildsman#rg 747,{
|
|||||||
mes "[Markie]";
|
mes "[Markie]";
|
||||||
mes "Enjoy your freedom as a Rogue. Just remember that you gotta be free and responsible at the same time. So treat other guys the way you wanna be treated, kay? Alright, seeya round.";
|
mes "Enjoy your freedom as a Rogue. Just remember that you gotta be free and responsible at the same time. So treat other guys the way you wanna be treated, kay? Alright, seeya round.";
|
||||||
close2;
|
close2;
|
||||||
if (.@jlevel == 50)
|
if (JobLevel == 50) {
|
||||||
getitem 1220,1; //Gladius_
|
getitem 1220,1; //Gladius_
|
||||||
else
|
} else {
|
||||||
getitem 1219,1; //Gladius
|
getitem 1219,1; //Gladius
|
||||||
|
}
|
||||||
end;
|
end;
|
||||||
}
|
}
|
||||||
if (select("I'm ready.:Hold on, I need to get ready!") == 2) {
|
if (select("I'm ready.:Hold on, I need to get ready!") == 2) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user