Posts: 6
Threads: 1
Joined: Dec 2009
Reputation:
0
Hey,
[please awnser in portuguese/english ]
I am having a problem...maybe a bug...my nobleman's aren't simply able to reduce the loyalty to an enemy, barabarian, or even friendly village, is this a bug, a wrong config...etc.?
If someone knows how to get this situation fixed,
please reply
Posts: 4'673
Threads: 6
Joined: May 2008
Reputation:
171
(01.01.2010, 21:58)omanel Wrote: Hey,
[please awnser in portuguese/english ]
I am having a problem...maybe a bug...my nobleman's aren't simply able to reduce the loyalty to an enemy, barabarian, or even friendly village, is this a bug, a wrong config...etc.?
If someone knows how to get this situation fixed,
please reply
please use the search and read the faq
http://dslan.gfx-dose.de/thread-1264.html
http://dslan.gfx-dose.de/thread-1219-pos...l#pid14838
Posts: 6
Threads: 1
Joined: Dec 2009
Reputation:
0
Ty for the link's, but i still don't get it... im playing with a 20000 speed, what's the correct "agreement_per_hour" for this speed, i'd like it about 0.5 per second...what's the php code i should type?
Thanx,
Manuel
Posts: 4'673
Threads: 6
Joined: May 2008
Reputation:
171
(02.01.2010, 00:40)omanel Wrote: Ty for the link's, but i still don't get it... im playing with a 20000 speed, what's the correct "agreement_per_hour" for this speed, i'd like it about 0.5 per second...what's the php code i should type?
Thanx,
Manuel
You can calculate this yourself
http://dslan.gfx-dose.de/thread-1219-pos...l#pid14838
Posts: 6
Threads: 1
Joined: Dec 2009
Reputation:
0
I made them my self... Code: (1 * 3600) / 20000 = 0,18
, edited the config, but i am still not able to conquer...
Posts: 4'673
Threads: 6
Joined: May 2008
Reputation:
171
(02.01.2010, 01:20)omanel Wrote: I made them my self...Code: (1 * 3600) / 20000 = 0,18
, edited the config, but i am still not able to conquer...
please use the search! you must make a hard reset
Posts: 6
Threads: 1
Joined: Dec 2009
Reputation:
0
PHP Code: <?php
// Database config: $config['db_host'] = 'localhost'; $config['db_user'] = 'root'; $config['db_pw'] = ''; $config['db_name'] = 'lan';
// Password for Administration $config['master_pw'] = '...';
// Speed $config['speed'] = 20000;
// ADDED /*$steig = "4"; // Alle 5 Sekunden $start = 1183404063; // Time to start (in seconds since 1970) $end = 3000; // Bei wie viel Speed aufh ren zu steigen? $more = round((time()-$start)/$steig); $config['speed'] += $more; if ($config['speed']>$end) { $config['speed'] = $end; }*/ ////////
// Which MAP Design? // 0 => Old // 1 => New $config['map_design'] = 1;
// Nach wie vielen D rfern soll immer ein Fl chtlingslager erstellt werden? // -- this is something about abandoned villages and their creation // -- -1 here will mean no barbarian villages are made $config['count_create_left'] = 6;
// This is the minimum number of villages per player. Generally this is 1. // If a village is nobled that takes you below this number, // you get a new 26p village on the rim // don't set at 0 // don't set too high $config['min_villages'] = 20;
// This setting is only effecitve if in the administration of a reset. $config['map_incircle'] = 0;
// What name do you want given to barbarians? $config['left_name'] = 'Barbarian';
// Choose direction? // TRUE or FALSE $config['village_choose_direction'] = FALSE;
// Grundverteidiung (translation?) of each village. $config['reason_defense'] = 10;
// What's the factor for scouts? // A 2 value is a 2:1 ratio // If 2 is set, the defender needs 2 scouts per attacking scout // in order to kill all of their scouts. $config['factor_spy'] = 1;
// Attack cancel, how long do you allow cancelling of attacks for? // works in minutes // Real time, not scaled by the server speed $config['cancel_movement'] = 1;
// Speed of the units. The smaller the value the slower the units. // Normal speed is "1". $config['movement_speed'] = 0.5;
// Is morale active? $config['moral_activ'] = false;
// What's the lowest morale? (%) $config['min_moral'] = 35;
// Loyalty rise per hour // The smaller this number, the slower it rises $config [ 'agreement_per_hour' ] = 0.18;
// How long is noob protection? $config['noob_protection'] = 0;
// How fast do merchants travel? $config['dealer_time'] = 5;
// For how long is it possible to cancel trade? $config['cancel_dealers'] = 1;
// What style noble should be used? // 0 => per village, so many nobles can be built as high as the academy // 1 => as many nobles can be built as the sum of all academies $config['ag_style'] = 1;
// Farm style: // 0 => If the farm is level 30, it goes to 22782 // 1 => If the farm is level 30, it goes to 24000 $config['bh_style'] = 1;
// Can tribes be greated? // true => Yes // false => No $config['create_ally'] = true;
// Can tribes leave/player dismissed/players invited? // true => Yes // false => No $config['leave_ally'] = true;
// Can tribes aufgelst? (translation someone) // true => Yes // false => No $config['close_ally'] = true;
// It's possible that there are fixed tribes automatically assigned. // When you first login, each player is assigned a tribe. // Use this feature? // true => Yes // false => No $config['auto_ally'] = false;
// If this is set to "TRUE" nothing will happen. // This is useful for when making screen caps. $config['no_actions'] = false;
// If this is set to true, no more villages can be created. $config['not_more_villages'] = false;
// Is there an IP control/lock? $config['ip_control'] = false;
// What IP does the network connect to? // This option is only relevant if $ Config [ 'ip_control'] is set to "true". $allow_ips[] = "192.168.0.1"; $allow_ips[] = "192.168.0.2"; $allow_ips[] = "192.168.0.3"; $allow_ips[] = "192.168.0.4"; ?>
I made a "hard" reset, what's wrong?
Posts: 4'673
Threads: 6
Joined: May 2008
Reputation:
171
(This post was last modified: 02.01.2010, 11:03 by Black Arrow.)
02.01.2010, 11:02
(02.01.2010, 10:52)omanel Wrote: PHP Code: <?php
// Database config: $config['db_host'] = 'localhost'; $config['db_user'] = 'root'; $config['db_pw'] = ''; $config['db_name'] = 'lan';
// Password for Administration $config['master_pw'] = '...';
// Speed $config['speed'] = 20000;
// ADDED /*$steig = "4"; // Alle 5 Sekunden $start = 1183404063; // Time to start (in seconds since 1970) $end = 3000; // Bei wie viel Speed aufh ren zu steigen? $more = round((time()-$start)/$steig); $config['speed'] += $more; if ($config['speed']>$end) { $config['speed'] = $end; }*/ ////////
// Which MAP Design? // 0 => Old // 1 => New $config['map_design'] = 1;
// Nach wie vielen D rfern soll immer ein Fl chtlingslager erstellt werden? // -- this is something about abandoned villages and their creation // -- -1 here will mean no barbarian villages are made $config['count_create_left'] = 6;
// This is the minimum number of villages per player. Generally this is 1. // If a village is nobled that takes you below this number, // you get a new 26p village on the rim // don't set at 0 // don't set too high $config['min_villages'] = 20;
// This setting is only effecitve if in the administration of a reset. $config['map_incircle'] = 0;
// What name do you want given to barbarians? $config['left_name'] = 'Barbarian';
// Choose direction? // TRUE or FALSE $config['village_choose_direction'] = FALSE;
// Grundverteidiung (translation?) of each village. $config['reason_defense'] = 10;
// What's the factor for scouts? // A 2 value is a 2:1 ratio // If 2 is set, the defender needs 2 scouts per attacking scout // in order to kill all of their scouts. $config['factor_spy'] = 1;
// Attack cancel, how long do you allow cancelling of attacks for? // works in minutes // Real time, not scaled by the server speed $config['cancel_movement'] = 1;
// Speed of the units. The smaller the value the slower the units. // Normal speed is "1". $config['movement_speed'] = 0.5;
// Is morale active? $config['moral_activ'] = false;
// What's the lowest morale? (%) $config['min_moral'] = 35;
// Loyalty rise per hour // The smaller this number, the slower it rises $config [ 'agreement_per_hour' ] = 0.18;
// How long is noob protection? $config['noob_protection'] = 0;
// How fast do merchants travel? $config['dealer_time'] = 5;
// For how long is it possible to cancel trade? $config['cancel_dealers'] = 1;
// What style noble should be used? // 0 => per village, so many nobles can be built as high as the academy // 1 => as many nobles can be built as the sum of all academies $config['ag_style'] = 1;
// Farm style: // 0 => If the farm is level 30, it goes to 22782 // 1 => If the farm is level 30, it goes to 24000 $config['bh_style'] = 1;
// Can tribes be greated? // true => Yes // false => No $config['create_ally'] = true;
// Can tribes leave/player dismissed/players invited? // true => Yes // false => No $config['leave_ally'] = true;
// Can tribes aufgelst? (translation someone) // true => Yes // false => No $config['close_ally'] = true;
// It's possible that there are fixed tribes automatically assigned. // When you first login, each player is assigned a tribe. // Use this feature? // true => Yes // false => No $config['auto_ally'] = false;
// If this is set to "TRUE" nothing will happen. // This is useful for when making screen caps. $config['no_actions'] = false;
// If this is set to true, no more villages can be created. $config['not_more_villages'] = false;
// Is there an IP control/lock? $config['ip_control'] = false;
// What IP does the network connect to? // This option is only relevant if $ Config [ 'ip_control'] is set to "true". $allow_ips[] = "192.168.0.1"; $allow_ips[] = "192.168.0.2"; $allow_ips[] = "192.168.0.3"; $allow_ips[] = "192.168.0.4"; ?>
I made a "hard" reset, what's wrong?
write this PHP Code: // Loyalty rise per hour // The smaller this number, the slower it rises $config['agreement_per_hour'] = 0.18;
not this PHP Code: // Loyalty rise per hour // The smaller this number, the slower it rises $config [ 'agreement_per_hour' ] = 0.18;
Posts: 6
Threads: 1
Joined: Dec 2009
Reputation:
0
Posts: 4'673
Threads: 6
Joined: May 2008
Reputation:
171
(02.01.2010, 15:59)omanel Wrote: Thanx is it working now?
Posts: 6
Threads: 1
Joined: Dec 2009
Reputation:
0
Well, i downlaoded th AIO and there it worked, i dont know if it's will work at the normal one
Posts: 11
Threads: 0
Joined: Nov 2009
Reputation:
0
I left my speed alone and I like it at speed 32000 it is so fast but if there was one day my mate slept round for like a week something i would change it to speed 800 and open a new world so we can play
I wish we could connect it online
even if you could only have 2 people lol
|