Results 1 to 3 of 3

Thread: calculation of craft rating

  1. #1

    Default calculation of craft rating

    there is something strange going on with the caculation of craft rating yesterday I finisched my carpenter and I was 209 now I changed over to weaver(l55) and my craft rating is 198.

    I have the feel there is something wrong in the calculation or I'm missing something. feels like the present level is put in twice.

  2. #2

    Default Re: calculation of craft rating

    Quote Originally Posted by gkoster View Post
    there is something strange going on with the caculation of craft rating yesterday I finisched my carpenter and I was 209 now I changed over to weaver(l55) and my craft rating is 198.

    I have the feel there is something wrong in the calculation or I'm missing something. feels like the present level is put in twice.
    Present school is indeed twice as important as your sub-classes/schools in rating calculation, both for adventure and crafting.
    Oooooh, what does this button do?

  3. #3

    Default Re: calculation of craft rating

    I'm not quite sure how to express this, except in Javascript, which is how the rating calculator at http://istariareference.com/arc.asp shows it. The game calculates it the same way but a different programming language. But this is the javascript version.

    Code:
    		sum = Math.pow(theform.school1.value,2);
    		sum += Math.pow(theform.school2.value/2,2);
    		sum += Math.pow(theform.school3.value/2,2);
    		sum += Math.pow(theform.school4.value/2,2);
    		sum += Math.pow(theform.school5.value/2,2);
    		sum += Math.pow(theform.school6.value/2,2);
    		sum += Math.pow(theform.school7.value/2,2);
    		sum += Math.pow(theform.school8.value/2,2);
    		sum += Math.pow(theform.school9.value/2,2);
    		sum += Math.pow(theform.school10.value/2,2);
    		sum += Math.pow(theform.school11.value/2,2);
    		sum += Math.pow(theform.school12.value/2,2);
    		sum += Math.pow(theform.school13.value/2,2);
    		sum += Math.pow(theform.school14.value/2,2);
    		sum += Math.pow(theform.school15.value/2,2);
    		sum += Math.pow(theform.school16.value/2,2);
    		sum += Math.pow(theform.school17.value/2,2);
    		sum += Math.pow(theform.school18.value/2,2);
    		sum += Math.pow(theform.school19.value/2,2);
    		sum += Math.pow(theform.school20.value/2,2);
    		sum += Math.pow(theform.school21.value/2,2);
    		sum += Math.pow(theform.school22.value/2,2);
    		sum += Math.pow(theform.school23.value/2,2);
    		sum += Math.pow(theform.school24.value/2,2);
    		sum += Math.pow(theform.school25.value/2,2);
    		sum += Math.pow(theform.school26.value/2,2);
    		sum += Math.pow(theform.school27.value/2,2);
    		sum += Math.pow(theform.school28.value/2,2);
    		theform.rating.value = Math.floor(Math.sqrt(sum));
    The first line (school1) is your Current School. All the remaining lines are school you have, but not currently joined in.

    So Current School is the level value with a power of 2. So if your current school is level 20, a power of 2 means multiply itself 2 times (20 * 20 = 400). So value,2 means power of 2.

    All remaining schools (that are not your currently joined school) will be divided by 2 first, then power of 2.
    So if School 2 is 20, divide by 2 = 10. 10 with a power of 2 (10 * 10 = 100). value/2,2 means divide the value by 2 first, then do power of 2.

    After all of your schools are added up, then it takes the square root of the total sum.

    Whatever your current school joined is, plays a big part on the calculation (because current school is not divided by 2 first, like the others).
    Last edited by Cegaiel; May 18th, 2017 at 11:52 PM.
    Death points are temporary, Glory is forever!
    Need game info? Try Istaria Reference or Istaria Lexica Wiki

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Craft: [Craft] Expert/Master techs
    By Tilithia in forum Suggestions
    Replies: 3
    Last Post: July 1st, 2015, 11:47 AM
  2. Base Skill Calculation
    By StalePopcorn in forum General
    Replies: 4
    Last Post: June 10th, 2011, 11:04 AM
  3. Damage Dealt Calculation (an interpretation)
    By Chasing in forum Help (Question and Answer)
    Replies: 1
    Last Post: January 2nd, 2011, 06:09 AM
  4. Replies: 3
    Last Post: December 8th, 2009, 02:06 AM
  5. Rating?
    By Rhyssa in forum General
    Replies: 6
    Last Post: May 19th, 2006, 03:35 PM

Posting Permissions

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