The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Move speed formula
Author Message
XuN
Sphere Developer
*****

Posts: 852
Likes Given: 102
Likes Received: 156 in 119 posts
Joined: Jul 2013
Reputation: 30



Post: #7
RE: Move speed formula
Here you have the old formula, its a little different from the current one, it was added in 02/04/2014:

Code:
EXC_SET("Speed counting");
    // How fast can they move.
    INT64 iTickNext;
    if ( fRun )
    {
        if ( IsStatFlag( STATF_Pet ))    // pets run a little faster.
        {
            if ( iDex < 75 )
                iDex = 75;
        }
        iTickNext = TICK_PER_SEC/4 + Calc_GetRandVal( (100-iDex)/5 ) * TICK_PER_SEC / 10;
    }
    else
        iTickNext = TICK_PER_SEC + Calc_GetRandVal( (100-iDex)/3 ) * TICK_PER_SEC / 10;

// TAG.OVERRIDE.MOVERATE
    CVarDefCont * pValue = GetKey("OVERRIDE.MOVERATE",true);
    if ( pValue )
    {
        INT64 tTick = pValue->GetValNum();
        if ( tTick < 1 ) tTick=1;
        //g_Log.EventDebug("tag found: %d\n",tTick);
        iTickNext = ( iTickNext * tTick ) / 100;
    }
    else
    {
// END TAG.OVERRIDE.MOVERATE

        //g_Log.EventDebug("prop found: %d\n",pCharDef->m_iMoveRate);
        iTickNext = (iTickNext * pCharDef->m_iMoveRate)/100;

// TAG.OVERRIDE.MOVERATE
    }
// END TAG.OVERRIDE.MOVERATE

    if ( iTickNext < 1 )
        iTickNext = 1;

    SetTimeout(iTickNext);
10-24-2015 02:31 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Messages In This Thread
Move speed formula - Aimed - 10-23-2015, 10:37 AM
RE: Move speed formula - XuN - 10-23-2015, 06:57 PM
RE: Move speed formula - Aimed - 10-23-2015, 07:34 PM
RE: Move speed formula - darksun84 - 10-23-2015, 10:34 PM
RE: Move speed formula - Aimed - 10-23-2015, 10:51 PM
RE: Move speed formula - darksun84 - 10-23-2015, 11:24 PM
RE: Move speed formula - XuN - 10-24-2015 02:31 AM
RE: Move speed formula - Aimed - 10-26-2015, 05:58 PM
RE: Move speed formula - Aimed - 10-29-2015, 09:50 PM
RE: Move speed formula - XuN - 10-29-2015, 10:35 PM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)