* Fixed a Little Bug with the "How Does the Airship Work" Quest.

-Thanks to Playtester ^^U.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10778 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
samuray22 2007-06-17 22:01:48 +00:00
parent 48fc2d2e23
commit 926206dd08
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,8 @@
Date Added Date Added
====== ======
2007/06/17
* Fixed a Little Bug with the "How Does the Airship Work" Quest. [Samuray22]
-Thanks to Playtester ^^U.
2007/06/16 2007/06/16
* Rev. 10777 Fixed the Kafra function, which was screwing up teleporting. [L0ne_W0lf] * Rev. 10777 Fixed the Kafra function, which was screwing up teleporting. [L0ne_W0lf]
* Undid come of the changes to the Jawaii and Izlude NPCs. * Undid come of the changes to the Jawaii and Izlude NPCs.

View File

@ -3,7 +3,7 @@
//===== By: ================================================== //===== By: ==================================================
//= MasterOfMuppets //= MasterOfMuppets
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 0.8 //= 0.8b
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= eAthena SVN 3422+(Requires jA Script System) //= eAthena SVN 3422+(Requires jA Script System)
//===== Description: ========================================= //===== Description: =========================================
@ -24,6 +24,7 @@
//= Corrected Dialogs from some NPCs. //= Corrected Dialogs from some NPCs.
//= Added sistem to work with the "How Does the Airship Work" Quest [Samuray22] //= Added sistem to work with the "How Does the Airship Work" Quest [Samuray22]
//= 0.8 Moved Gambling NPC Kaci since it's part of a quest. [SinSloth] //= 0.8 Moved Gambling NPC Kaci since it's part of a quest. [SinSloth]
//= 0.9 Fixed a Little Bug with the "How Does the Airship Work" Quest. [Samuray22]
//============================================================ //============================================================
//============================================================ //============================================================
@ -668,7 +669,7 @@ while(1)
OnTimer15000: OnTimer15000:
set $@mobinv, $@mob_inv+1; set $@mobinv, $@mob_inv+1;
set $@mobrand, rand(1,3); set $@mobrand, rand(1,3);
if($@mobinv == 9 && $@mobrand == 3) { if($@mobinv >= 9 && $@mobrand == 3) {
stopnpctimer; stopnpctimer;
enablenpc "Quest_Izl"; enablenpc "Quest_Izl";
donpcevent "Quest_Izl::OnInvasion"; donpcevent "Quest_Izl::OnInvasion";