RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Flat Tinker Tools

almuric avanti

Traveler
Back in the day there was a set of tinker tools that were flat (looked good locked down on a table). SO I made a script to recreate these. I also changed Character Creation to add it to a new players pack if they pick tinkering as a skill. These are the lines I added close to the bottom of the CharacterCreation.cs:

case SkillName.Tailoring:
{
PackItem( new BoltOfCloth() );
PackItem( new SewingKit() );
break;
}
case SkillName.Tinkering:
{
PackItem( new TinkerToolsFlat() );
PackItem( new IronIngot( 10 ) );
break;
}
case SkillName.Tracking:
 

Attachments

  • TinkerToolsFlat.cs
    819 bytes · Views: 12
Top