Page 1 of 1

Minimize castle/fort guards number.

Posted: Fri Apr 24, 2009 10:15 am
by detunius
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.

Re: Minimize castle/fort guards number.

Posted: Fri May 01, 2009 12:30 pm
by qwerty13
yeah! this is actually question..how can i do this?

Re: Minimize castle/fort guards number.

Posted: Fri May 01, 2009 2:10 pm
by kotk
Take a look at castle_siege_guards.sql and the castle_siege_guards table.

Re: Minimize castle/fort guards number.

Posted: Fri May 01, 2009 2:26 pm
by Elektra
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!

Re: Minimize castle/fort guards number.

Posted: Fri May 01, 2009 4:27 pm
by qwerty13
tnx alot:)