TWLan Forum

Full Version: Help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Why is the agreement (Zummsting in german) allways in 100%???

When I attack a village with nobles the agreement is allways on 100%
For ex

First report:
Agreement: 100% to 75%

Second Report:
Agreement: 100% to 78%

Third Report:
Agreement: 100% to 80%


according to my configs, the agreement was supposted to grow 0.5% per hour


Sorry My English
I Don't understand German, that's why I've put my question in the English zone...
Can you please tell how to solve the case in English?
you can use the google tanslator Wink
(02.09.2010, 23:35)Dsaddicted Wrote: [ -> ]you can use the google tanslator Wink

Yes, but the translation doesn't sound right... :/
its because the translator only puts the enlglish words for the german, but it didnĀ“t makt the sentence right Wink
This is the formula to get the right $config['agreement_per_hour']:
PHP Code:
$config['agreement_per_hour'] = ($agreement_per_second 3600) / $config['speed']; 

So if your speed is 50000, and you want the agreement to rise by 0.5% per hour, this will be your calculation:
Code:
( 0.5 * 3600 ) / 50000 = 0.036