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
Aimed
Apprentice
*

Posts: 20
Likes Given: 0
Likes Received: 4 in 3 posts
Joined: Apr 2015
Reputation: 0



Post: #5
RE: Move speed formula
(10-23-2015 10:34 PM)darksun84 Wrote:  In that formula, a moverate of 20 means that the NPC uses 20% of their actual dex for walking/runnin action.
In 56b. the formula was different, a lower value meant an higher speed, in 56c it's the opposite (100 moverate is default)

Was it something like this?

Code:
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;

   iTickNext = (iTickNext * pCharDef->m_iMoveRate)/100;
   if ( iTickNext < 1 )
      iTickNext = 1;
10-23-2015 10:51 PM
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: 3 Guest(s)