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!

Resource icon

[2.x] Swap ItemID based upon gender 1.0

No permission to download

Nockar

Sorceror
Nockar submitted a new resource:

Swap ItemID based upon gender (version 1.0) - Display a male & female version of a gump in a script when equipping and unequipping it.

This is an example of how to take two ItemID’s with different gumps and make a male/female item that will swap based upon gender.

This script example is great if you have wearable artwork that is not setup to swap in the mul files.

Code:
using System;
using Server.Items;
using Server.Mobiles;
 
namespace Server.Items
{
    [Flipable]
    public class ClothingSwap_MF : BaseOuterTorso
    {
 
            public override int InitMinHits { get { return 10; } }
            public override int...

Read more about this resource...
 
Top