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

C++ Yello Skull Bug

Oxygens21

Member
Joined
Aug 3, 2017
Messages
48
Solutions
1
Reaction score
6
Anyone can bring me the code for fix the Yellow Skull bug, im using tfs 0.4 3777
 
Yep dont work and the another code is for OTX my player cpp is diferent

Im not saying that you should copy and use those files, but the marked code.
You might have to do some smaller modifications but it might work.
 
player.cpp change function
C++:
bool Player::hasAttacked(const Player* attacked) const
{
    return !hasFlag(PlayerFlag_NotGainInFight) && attacked && attackedSet.find(attacked->getID()) != attackedSet.end();
}
 
Back
Top