diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-07 13:51:38 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-07 13:51:38 +0000 |
commit | 5d1d55adc1b889b8a670c9db2459c06e70c916e7 (patch) | |
tree | 557469119828b7fdca6c531711475f8c3d5f284b /npc/quests/newgears/mask_of_alarm.txt | |
parent | cef44b0916ccffb9ac8d24460b302949e7367b04 (diff) | |
download | hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.gz hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.bz2 hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.xz hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.zip |
fixed 16 newgear quests
(each contained 1-4 bugs: missing labels, wrong labels, wrong items amount, missing checks, missing delitem wrong item ID ,etc )
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@488 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/newgears/mask_of_alarm.txt')
-rw-r--r-- | npc/quests/newgears/mask_of_alarm.txt | 46 |
1 files changed, 27 insertions, 19 deletions
diff --git a/npc/quests/newgears/mask_of_alarm.txt b/npc/quests/newgears/mask_of_alarm.txt index 4e54a6b6a..f53564767 100644 --- a/npc/quests/newgears/mask_of_alarm.txt +++ b/npc/quests/newgears/mask_of_alarm.txt @@ -4,41 +4,49 @@ //= Halca (1.0) //= Mass Zero (1.1) //===== Current Version: ===================================== -//= 1.1 +//= 1.2 //===== Compatible With: ===================================== //= Any eAthena Version. //===== Description: ========================================= -//= Seperate Mask of Alarm quest. +//= Seperate Expressionless Mask (Mask of Alarm) quest. //===== Additional Comments: ================================= -//= +//= 1.2 Fixed wrong labels, added missing text and labels, +//= changed Zeny amount, fixed wrong item ID [Lupus] //============================================================ aldebaran.gat,87,181,3 script Muslam 819,{ mes "[Muslam]"; mes "I love Alarms, so evil, just like me."; mes "Touch me and I will rip your arm off!"; - next; + next; mes "[Muslam]"; - mes "Anyways... If you want a Mask of an Alarm,"; - mes "bring me 3000 Zeny,"; + mes "Anyways... If you want a Expressionless Mask (Mask of an Alarm),"; + mes "bring me 300,000 Zeny,"; mes "and 1 Monster Oxygen Mask."; - next; + next; mes "[Muslam]"; mes "Got these?"; - next; - menu "Yep!",-,"Nope!",EXT; - if ((countitem(10002) < 1) || (Zeny < 300000)) GOTO EX_NR; + next; + menu "Yep!",-,"Nope!",M_EXIT; + + if ((countitem(10002) < 1) || (Zeny < 300000)) GOTO L_NOITEM;//Items: Monster Oxygen Mask, mes "[Muslam]"; mes "Great!"; - next; - delitem 1002,1; - set Zeny,Zeny-300000; - getitem 5087,1; + next; + delitem 10002,1;//Items: Monster Oxygen Mask, + set Zeny,Zeny-300000; + getitem 5087,1;//Items: Expressionless Mask, mes "[Muslam]"; mes "Enjoy your item!"; - close; -EX_NR: + close; + +L_NOITEM: + mes "[Muslam]"; + mes "Where is 1 Monster Oxygen Mask and 300,000 Zeny?"; + close; + +M_EXIT: mes "[Muslam]"; - mes "Kay! byeee."; - close; -}
\ No newline at end of file + mes "Mkay! byeee."; + close; +} |