From 087208123b39766ef3a92d3e831de2fa8a523472 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 7 Aug 2019 22:40:36 -0300 Subject: When you use a repeated Blueprint, report how many Monster Points you've gained. --- npc/craft/recipes.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index c8a3362ca..2f9d7cf3b 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -382,11 +382,12 @@ function script MakeBlueprint { // Now you'll learn some recipe! .@rcp=any_of(.@recipes); if (RECIPES_ALCHEMY[.@rcp]) { - dispbottom l("It was a recipe you already knew..."); + .@mpot=rand2(900, 1000*.@rarity); + dispbottom l("It was a recipe you already knew... (+ @@ Mobpt)", .@mpot); getexp (BaseLevel+JobLevel)*rand2(1,.@rarity), JobLevel+rand2(1,.@rarity); // Give you some Monster Points to use with Intense Beard // You do NOT need to be registered with Aidan for this. - Mobpt+=rand2(900, 1000*.@rarity); + Mobpt+=.@mpot; } else { dispbottom l("Learned a new recipe!"); RECIPES_ALCHEMY[.@rcp]=true; @@ -440,11 +441,12 @@ function script MakeBlueprint { // Now you'll learn some recipe! .@rcp=any_of(.@recipes); if (RECIPES_EQUIPMENT[.@rcp]) { - dispbottom l("It was a recipe you already knew..."); + .@mpot=rand2(900, 1000*.@rarity); + dispbottom l("It was a recipe you already knew... (+ @@ Mobpt)", .@mpot); getexp (BaseLevel+JobLevel)*rand2(1,.@rarity), JobLevel+rand2(1,.@rarity); // Give you some Monster Points to use with Intense Beard // You do NOT need to be registered with Aidan for this. - Mobpt+=rand2(900, 1000*.@rarity); + Mobpt+=.@mpot; } else { dispbottom l("Learned a new recipe!"); RECIPES_EQUIPMENT[.@rcp]=true; -- cgit v1.2.3-60-g2f50