diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/recipes.txt | 10 |
1 files 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; |