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

Outfit stats, speed not working

mRefaat

Marketing and Coding
Joined
Jan 18, 2014
Messages
959
Solutions
3
Reaction score
201
Location
Egypt
Hello

XML:
    <outfit id="1">
        <list gender="0" lookType="136" name="Citizen">
        <attribute speed="10"/>
        <stats maxHealth="100"/>
        </list>       
        <list gender="1" lookType="128" name="Citizen">
        <attribute speed="10"/>
        <stats maxHealth="100"/>
        </list>           
    </outfit>

Speed attribute not working. Idk why

This is outfit.cpp


tfs 0.3.7 rev5969
any help?
 
I have made this page on wiki explaining how speed works exactly. There are breakpoints and maybe they were added to tfs or ur distro too.

and it's not speed but baseSpeed or PLAYER_MAX_SPEED, not sure. Check player.h
 
I have made this page on wiki explaining how speed works exactly. There are breakpoints and maybe they were added to tfs or ur distro too.

and it's not speed but baseSpeed or PLAYER_MAX_SPEED, not sure. Check player.h
Thanks for answering man.
It worked but I couldn’t post the fix because i got temporary ban on Zulfix.

the fix should be like this to make it work

XML:
 <outfit id="1">        
<list gender="0" lookType="136" name="Citizen" speed="10"> 
<stats maxHealth="100"/>        
</list>               
<list gender="1" lookType="128" name="Citizen" speed="10">              
<stats maxHealth="100"/>        
</list>              
</outfit>
 
Back
Top