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!

UO Sorcerer's Suit

xXxWarfacexXx

Wanderer
Not sure if this is where to post this at but has or does anyone yet have this script for this suit. Cant find it anywhere. Would be very nice to have in our OSI like server. Thanks! Maybe we can help with the scripting ;)


What it looks like can be found HERE
 

Safera

Page
There's a really cool script somewhere in these forums to help the non-programming-inclined, such as myself, to create armor scripts by plugging in some basic info. I've also seen some pre-made scripts for armor sets which increase with value depending upon the number of pieces the player is wearing. You could use those as a guide to tweak the finished product to meet your expectations.
 

rtaylor1987

Sorceror
Here you go.

Make sure you add Sorcerers to the end of your SetItem list.

Example:
Code:
        public enum SetItem
    {
        None,
        Acolyte,
        Assassin,
        Darkwood,
        Grizzle,
        Hunter,
        Juggernaut,
        Mage,
        Marksman,
        Myrmidon,
        Necromancer,
        Sorcerer
    }
 

Attachments

  • Sorcerer's Armor Set.rar
    4.8 KB · Views: 15
Here you go.

Make sure you add Sorcerers to the end of your SetItem list.

Example:
Code:
        public enum SetItem
    {
        None,
        Acolyte,
        Assassin,
        Darkwood,
        Grizzle,
        Hunter,
        Juggernaut,
        Mage,
        Marksman,
        Myrmidon,
        Necromancer,
        Sorcerer
    }


OK tryed these and if I can find the place to address the Items It would be nice.
Can't find a SetItem list. anyplace..
 
Top