• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Help me (SUMMON SPEED)

jededias

Member
Joined
Jan 21, 2019
Messages
66
Solutions
1
Reaction score
12
In monster.cpp how config to the monster run at the same speed that the PLAYER ?
"Basespeed" how put GetPlayer Speed?

Code:
    if(isSummon())
    {
    health = (int32_t)(mType->health * multiplier);
    healthMax = (int32_t)(mType->healthMax * multiplier);   
    }
              
    health = (int32_t)(mType->health * multiplier);
    healthMax = (int32_t)(mType->healthMax * multiplier);

    baseSpeed = mType->baseSpeed;
 
Back
Top