ServUO Version
Publish 57
Ultima Expansion
Endless Journey
i found the line for the price change if the shards is set to Siege in the following:


if(Siege.SiegeShard)
{
m_Price *= 3;
}


is there a way to make it the same price or Highter even if the shards is not set to siege ?
 
just remove the condition check for shard type
Code:
m_Price *= 3; // This mean, m_Price = m_Price * 3 : So just inc the 3 to 4, 5, 6 ... to multiple the Price!
 
Back