summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/craft/smith.txt9
-rw-r--r--npc/functions/clientversion.txt2
2 files changed, 8 insertions, 3 deletions
diff --git a/npc/craft/smith.txt b/npc/craft/smith.txt
index fa866f7eb..9d0739926 100644
--- a/npc/craft/smith.txt
+++ b/npc/craft/smith.txt
@@ -45,9 +45,12 @@ function script SmithSystem {
// Player craft item
usecraft .@craft;
.@it=getcraftcode(.@entry);
- // Mark the crafting in your score book (except dagger)
- if (.@it != Dagger)
- CRAFTING_SCORE+=1;
+
+ // Mark the crafting in your score variable
+ CRAFTING_SCORE_COMPLETE+=getiteminfo(.@it, ITEMINFO_ELV);
+ // Update your score book
+ CRAFTING_SCORE=(CRAFTING_SCORE_COMPLETE/40);
+
if (.scope == CRAFT_GUILD)
getitembound(.@it, 1, 2); // Create a guild-bound item
else
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt
index b628404c0..94b32d54d 100644
--- a/npc/functions/clientversion.txt
+++ b/npc/functions/clientversion.txt
@@ -572,6 +572,8 @@ function script clientupdater {
skill(MC_OVERCHARGE,1,0);
dispbottom l("You have learnt \"Barter\" in Thief Skills.");
}
+ // Update Crafting Score
+ CRAFTING_SCORE_COMPLETE=CRAFTING_SCORE*39;
}