Skip to content
Permalink
Browse files
Implemented 2012 Headgear Quests.
Credits to @cydh for helping out with the quest bonus.
Follow-up 1a9b54: added missing SQL item_db entries.

Clarified description of "delayed consumption" item type (11) in item_db documentation. (tid:91187, thanks Annie!)

Signed-off-by: Euphy <euphy.raliel@rathena.org>
  • Loading branch information
euphyy committed Jan 21, 2014
1 parent b818c78 commit 5d08795837f12005733f87cabc2eb56f50b4a90b
@@ -1725,7 +1725,10 @@ SC_MTF_CRIDAMAGE 585
SC_OKTOBERFEST 586
SC_STRANGELIGHTS 587
SC_DECORATION_OF_MUSIC 588
SC_EXTREMITYFIST2 589
SC_QUEST_BUFF1 589
SC_QUEST_BUFF2 590
SC_QUEST_BUFF3 591
SC_EXTREMITYFIST2 592

//Status Icon
SI_BLANK -1
@@ -743,14 +743,14 @@
5172,0,1784,100,0,0,0,0,"Mid-Level collection request"
5173,0,1316,100,0,0,0,0,"Mid-Level collection request"
5174,86400,0,0,0,0,0,0,"High level collectiong request[Stand by]"
5175,0,1106,100,0,0,0,0,"High level collectiong request"
5176,0,1148,100,0,0,0,0,"High level collectiong request"
5177,0,1995,100,0,0,0,0,"High level collectiong request"
5178,0,1310,100,0,0,0,0,"High level collectiong request"
5179,0,1163,100,0,0,0,0,"High level collectiong request"
5180,0,1993,100,0,0,0,0,"High level collectiong request"
5181,0,1297,100,0,0,0,0,"High level collectiong request"
5182,0,1699,100,0,0,0,0,"High level collectiong request"
5175,0,1106,100,0,0,0,0,"High level collection request"
5176,0,1148,100,0,0,0,0,"High level collection request"
5177,0,1995,100,0,0,0,0,"High level collection request"
5178,0,1310,100,0,0,0,0,"High level collection request"
5179,0,1163,100,0,0,0,0,"Highest level collection request"
5180,0,1993,100,0,0,0,0,"Highest level collection request"
5181,0,1297,100,0,0,0,0,"Highest level collection request"
5182,0,1699,100,0,0,0,0,"Highest level collection request"
5222,0,0,0,0,0,0,0,"Saving the energy crystals"
5223,0,0,0,0,0,0,0,"Saving the energy crystals"
5224,0,0,0,0,0,0,0,"Saving the energy crystals"
@@ -33,8 +33,9 @@ Type:
7 Pet egg
8 Pet equipment
10 Ammo (Arrows/Bullets/etc)
11 Usable with delayed consumption (item is lost from inventory
after selecting a target, for use with skills and pet lures)
11 Usable with delayed consumption (intended for 'itemskill')
Items using the 'itemskill' script command are consumed after
selecting a target. Any other command will NOT consume the item.
12 Shadow Equipment
18 Another delayed consume that requires user confirmation before
using item.
@@ -4973,7 +4973,7 @@ Examples:

---------------------------------------

*getstatus <effect type>{,<type>};
*getstatus(<effect type>{,<type>})

Retrieve information about a specific status effect when called. Depending on <type>
specified the function will return different information.
@@ -1,5 +1,5 @@
//===== rAthena Script =======================================
//= 2006 Headgear
//= 2006 Headgear Quests
//===== By: ==================================================
//= DiviniaRO members, cleaned by reddozen
//===== Current Version: =====================================
@@ -1,5 +1,5 @@
//===== rAthena Script =======================================
//= 2008 Headgear
//= 2008 Headgear Quests
//===== By: ==================================================
//= Masao
//= Credits: Muad_Dib

2 comments on commit 5d08795

@euphyy
Copy link
Contributor Author

@euphyy euphyy commented on 5d08795 Jan 21, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a.k.a. "Eden Group Crystal Synthesis", read for details:
http://irowiki.org/wiki/Eden_Group_Crystal_Synthesis (not entirely accurate)

@euphyy
Copy link
Contributor Author

@euphyy euphyy commented on 5d08795 Jan 21, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again, credits to @SkittleNugget for a large portion of the dialogue.

Please sign in to comment.