trying to make/use luck stat in TL2 Posted byOlegon 29 May, 2015 21:09
Luck/PERCENT MAGICAL DROP/magic find. Not sure how best to call it but I am trying to find a way to reference it to augment abilities. Progress so far: I know from looking at the synergies mod that it is possible to mod in new stats, and some of them seem to auto-calculate without having to specially link them:
Quote
So I tried to make my own stat for luck
Quote
I names it "PERCENT MAGICAL DROP" because that is what the game calls it when it boosts magi find via magic dice or yololo skull. However when I attatch that stat to an ability affix via: <STRING>STATMODIFYNAME:CHARACTER PERCENT MAGICAL DROP <STRING>STATMODIFYPERCENT:5 <BOOL>MODIFIERISBONUS:true It does nothing as I equip/unequip luck boosted items. I tested the affix attatchment by using "Max Mana" instead and that one did work.
What am I doing wrong? Is there a better way to reference the magic find stat the game keeps track of in the "j" menu? Thanks in advance
P.S. I have Guts but find it easier to work in text files and just let GUTS compile it at the end
Hi Oleg! Welcome to Torchnodders same here unfotrunately, stats and affixes arent my bag. Ah so u also prefer to edit the files directly? a kindred spirit!
One of the firt things I was trying to mod was recipes. And while this is possible to do with GUTS, the interface is very glitchy and makes it hard to fix mistakes/change # of ingredients, so I switched to text modding instead. If I start doing textures at some point I may try GUTS again, but for affixes/recipes/skills text works faster. Don't really know how to edit/add stats yet. Just learning.
A couple things. Your two stats, PERCENT MAGICAL DROP and CHARACTER PERCENT MAGICAL DROP, are not linked. They're two different stats. So, modifying CHARACTER PERCENT MAGICAL DROP isn't going to modify PERCENT MAGICAL DROP.
Also, check out the list of static stats that already exist in the game here. Searching that shows a likely candidate for a stat that might already fill the role you're looking for, 'CHARACTER MAGIC FIND %'.
<STRING>STATMODIFYNAME:CHARACTER MAGIC FIND % <STRING>STATMODIFYPERCENT:5 <BOOL>MODIFIERISBONUS:trueit had no effect. Toggling a luck item on/off the char did not change affix However, when I added
[STAT] <STRING>NAME:CHARACTER MAGIC FIND % <INTEGER64>UNIQUE_GUID:8143476688288407776 <TRANSLATE>DISPLAYNAME:CHARACTER MAGIC FIND % <STRING>TYPE:TYPE_PREDEFINED_INT [/STAT] to the "stats" folder and tested again it worked like a charm. Not really sure why you have to create a stat that should already exist, but I felt it was worth mentioning in case anyone else ran into the same problem.