• 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!

OTCV8 Slow animations

Shoorkill

Member
Joined
Dec 17, 2018
Messages
126
Reaction score
21
I'm using the 13x dat/spr converted to 7.92, however the weapon animations are slow, and the outfit only when walking, if I use an animated outfit the animation doesn't work if I'm standing still, how do I solve this?
 
g_game.enableFeature(GameEnhancedAnimations)

I have my resources, but the sprites still have slow animations, and the clothes don't animate when I'm standing still, do I need to add something to the server source?
Lua:
    if(version >= 790) then
        g_game.enableFeature(GameWritableDate)
        g_game.enableFeature(GamePlayerMounts)
        g_game.enableFeature(GameLooktypeU16)
        g_game.enableFeature(GameMessageStatements)
        g_game.enableFeature(GameLoginPacketEncryption)
        g_game.enableFeature(GameDoubleHealth)
        g_game.enableFeature(GameSpritesAlphaChannel)
        g_game.enableFeature(GameWingsAndAura)
        g_game.enableFeature(GameOutfitShaders)
        g_game.enableFeature(GameWingOffset)
        g_game.enableFeature(GameDrawAuraOnTop)
        g_game.enableFeature(GameExtendedOpcode)
        g_game.enableFeature(GameEnhancedAnimations)
        g_game.enableFeature(GameClientPing)

                
    end
 
Back
Top