Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 47

Thread: Calculator

  1. #21

    Default

    Do we know the formula explicitly or is it just guess work?

  2. #22
    Crimson Shadow Guest

    Default

    Land grab formula from the manual:

    (Thereland/Yourland)*(Thereland*.13) Then 30% less for every hit in the last 36 hours

  3. #23
    Join Date
    Mar 2008
    Location
    London
    Posts
    3,260

    Default

    some of the grabs im getting are waaaaay off from what the calculator says.

    Quote Originally Posted by Cemetary View Post
    Pretty sure if Anton wanted to he could have a 15+ person nation every set of decently experienced players.. hell id probably join him every set if he asked jsut because i know that their wont be a bunch of tards in the nation with me

  4. #24

    Default

    I wonder why that is...

  5. #25
    Join Date
    Mar 2008
    Location
    Ottawa, Ontario, Canada
    Posts
    101

    Default

    Pretty sure it implements the manual's version of the land grab formula; I'll confirm this weekend at the latest, been busy with work
    The Legend of Glorious Province
    Download the Nation Wars Calculator, last updated 2008-07-02 18:14 EST. See forum post for more details.

  6. #26
    Join Date
    Jun 2008
    Location
    Munich, Bavaria, Germany / Leicester, England, UK
    Posts
    749

    Default

    Quote Originally Posted by The Legend View Post
    Pretty sure it implements the manual's version of the land grab formula; I'll confirm this weekend at the latest, been busy with work
    no, either the formula has changed, or GB is calculated incorrectly, i keep gettign mroe land than what the calc says (yes, i did try it for a couple of days )

    Extra Bavariam nulla vita, et si vita, non est ita.
    (Outside Bavaria there's no life, and if there is, it ain't worth living.)

    Munich Loves You
    Best city in the world


    "When someone from Uri, Switzerland, moves to Austria, the average IQ of both countries rises." - Prof. Wigger, on interpreting mean values.

    Welcome to Germany - Land of Ideas

  7. #27
    Join Date
    Mar 2008
    Location
    Ottawa, Ontario, Canada
    Posts
    101

    Default

    Ya, fairly sure the manual is wrong
    The Legend of Glorious Province
    Download the Nation Wars Calculator, last updated 2008-07-02 18:14 EST. See forum post for more details.

  8. #28
    Join Date
    Mar 2008
    Location
    London
    Posts
    3,260

    Default

    i keep getting less land than the calculator says...

    Quote Originally Posted by Cemetary View Post
    Pretty sure if Anton wanted to he could have a 15+ person nation every set of decently experienced players.. hell id probably join him every set if he asked jsut because i know that their wont be a bunch of tards in the nation with me

  9. #29
    Crimson Shadow Guest

    Default

    Yeah I always get alot less than what it says too.

    Ive been using the old calc and it works just fine, +/- 5 land at the most

  10. #30

    Default

    Here is the forumla implemented as it is in the manual:
    http://funkja.public.iastate.edu/calculator.php

    Code:
    <?php
    if(isset($_POST['submit']))
    {
            $you = $_POST['you'] * 1.0;
            $them = $_POST['them'] * 1.0;
            $hits = $_POST['hits'] * 1.0;
    
            echo "<strong>Land grabbed:</strong> " . ($them/$you)*($them * .13) * pow(0.7,$hits) . "<br><br>";
    }
    ?>
    <form action="calculator.php" method=post>
    Your land: <input type=text size=10 name="you" value="<?php if(isset($you)) echo $you; ?>"><br>
    Their land: <input type=text size=10 name="them" value="<?php if(isset($them)) echo $them; ?>"><br>
    Their Hits: <input type=text size=10 name="hits" value="<?php if(isset($hits)) echo $hits; ?>"><br>
    <input type=submit value="Calculate" name=submit>
    </form>
    I'm pretty sure this cannot be the formula that is implemented in the game - because it is possible to grab more land then they have. Which would be interesting eh?

Similar Threads

  1. Guides / Calculator
    By Guy77 in forum Redemption Server Discussion
    Replies: 29
    Last Post: 03-25-2008, 17:07

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •