My shard is malas pvp.
we want to disable pvp on Doom only.

i done it editing Notoriety
and adding this:
if ( from.Region != null && from.Region.Name == "Doom" )
if (( from is PlayerMobile ) && ( target is PlayerMobile ))
return false;

if ( from.Region != null && from.Region.Name == "Doom Gauntlet" )
if (( from is PlayerMobile ) && ( target is PlayerMobile ))
return false;

now the problem is that players can attack pets, and pets can attack players.

There is a better way to have doom disabled pvp? or put trammel rules only for doom?
 
I'm not near my scripts, but I think you could set something in the regions.xml. I can look later if you don't solve it by then.
 
Back