This is not a Support area! Discuss about the Server here. Non-Server related discussion goes in
Off-Topic Discussion.
detunius
Posts: 32 Joined: Thu Dec 04, 2008 7:34 pm
Post
by detunius » Fri Apr 24, 2009 10:15 am
how to minimize castle guards or fort guards number
couse a small server with 10-20 people is to dificult to defend all guards
thanks.
qwerty13
Posts: 640 Joined: Mon Feb 02, 2009 9:57 am
Location: Europe
Contact:
Post
by qwerty13 » Fri May 01, 2009 12:30 pm
yeah! this is actually question..how can i do this?
kotk
Posts: 99 Joined: Wed Jan 04, 2006 12:51 am
Post
by kotk » Fri May 01, 2009 2:10 pm
Take a look at castle_siege_guards.sql and the castle_siege_guards table.
Elektra
Posts: 205 Joined: Thu Sep 01, 2005 2:32 am
Post
by Elektra » Fri May 01, 2009 2:26 pm
using this will reduce the total seige spawn to 33% of the current values
Code: Select all
DELETE from castle_siege_guards where id LIKE '%2';DELETE from castle_siege_guards where id LIKE '%3';DELETE from castle_siege_guards where id LIKE '%5';DELETE from castle_siege_guards where id LIKE '%6';DELETE from castle_siege_guards where id LIKE '%8';DELETE from castle_siege_guards where id LIKE '%9';
enjoy!
qwerty13
Posts: 640 Joined: Mon Feb 02, 2009 9:57 am
Location: Europe
Contact:
Post
by qwerty13 » Fri May 01, 2009 4:27 pm
tnx alot:)