Blueprint containing equipment recipes.
No Monsters drop this item.
You'd like to see behind the curtain? Then you are here at the right place - lots of data only contributors would normally see.
Open raw JSONID | 7462 |
aegisName ❔ | EquipmentBlueprintC |
Script to execute when the item is used/equipped.
if (!CRAFTQUEST) {
getitem EquipmentBlueprintC, 1;
dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook));
end;
}
.@seed=rand(0, 10000)-BaseLevel-readparam(bLuk);
if (.@seed < 100)
callfunc("MakeBlueprint", CRAFT_EQUIPMENT, CRAFT_EXPERT);
else if (.@seed < 2000)
callfunc("MakeBlueprint", CRAFT_EQUIPMENT, CRAFT_ADVANCED | CRAFT_EXPERT);
else if (.@seed < 3000)
callfunc("MakeBlueprint", CRAFT_EQUIPMENT, CRAFT_INTERMEDIARY | CRAFT_ADVANCED);
else
callfunc("MakeBlueprint", CRAFT_EQUIPMENT, CRAFT_ADVANCED);