diff options
Diffstat (limited to 'npc/guilds/logs.txt')
-rw-r--r-- | npc/guilds/logs.txt | 18 |
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; |