From e3afdc2af4c5e50c79237ee092e25f39b7428e47 Mon Sep 17 00:00:00 2001 From: Michieru Date: Thu, 24 Oct 2013 12:10:43 +0200 Subject: Update to last rAthena npc. Fix some typos change sc_bleeding to -> sc_blooding Updated RE EXP for quests_brasilis.txt --- npc/quests/cooking_quest.txt | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) (limited to 'npc/quests/cooking_quest.txt') diff --git a/npc/quests/cooking_quest.txt b/npc/quests/cooking_quest.txt index 4a5cfcd67..1b94ab8ea 100644 --- a/npc/quests/cooking_quest.txt +++ b/npc/quests/cooking_quest.txt @@ -4,10 +4,8 @@ //= Reddozen; L0ne_W0lf //===== Current Version: ===================================== //= 1.8a -//===== Compatible With: ===================================== -//= Hercules //===== Description: ========================================= -//= [Aegis Conversion] +//= [Official Conversion] //= Official Cooking Quest (10.3) //===== Additional Comments: ================================= //= 1.1 Fixed wrong item ID, added missing ";, optimized [Lupus] @@ -15,13 +13,13 @@ //= 1.2 Fixed exploit, some typos [Lupus] //= 1.3 Fixed wrong label [Lupus] 1.3a updated to Reddozen's changes //= 1.3b Fixed wrong id, fixed Puch quest, added more Pouch Quest -//= dialogues [Lupus] +//= dialogues [Lupus] //= 1.4 Fixed spelling, added some dialoguesm optimized -//= fixed bugs. Tested, fully working [Lupus] +//= fixed bugs. Tested, fully working [Lupus] //= 1.5 More fixes [Lupus] //= 1.6 Quest is now up to iRO 10.3 standards. [L0ne_W0lf] //= - Not sure what the EnableItemMove is for, as there is no -//= command to disable being able to move items. +//= command to disable being able to move items. //= 1.6a Corrected a bad cutin, a Typo error ";;" and a bad delitem (bugreport:911) [Samuray22] //= 1.6b Corrected a "donpcevent" missing a ":". (bugreport:962) [Samuray22] //= 1.7 Replaced effect numerics with constants. [L0ne_W0lf] @@ -30,8 +28,7 @@ //============================================================ prt_castle,43,30,3 script Charles Orleans#cook 878,{ - set .@now_weight,MaxWeight-Weight; - if (.@now_weight < 2000) { + if (MaxWeight - Weight < 2000) { mes "[Charles Orleans]"; mes "Just one second."; mes "You're carrying too"; @@ -44,7 +41,7 @@ prt_castle,43,30,3 script Charles Orleans#cook 878,{ end; } if (BaseJob == Job_Novice) { - if (sex) { + if (Sex) { cutin "orleans_5",0; mes "[Charles Orleans]"; mes "Excuse me, monsieur?"; @@ -81,7 +78,7 @@ prt_castle,43,30,3 script Charles Orleans#cook 878,{ goto L_End; } else if (getequipid(1) != 5026) { - if (sex) { + if (Sex) { cutin "orleans_5",0; emotion e_an; mes "[Charles Orleans]"; @@ -1482,8 +1479,7 @@ L_End: } prt_castle,45,35,5 script Madeleine Chu#cook 886,{ - set .@now_weight,MaxWeight-Weight; - if (.@now_weight < 2000) { + if (MaxWeight - Weight < 2000) { mes "[Madeleine Chu]"; mes "I'm sorry, but right now"; mes "you're carrying too many"; @@ -2095,7 +2091,7 @@ S_SellSets: } set .@total_cost,.@sell * .@item_cost; set .@total_weight,.@sell * .@item_weight; - if (zeny < .@total_cost) { + if (Zeny < .@total_cost) { mes "[Madeleine Chu]"; mes "Oh, I'm sorry, but you"; mes "can't afford this many"; @@ -2112,7 +2108,7 @@ S_SellSets: mes getitemname(getarg(0))+"..."; close; } - set zeny,zeny-.@total_cost; + set Zeny, Zeny-.@total_cost; getitem getarg(0),.@sell; mes "[Madeleine Chu]"; mes "Here you are~"; @@ -2191,7 +2187,7 @@ payon,209,127,3 script Servant 88,{ next; switch(select("Sure, I'll buy one!:No, thanks.:Actually, Madeleine sent me...")) { case 1: - if (zeny < 200) { + if (Zeny < 200) { mes "[Chulsoo]"; mes "Oh, I'm sorry, but"; mes "you don't have enough"; @@ -2200,7 +2196,7 @@ payon,209,127,3 script Servant 88,{ mes "raise 200 zeny, right?"; close; } - set zeny,zeny-200; + set Zeny, Zeny-200; getitem 555,1; //Rice_Cake mes "[Chulsoo]"; mes "Thank you very"; @@ -2362,7 +2358,7 @@ payon,209,127,3 script Servant 88,{ mes "it's oh-so-delicious~"; next; if (select("Sure, I'll buy one!:No, thanks.") == 1) { - if (zeny < 200) { + if (Zeny < 200) { mes "[Chulsoo]"; mes "Oh, I'm sorry, but"; mes "you don't have enough"; @@ -2371,7 +2367,7 @@ payon,209,127,3 script Servant 88,{ mes "raise 200 zeny, right?"; close; } - set zeny,zeny-200; + set Zeny, Zeny-200; getitem 555,1; //Rice_Cake mes "[Chulsoo]"; mes "Thank you very"; -- cgit v1.2.3-70-g09d2