diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-12 18:57:02 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-12 18:57:02 +0000 |
commit | 7c0d97709c232044403d77c6c66d2e792365d5c4 (patch) | |
tree | 0552401b4a2e78745b453082a3041300caa5b19d /npc/custom/quests/bookofthedevil.txt | |
parent | bf469e529783e3716813b98f6436e94c02d43142 (diff) | |
download | hercules-7c0d97709c232044403d77c6c66d2e792365d5c4.tar.gz hercules-7c0d97709c232044403d77c6c66d2e792365d5c4.tar.bz2 hercules-7c0d97709c232044403d77c6c66d2e792365d5c4.tar.xz hercules-7c0d97709c232044403d77c6c66d2e792365d5c4.zip |
* Added Expanded Super Novice support to custom Job Master, and Kagerou/Oboro as well in comments (npc\custom\jobmaster.txt)
* Clarified rare_drop_announce description, since a lot of people have had trouble with it for whatever reason (conf\battle\drops.conf)
* Fixed a minor "viewpoint" argument error, bugreport:6221 (npc\jobs\3-2\royal_guard.txt)
* Deleted custom Kiel Dungeon warper (npc\custom\quests\kiel_quest.txt)
* Deleted custom Bongun Sword quest (npc\custom\quests\bongunsword.txt)
* Deleted custom Book of the Devil quest (npc\custom\quests\bookofthedevil.txt)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16418 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/quests/bookofthedevil.txt')
-rw-r--r-- | npc/custom/quests/bookofthedevil.txt | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/npc/custom/quests/bookofthedevil.txt b/npc/custom/quests/bookofthedevil.txt deleted file mode 100644 index 5933e71d0..000000000 --- a/npc/custom/quests/bookofthedevil.txt +++ /dev/null @@ -1,90 +0,0 @@ -//===== rAthena Script ======================================= -//= Quest for Book of Devil (Baphomet Jr. taming item) -//===== By: ================================================== -//= rAthena Dev Team -//===== Current Version: ===================================== -//= 1.2 -//===== Compatible With: ===================================== -//= rAthena SVN -//===== Description: ========================================= -//= Book of Devil (MISC_QUEST | 256) -//===== Additional Comments: ================================= -//= 1.0 ???? -//= 1.1 Optimized Book of Devil quest. used bit-wise var. [Lupus] -//= 1.2 Fixed name collision with 'Little Boy' in cities/lutie.txt [Ai4rei] -//============================================================ - -niflheim,184,199,5 script Little Girl#02 793,{ - mes "[Sairin]"; - if(MISC_QUEST & 256){ - mes "Thanks again!"; - close; - } - if(@niflheimlost == 2){ - mes "You found him?"; - mes "Oh thank you!"; - mes "Please, take this as a token of my appreciation."; - getitem 642,1;//Items: Book of Devil, - set MISC_QUEST,MISC_QUEST | 256; - set @niflheimlost,0; - close; - } - if(@niflheimlost == 1){ -M_YES: - set @niflheimlost,1; - mes "Please find him and tell him where I am! I saw him last in Niflheim Field, the first one..."; - close; - } - mes "Sir, will you please help me?"; - if(BaseJob==Job_Novice){ - mes "Oh... you are lost, too..."; - close; - } - next; - menu "Yes",-, "No",M_NO; - - mes "[Sairin]"; - mes "My friend and I went for a hike and ended up wandering into a strange field."; - next; - mes "[Sairin]"; - mes "Suddenly, I found a doll. I picked it up, and it turned into a ghost!"; - next; - mes "[Sairin]"; - mes "I screamed and ran as fast as I could. When I stopped running, I ended up in this strange town.."; - next; - mes "[Sairin]"; - mes "No one here will help me, and there are ghosts everywhere! Could you help me find my friend?"; - next; - menu "Sure",M_YES, "No",M_NO; -M_NO: - close; -} - -nif_fild01,213,268,5 script Little Boy#02 797,{ - if(MISC_QUEST & 256){ -L_DONE: - set @niflheimlost,2; - mes "[Marius]"; - mes "Thank you for helping us!"; - close; - } - if(@niflheimlost == 2) goto L_PART2; - if(@niflheimlost == 1){ - mes "[Marius]"; - mes "Who are you?"; - mes "..."; - mes "You found Sairin?"; - mes "She ran to Niflheim?"; - next; -L_PART2: - mes "[Marius]"; - mes "Could you tell her that I am on my way?"; - mes "I am a little slow, and its very important that she knows."; - next; - menu "Yes",L_DONE, "No",-; - close; - } - mes "[Marius]"; - mes "Sairin... where are you?"; - close; -} |