* 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"
1184,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"
1188,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
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
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.
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.
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
script and displayed above the NPC sprite.

View File

@ -1,29 +1,29 @@
//===== rAthena Script ======================================================
//===== rAthena Script =======================================
//= Geffen Town
//===== By: =================================================================
//===== By: ==================================================
//= Everybody mentioned in the comments
//===== Current Version: ====================================================
//= 1.10
//===== Compatible With: ====================================================
//===== Current Version: =====================================
//= 2.0
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: ========================================================
//===== Description: =========================================
//= [Official Conversion]
//= Geffen Town NPCs
//===== Additional Comments: ================================================
//===== Additional Comments: =================================
//= Fully working
//= 1.1 - Spell Checked [massdriller]
//= 1.2 Fixed more typos [Nexon]
//= 1.3 added a Level 4 weapon quest related NPC [MasterOfMuppets]
//= 1.4 Removed Duplicates [Silent]
//= 1.5 Fixed some typos and coordinates [Musashiden]
//= 1.1 Spell Checked [massdriller]
//= 1.2 Fixed more typos [Nexon]
//= 1.3 added a Level 4 weapon quest related NPC [MasterOfMuppets]
//= 1.4 Removed Duplicates [Silent]
//= 1.5 Fixed some typos and coordinates [Musashiden]
//= 1.5a Fixed a small typo [Evera]
//= 1.6 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
//= 1.6 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
//= 1.6a Small bug fix. (end -> next) care of Lesbian. [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.9 Replaced effect numerics with constants. [Samuray22]
//= 1.10 Bug fixes (bugreport:7928) [DeadlySilence]
//===========================================================================
//= 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.9 Replaced effect numerics with constants. [Samuray22]
//= 2.0 Bug fixes (bugreport:7928) [DeadlySilence]
//============================================================
geffen,59,143,0 script Meera 91,{
mes "[Meera]";

View File

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

View File

@ -11,10 +11,10 @@
//= Adds enchantments to various items in exchange for
//= Mora coins.
//===== Additional Comments: =================================
//= 1.0 First Version. [Euphy]
//= 1.1 Optimized. [Euphy]
//= 1.0 First Version. [Euphy]
//= 1.1 Optimized. [Euphy]
//= 1.1a Bug fixes. [Lemongrass]
//= 1.2 Bug fixes (bugreport:7930) [DeadlySilence]
//= 1.2 Bug fixes (bugreport:7930) [DeadlySilence]
//============================================================
// Arch Bishop Enchants :: coin_arc

File diff suppressed because it is too large Load Diff