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

Idle Stand/Walking Animations

Chrollo Ollorhc

New Member
Joined
Mar 21, 2020
Messages
6
Reaction score
0
Hi,
I'd like to add some outfits to my server with stand and walking animations. Is there any tool to add sprites for this in client 8.60?
I know there is object builder 0.3.3 which has this option but it doesn't work with client 8.6
Idle.png
 
@Chrollo Ollorhc As you can see in OTC sources in game.cpp
EnchancedAnimations
that contains time between each frames is enabled in client version above 10.50
C++:
if(version >= 1050) {
enableFeature(Otc::GameEnchancedAnimations);
}

Also, GameIdleAnimations that contains frame-groups (Idle/Stand and Move) are enabled in version above 10.57
C++:
    if(version >= 1057) {
        enableFeature(Otc::GameIdleAnimations);
    }

So my answer is: It's not possible to add this feature in 8.60 client.
Have a nice day!
 
and if I changed this function:

Lua:
if (version> = 1057) {
enableFeature (Otc :: GameIdleAnimations);
}


for him to understand that it has idle animation in function 8.60 in otclient, and by ojbect builder making a client 8.60 with function IDLE, would it work?
Post automatically merged:

considering that this function is already enabled in otclient, only limited to that version?
Post automatically merged:

@Fresh
 
Back
Top