I am wanting to make faction dungeons that only faction members can access and Items only faction members can wear. Is this possible, and if so whats the easiest way for a coder with a very low understanding of C# to proc-cede?
 
I need help figuring out how to make an armor piece wearable only by a specific faction. I can simply put a teleport-er in the faction halls but I would like to use 1 dungeon and if your TB tb items have a chance to drop off mob but if your are COM, then COM items drop off the mob. Can anyone help with this?
 
Copy code of teleporter and find method: CanTeleport
and add next:
Code:
            else if (Faction.Find(m) == null)
            {
                m.SendMessage("Only faction members can entrer in this dungoen");
                return false;
            }
 
Back