summaryrefslogtreecommitdiff
path: root/npc/guilds
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-23 03:35:32 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-23 03:35:32 -0300
commitcbb546abba8a869f45ac04cc44b9e36d9adead7d (patch)
treee3c00147ebbe41c8f559df28d4bc08e7d925cf6f /npc/guilds
parentb17e38270747fd0e85016282c6366e0c6d6a830f (diff)
downloadserverdata-cbb546abba8a869f45ac04cc44b9e36d9adead7d.tar.gz
serverdata-cbb546abba8a869f45ac04cc44b9e36d9adead7d.tar.bz2
serverdata-cbb546abba8a869f45ac04cc44b9e36d9adead7d.tar.xz
serverdata-cbb546abba8a869f45ac04cc44b9e36d9adead7d.zip
Introduce the new recipes and missing recipes to the General Public Alchemy.
Diffstat (limited to 'npc/guilds')
-rw-r--r--npc/guilds/logs.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/guilds/logs.txt b/npc/guilds/logs.txt
index 8cde177e9..4c225f0fc 100644
--- a/npc/guilds/logs.txt
+++ b/npc/guilds/logs.txt
@@ -78,11 +78,11 @@ guilds,47,39,0 script Guild Logs NPC_NO_SPRITE,{
next;
// Limit Boosts
- .@s+=showRecipe(CraftSacredManaPot, SacredManaPotion,
+ .@s+=showRecipe(CraftSacredManaPotion, SacredManaPotion,
1, GoldenApple, 10, CelestiaTea);
- .@s+=showRecipe(CraftSacredLifePot, SacredLifePotion,
+ .@s+=showRecipe(CraftSacredLifePotion, SacredLifePotion,
1, GoldenApple, 1, ElixirOfLife);
- .@s+=showRecipe(CraftSacredImmortal, SacredImmortalityPotion,
+ .@s+=showRecipe(CraftSacredImmortalityPotion, SacredImmortalityPotion,
1, SacredLifePotion, 1, SacredManaPotion);
if (.@s == 0)
@@ -265,12 +265,12 @@ guilds,47,39,0 script Guild Logs NPC_NO_SPRITE,{
calcRecipe(CraftAgiPotionC, 8, 35000, l("Agi++ Potion"));
// Limit Boosts
- if (!showRecipe(CraftSacredManaPot, false))
- calcRecipe(CraftSacredManaPot, 7, 100000, l("Sacred Mana Potion"));
- if (!showRecipe(CraftSacredLifePot, false))
- calcRecipe(CraftSacredLifePot, 7, 100000, l("Sacred Life Potion"));
- if (!showRecipe(CraftSacredImmortal, false))
- calcRecipe(CraftSacredImmortal, 10, 500000, l("Sacred Immortality Potion"));
+ if (!showRecipe(CraftSacredManaPotion, false))
+ calcRecipe(CraftSacredManaPotion, 7, 100000, l("Sacred Mana Potion"));
+ if (!showRecipe(CraftSacredLifePotion, false))
+ calcRecipe(CraftSacredLifePotion, 7, 100000, l("Sacred Life Potion"));
+ if (!showRecipe(CraftSacredImmortalityPotion, false))
+ calcRecipe(CraftSacredImmortalityPotion, 10, 500000, l("Sacred Immortality Potion"));
} while (!hudRecipe());
break;