diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-27 19:39:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-27 19:39:27 -0300 |
commit | b5e4c21b79b1bd81661e63baa6c07e9aafd54d97 (patch) | |
tree | b35151ee6654769170fe2dd723fa677e83acb5c2 /npc/craft/recipes.txt | |
parent | b7ee2ae3fdb4b01e580c753a6bbef2ecf105fea4 (diff) | |
download | serverdata-b5e4c21b79b1bd81661e63baa6c07e9aafd54d97.tar.gz serverdata-b5e4c21b79b1bd81661e63baa6c07e9aafd54d97.tar.bz2 serverdata-b5e4c21b79b1bd81661e63baa6c07e9aafd54d97.tar.xz serverdata-b5e4c21b79b1bd81661e63baa6c07e9aafd54d97.zip |
If you re-learn an already know recipe, you'll get from 900 to 32000 mob points.
of course, given blue print settings, it should not get above 24k...
Diffstat (limited to 'npc/craft/recipes.txt')
-rw-r--r-- | npc/craft/recipes.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index 163faf545..c8a3362ca 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -384,6 +384,9 @@ function script MakeBlueprint { if (RECIPES_ALCHEMY[.@rcp]) { dispbottom l("It was a recipe you already knew..."); 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); } else { dispbottom l("Learned a new recipe!"); RECIPES_ALCHEMY[.@rcp]=true; @@ -439,6 +442,9 @@ function script MakeBlueprint { if (RECIPES_EQUIPMENT[.@rcp]) { dispbottom l("It was a recipe you already knew..."); 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); } else { dispbottom l("Learned a new recipe!"); RECIPES_EQUIPMENT[.@rcp]=true; |