Deprecated: The behavior of unparenthesized expressions containing both '.' and '+'/'-' will change in PHP 8: '+'/'-' will take a higher precedence in /home/iano/public_html/tpforums-vb5/forum/includes/class_core.php on line 5842

PHP Warning: Use of undefined constant MYSQL_NUM - assumed 'MYSQL_NUM' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_ASSOC - assumed 'MYSQL_ASSOC' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_BOTH - assumed 'MYSQL_BOTH' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 588

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 612

PHP Warning: Use of undefined constant misc - assumed 'misc' (this will throw an Error in a future version of PHP) in ..../global.php(29) : eval()'d code(6) : eval()'d code on line 1

PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in ..../global.php(29) : eval()'d code(6) : eval()'d code on line 1

PHP Warning: Use of undefined constant misc - assumed 'misc' (this will throw an Error in a future version of PHP) in ..../includes/class_bootstrap.php(1422) : eval()'d code(4) : eval()'d code on line 1

PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in ..../includes/class_bootstrap.php(1422) : eval()'d code(4) : eval()'d code on line 1

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6
Tibia Formulas
Results 1 to 3 of 3

Thread: Tibia Formulas

  1. #1

    Tibia Formulas

    Hi, it's not really a bot development, so move my thread if necessary.

    I was doing some tests with some tibia calculators and i was curious about the formulas used, i found this link from tibia wikia: http://tibia.wikia.com/wiki/Formula

    Then I was testing, but when I try to calc the skill time for a paladin for example, it doesnt work, because the value is too high for a int value(cuz I convert it from the double that .pow returns), so im not sure if im doing that correctly, I also found this formula, but it doesnt work for me either:

    For knight, vocation = 1.1
    For paladins, vocation = 1.2
    For druid, vocation = 1.8
    For sorc vocation = 2

    PHP Code:
    for (int i startSkillendSkilli++) {
         
    time_ += (120 * (Math.pow(vocation,(9))));

    And Tibia wikia's is:

    PHP Code:
    time_ += (50* (Math.pow(vocation,(10)))); 
    Anyone had problems with those kinda of calculations for any tibia tool ?

  2. #2
    Senior Member
    Join Date
    Mar 2009
    Location
    Brazil
    Posts
    266
    Just checking: do you know that this formula returns how many "blood hits" are necessary to advance?


    It doesn't say the time needed to advance.

  3. #3
    Yes, the Tibia wikia return the blood hits, but checking in some websites it returns the time in seconds, but still different, I "fixed" it a little bit, but not sure which formula is correct.

Posting Permissions

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