diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-31 09:42:24 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-31 09:42:24 +0000 |
commit | 31bf1466cfeb3e4ea72c58c5ea715532f65dd28d (patch) | |
tree | 608aef61663e4879f14808d0ee04a1e8a324fc93 /npc/cities/izlude.txt | |
parent | f2fd4a251da74bb8311c321e800f8fce9f5e5fef (diff) | |
download | hercules-31bf1466cfeb3e4ea72c58c5ea715532f65dd28d.tar.gz hercules-31bf1466cfeb3e4ea72c58c5ea715532f65dd28d.tar.bz2 hercules-31bf1466cfeb3e4ea72c58c5ea715532f65dd28d.tar.xz hercules-31bf1466cfeb3e4ea72c58c5ea715532f65dd28d.zip |
many quests variables are shrinked in 1 variable bits. UPDATE ALL YOUR OLD scripts!
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6884 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/cities/izlude.txt')
-rw-r--r-- | npc/cities/izlude.txt | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/npc/cities/izlude.txt b/npc/cities/izlude.txt index 1b3c82649..15dbb0330 100644 --- a/npc/cities/izlude.txt +++ b/npc/cities/izlude.txt @@ -3,7 +3,7 @@ //===== By: ==================================================
//= kobra_k88
//===== Current Version: =====================================
-//= 1.4
+//= 1.5
//===== Compatible With: =====================================
//= eAthena 7.15 +
//===== Description: =========================================
@@ -13,8 +13,9 @@ //= 1.1 fixed 2 zeny bugs/checks [Lupus]
//= 1.2 Fixed a lot of typo’s [Nexon]
//= 1.3 Removed callfunc Is_####_Class in favor of baseClass [Silentdragon]
-//= 1.4 Added a Jawaii related npc [MasterOfMuppets]
-//= 1.4a Fixed a small bug to the Jawaii warper, thanks to reddozen and Silent [MasterOfMuppets]
+//= 1.4 Added a Jawaii related npc. 1.4a Fixed a small bug to
+//= the Jawaii warper, thanks to reddozen and Silent [MasterOfMuppets]
+//= 1.5 Replaced iz_move_alberta with MISC_QUEST & 16 [Lupus]
//============================================================
@@ -828,7 +829,7 @@ M_Menu: close;
sM_1:
- if (iz_move_alberta == 1) goto sM_2;
+ if (MISC_QUEST & 16) goto sM_2;
mes "[Edgar]";
mes "Okay...";
mes "You don't want to walk AND you've";
@@ -843,7 +844,7 @@ M_Menu: next;
menu "Alrighty~?",-,"Bah, what a rip off!!",sm_1b;
- set iz_move_alberta,1;
+ set MISC_QUEST,MISC_QUEST | 16;
if(Zeny < 250) goto sl_NoZeny;
set Zeny, Zeny - 250;
warp "alberta.gat",195,164;
@@ -978,8 +979,6 @@ s_Go: }
else if(Zeny < 100000)
{
-
-
mes "[Marry Happy]";
mes "I've explained about the trip to 'Jawaii'.";
mes "You'll need 100,000 z.";
|