Fixed a bug in Orange Potion creating. Copy&Pasting = bad.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11661 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
L0ne_W0lf 2007-11-05 15:53:09 +00:00
parent 9d59dba910
commit d1074145f0
2 changed files with 12 additions and 7 deletions

View File

@ -1,5 +1,7 @@
Date Added Date Added
====== ======
2007/11/05
* Rev 11661 Fixed a bug in Orange Potion creating. Copy&Pasting = bad.[L0ne_W0lf]
2007/11/04 2007/11/04
* Updated Thor Volcano spawns [Playtester] * Updated Thor Volcano spawns [Playtester]
* Rev. 11653 Fixed a bug in sage job quest. [L0ne_W0lf] * Rev. 11653 Fixed a bug in sage job quest. [L0ne_W0lf]

View File

@ -3,7 +3,7 @@
//===== By: ================================================== //===== By: ==================================================
//= DZeroX //= DZeroX
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 1.1a //= 1.1b
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= eAthena SVN Trunk //= eAthena SVN Trunk
//===== Description: ========================================= //===== Description: =========================================
@ -19,6 +19,7 @@
//= 1.1 - Added changed the dialogs and name to fit the //= 1.1 - Added changed the dialogs and name to fit the
//= the official information. [DZeroX] //= the official information. [DZeroX]
//= 1.1a Removed .GATs [Lupus] //= 1.1a Removed .GATs [Lupus]
//= 1.1b Fixed a bug in Orange Potion creating. Copy&Pasting = bad. [L0ne_W0lf]
//============================================================ //============================================================
alberta_in,16,28,4 script Old Pharmacist 61,{ alberta_in,16,28,4 script Old Pharmacist 61,{
@ -73,10 +74,11 @@ alberta_in,16,28,4 script Old Pharmacist 61,{
mes "You rascal! You don't even have all the materials and you want me to make you potions?!"; mes "You rascal! You don't even have all the materials and you want me to make you potions?!";
close; close;
} }
set Zeny,Zeny-(.@max*getarg(1)); set Zeny,Zeny-(.@max*5);
delitem getarg(0),.@max*2; delitem 507,.@max;
delitem 508,.@max;
delitem 713,.@max; delitem 713,.@max;
getitem getarg(2),.@max; getitem 502,.@max;
mes "[Old Pharmacist]"; mes "[Old Pharmacist]";
mes "Here. Take them."; mes "Here. Take them.";
mes "Here you go. It's all done so you can take it. But remember! Abusing medicine is not good."; mes "Here you go. It's all done so you can take it. But remember! Abusing medicine is not good.";
@ -105,10 +107,11 @@ alberta_in,16,28,4 script Old Pharmacist 61,{
close; close;
} }
next; next;
set Zeny,Zeny-(.@amount*getarg(1)); set Zeny,Zeny-(.@amount*5);
delitem getarg(0),.@amount*2; delitem 507,.@amount;
delitem 508,.@amount;
delitem 713,.@amount; delitem 713,.@amount;
getitem getarg(2),.@amount; getitem 502,.@amount;
mes "[Old Pharmacist]"; mes "[Old Pharmacist]";
mes "Here you go. It's all done so you can take it. But remember! Abusing medicine is not good."; mes "Here you go. It's all done so you can take it. But remember! Abusing medicine is not good.";
close; close;