* Implemented Bakonawa Extermination quest.

* Misc. cleaning.

Signed-off-by: Euphy <euphy@rathena.org>
This commit is contained in:
Euphy 2013-08-07 02:47:45 -04:00
parent 7beb7edc77
commit 32b8d2e713
6 changed files with 1728 additions and 35 deletions

View File

@ -57,7 +57,7 @@
1183,0,0,0,0,0,0,0,"Get Rid of Bakonawa" 1183,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1184,0,0,0,0,0,0,0,"Get Rid of Bakonawa" 1184,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1185,0,0,0,0,0,0,0,"Get Rid of Bakonawa" 1185,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1186,0,0,0,0,0,0,0,"Get Rid of Bakonawa" 1186,0,2313,15,0,0,0,0,"Get Rid of Bakonawa"
1187,0,0,0,0,0,0,0,"Get Rid of Bakonawa" 1187,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1188,0,0,0,0,0,0,0,"Get Rid of Bakonawa" 1188,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1189,0,0,0,0,0,0,0,"Get Rid of Bakonawa" 1189,0,0,0,0,0,0,0,"Get Rid of Bakonawa"

View File

@ -5847,7 +5847,7 @@ A full example of a dynamic shop can be found in doc/sample/npc_dynamic_shop.txt
--------------------------------------- ---------------------------------------
*npcshopitem "<name>",<item id>,<price>{,<item id>,<price>{,<item id>,<price>{,...}}} *npcshopitem "<name>",<item id>,<price>{,<item id>,<price>{,<item id>,<price>{,...}}};
This command lets you override the contents of an existing NPC shop or cashshop. The This command lets you override the contents of an existing NPC shop or cashshop. The
current sell list will be wiped, and only the items specified with the price current sell list will be wiped, and only the items specified with the price
@ -5859,7 +5859,7 @@ Note that you cannot use -1 to specify default selling price!
--------------------------------------- ---------------------------------------
*npcshopadditem "<name>",<item id>,<price>{,<item id>,<price>{,<item id>,<price>{,...}}} *npcshopadditem "<name>",<item id>,<price>{,<item id>,<price>{,<item id>,<price>{,...}}};
This command will add more items at the end of the selling list for the This command will add more items at the end of the selling list for the
specified NPC shop or cashshop. If you specify an item already for sell, that item will specified NPC shop or cashshop. If you specify an item already for sell, that item will
@ -5871,7 +5871,7 @@ Note that you cannot use -1 to specify default selling price!
--------------------------------------- ---------------------------------------
*npcshopdelitem "<name>",<item id>{,<item id>{,<item id>{,...}}} *npcshopdelitem "<name>",<item id>{,<item id>{,<item id>{,...}}};
This command will remove items from the specified NPC shop or cashshop. This command will remove items from the specified NPC shop or cashshop.
If the item to remove exists more than once on the shop, all instances will be If the item to remove exists more than once on the shop, all instances will be
@ -5882,7 +5882,7 @@ value is only to confirm that the shop was indeed found.
--------------------------------------- ---------------------------------------
*npcshopattach "<name>"{,<flag>} *npcshopattach "<name>"{,<flag>};
This command will attach the current script to the given NPC shop. This command will attach the current script to the given NPC shop.
When a script is attached to a shop, the events "OnBuyItem" and "OnSellItem" When a script is attached to a shop, the events "OnBuyItem" and "OnSellItem"
@ -5900,7 +5900,7 @@ The function returns 0 if the shop was not found, 1 otherwise.
--------------------------------------- ---------------------------------------
*waitingroom "<chatroom name>",<limit>{,<event label>,<trigger>,<required zeny>,<min lvl>,<max lvl>}; *waitingroom "<chatroom name>",<limit>{,"<event label>"{,<trigger>{,<required zeny>{,<min lvl>{,<max lvl>}}}}};
This command will create a chat room, owned by the NPC object running this This command will create a chat room, owned by the NPC object running this
script and displayed above the NPC sprite. script and displayed above the NPC sprite.

View File

@ -1,17 +1,17 @@
//===== rAthena Script ====================================================== //===== rAthena Script =======================================
//= Geffen Town //= Geffen Town
//===== By: ================================================================= //===== By: ==================================================
//= Everybody mentioned in the comments //= Everybody mentioned in the comments
//===== Current Version: ==================================================== //===== Current Version: =====================================
//= 1.10 //= 2.0
//===== Compatible With: ==================================================== //===== Compatible With: =====================================
//= rAthena SVN //= rAthena SVN
//===== Description: ======================================================== //===== Description: =========================================
//= [Official Conversion] //= [Official Conversion]
//= Geffen Town NPCs //= Geffen Town NPCs
//===== Additional Comments: ================================================ //===== Additional Comments: =================================
//= Fully working //= Fully working
//= 1.1 - Spell Checked [massdriller] //= 1.1 Spell Checked [massdriller]
//= 1.2 Fixed more typos [Nexon] //= 1.2 Fixed more typos [Nexon]
//= 1.3 added a Level 4 weapon quest related NPC [MasterOfMuppets] //= 1.3 added a Level 4 weapon quest related NPC [MasterOfMuppets]
//= 1.4 Removed Duplicates [Silent] //= 1.4 Removed Duplicates [Silent]
@ -22,8 +22,8 @@
//= 1.7 Fixed bad NPC header data to comply with rev. 11603. [L0ne_W0lf] //= 1.7 Fixed bad NPC header data to comply with rev. 11603. [L0ne_W0lf]
//= 1.8 Fixed character's name and swapped gender dialogues [Lupus] //= 1.8 Fixed character's name and swapped gender dialogues [Lupus]
//= 1.9 Replaced effect numerics with constants. [Samuray22] //= 1.9 Replaced effect numerics with constants. [Samuray22]
//= 1.10 Bug fixes (bugreport:7928) [DeadlySilence] //= 2.0 Bug fixes (bugreport:7928) [DeadlySilence]
//=========================================================================== //============================================================
geffen,59,143,0 script Meera 91,{ geffen,59,143,0 script Meera 91,{
mes "[Meera]"; mes "[Meera]";

View File

@ -367,7 +367,7 @@ OnTimer60000:
OnTimer120000: OnTimer120000:
OnTimer180000: OnTimer180000:
OnTimer240000: OnTimer240000:
donpcevent "#SummonPuppetsn1::OnStart"; donpcevent instance_npcname("#SummonPuppetsn1")+"::OnStart";
end; end;
OnTimer300000: callsub OnAnnounce,"5 minutes",15,1; OnTimer300000: callsub OnAnnounce,"5 minutes",15,1;
OnTimer360000: callsub OnAnnounce,"4 minutes",15,1; OnTimer360000: callsub OnAnnounce,"4 minutes",15,1;

File diff suppressed because it is too large Load Diff