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

Slow animations, should be faster

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
921
Location
Chile
Hey guys, plz could anyone tell me if there's a way to have animations faster? OB option to increase speed doesn't work for me
here is a video of the slow it is

i mean is good for old tibia, but now those animations are faster
I use otclient and my server is 9.83 otx 2.52
 
Try on tibia client, maybe otclient does not have the new animation structure
 
Years ago i use to work in Flash and if we wanted to speed up an animation we would remove key-frames from the animation sequence.
 
Just use lastest OB and OTC rev ( maybe you should activate with g_game.enableFeature(GameEnhancedAnimations) before load dat/spr ) and have fun :)
 
Just use lastest OB and OTC rev ( maybe you should activate with g_game.enableFeature(GameEnhancedAnimations) before load dat/spr ) and have fun :)
wow thanks man! as soon as i know how to do it i will do it haha, thanks
 
game.cpp -.---->

if(version >= 1050) {
enableFeature(Otc::GameEnhancedAnimations);
}

change


if(version <= 1050) {
enableFeature(Otc::GameEnhancedAnimations);
}


if anyone can compile this for otclient
 
Back
Top