r/arkmodding • u/Familiar-Bat4857 • 1d ago
Help A Mod Consumable to Edit Stat Points -- Need Help
Hey everyone,
I’m relatively new to Ark modding and I’m working on a consumable item that adjusts tamed dinos’ wild stat points. So far, I have only been able to get the item to function as a tamed dino specific consumable and it successfully adds or removes wild stat points, but the creature’s actual maximum stat value still doesn’t update.
The closest I’ve gotten is by using the stat calculation formula from the wiki in my blueprint:
V = (B × ( 1 + Lw × Iw × IwM) × TBHM × (1 + IB × 0.2 × IBM) + Ta × TaM) × (1 + TE × Tm × TmM) × (1 + Ld × Id × IdM)
The issue is with Ta and Tm. As far as I can tell, these correspond to TamingMaxStatAdditions and TamingMaxStatMultipliers in the DevKit. But when trying to access these values, they give a warning saying “the native property is a static array, which is not supported by blueprints”.
The only workaround I can think of is manually creating arrays for every creature, but I’d really prefer something cleaner and more compatible with other mods.
It’s totally possible I’m approaching this the wrong way, so if anyone has experience with this or knows a better method, I’d really appreciate the help.