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

TFS 1.X+ Can you help me to recognize this Attribute

Thesandier

New Member
Joined
Jul 13, 2023
Messages
1
Reaction score
0
I was able to add this part to game.cpp and item.cpp, but I can't add the items.cpp and items.h files. I noticed that TFS 1.2 and 1.5 codes are totally different. can you help me to solve the problem?



About items.cpp:

TFS 1.5 nekiro
C++:
case ITEM_PARSE_INCREASEMAGICPERCENT: {
    it.increaseMagicPercent = pugi::cast<int32_t>(valueAttribute.value());
    break;
}

TFS 1.2 8.0 (downgrade)
C++:
} else if (tmpStrValue == "increasemagicpercent") {
    if (it.increaseMagicPercent == pugi::cast<int32_t>(valueAttribute.value())) {
     
    }
}
See, the two are totally different. Why is it still not recognizing this Attribute? What can it be?"
 
Back
Top