Dan(Tasanar)

Moderator
Dan(Tasanar) submitted a new resource:

Bulk Order Point Deed - A deed that rewards banked bulk order points

View attachment 21746
Deed that adds a predetermined number of points to a predetermined crafts bulk order banked point balance.

Set scroll options in the code:
C#:
private const int _Points = 100; // Set your points here.
        private const BODType _CraftSkill = BODType.Smith; // Set skill type here. Example: BODType.Smith

Type names:
  • Smith
  • Tailor
  • Alchemy
  • Inscription
  • Tinkering
  • Fletching
  • Carpentry
  • Cooking

Read more about this resource...
 
Hey Dan, this item has been quite a hit with players, Is it possible to add a skill requirement to these. Like, to use it you must have 100 Blacksmithy?
 
if (from.Skills.Blacksmithy.Value < 100.0)
{
from.SendMessage("");
return;
}

Most likely something like this, I didnt get the main files tho but if it didnt help I can download it to help further
 
Back