Jump to content

Recommended Posts

  • 40 years later...
Posted

Hi! I have searched a lot and i cant find anything about this problem.

The problem is it should start form 0 and not 1500, i have tryied to change it manually but i got lost and have a lot of those formules and calculations...

So if you have the solution, can share? Have a patch? Or can just tell me what do to make it right i will thank you for the rest of my life!

I have changed but not tested yet:

    if (sWorld.getConfig(CONFIG_ARENA_SEASON_ID) >= 6)
   {
       if (m_stats.rating < 1000)
           newmember.personal_rating = 0;
       else
           newmember.personal_rating = 1000;
   }
   else
   {
       newmember.personal_rating = 1500;
   }

TO

    if (sWorld.getConfig(CONFIG_ARENA_SEASON_ID) >= 6)
   {
       if (m_stats.rating < 1000)
           newmember.personal_rating = 0;
       else
           newmember.personal_rating = 0;
   }
   else
   {
       newmember.personal_rating = 0;
   }

AND

   if (sWorld.getConfig(CONFIG_ARENA_SEASON_ID) >= 6)
       m_stats.rating    = 0;
   else
       m_stats.rating    = 1500;
   m_stats.wins_week     = 0;
   m_stats.wins_season   = 0;

TO

 if (sWorld.getConfig(CONFIG_ARENA_SEASON_ID) >= 6)
       m_stats.rating    = 0;
   else
       m_stats.rating    = 0;
   m_stats.wins_week     = 0;
   m_stats.wins_season   = 0;

Doing this will be correct or will be a bad thing to do ? x)

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use