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

set attribute item tfs 1.2

chucky91

Advanced OT User
Joined
Apr 8, 2010
Messages
347
Solutions
11
Reaction score
196
Location
MS -Brazil
GitHub
RCP91
What the hell prevents you from editing an item armor value?
but is changing the weight allowed?

C++:
void setIntAttr(itemAttrTypes type, int32_t value) {

enum:
C++:
enum itemAttrTypes : uint32_t {

    ITEM_ATTRIBUTE_WEIGHT = 1 << 9,
    
    ITEM_ATTRIBUTE_ARMOR = 1 << 12,
}
 
What the hell prevents you from editing an item armor value?
but is changing the weight allowed?

C++:
void setIntAttr(itemAttrTypes type, int32_t value) {

enum:
C++:
enum itemAttrTypes : uint32_t {

    ITEM_ATTRIBUTE_WEIGHT = 1 << 9,
   
    ITEM_ATTRIBUTE_ARMOR = 1 << 12,
}
I also can't change armor or some other things in tfs 1.2
 
Hello,
I have an issue very similar to your case.
In my server i can feel that value of attack is changed (using a weapon for example), but the value of Atk: in the name of the item remains untouched.
Is there a way to enable refreshing this values in the server? (tfs 1.2).
Thanks in advance for help.
 

Similar threads

Back
Top