• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Change Tracked Resource name of an item

risner

Well-known member
I've got an item I'd like to have the Tracked Resource name be different than the name in the Magic tab.

But if I change livename, it changes both.

I've also tried the following and none change the same name is used for both the Magic tab and the Tracked Resource list (for example livename):

field[livename].text = "My Livename"
field[spcName].text = "My spc name"
field[CustDesc].text = "My CustDesc"
field[iCustSumm].text = "My cust summ"
field[actName].text = "My act name"
field[actName2].text = "My act2 name"
field[usrChkText].text = "My check box"
field[abText].text = "My ab text"
field[shortname].text = "My shortname"
field[actMod].text = "My actmod"

Is there any way to have an item put up a tracked resource name different than the object name?
 
You could bootstrap a "Tracker" Thing to the magic item and have it set to display on the "In-Play" tab instead. That way you would be able to control having two different names.

If you wanted it only to appear when the item is equipped then use a Bootstrap condition with the following at First/500:
Code:
fieldval:gIsEquip <> 0
 
Hey Shadow I've tried that and it doesn't seem to work, when I bootstrap a tracker on to a magic item with that condition, it's disabled if equipped it seems to work right if I do = 0 instead, except that it shows up first when the item is added and doesn't disappear until you equip/unequip re-equip.
 
That's strange as I have stuff working with Trackers just fine using the above. By saying = 0 your saying display when NOT equipped which is the exact opposite of what you normally want to happen.

You did a "CTRL-R" after doing the bootstrap condition right not TEST NOW? Once you get into Bootstrap Conditions you can't use Test Now. YOU MUST reload the game system to make it work right.

Also DO NOT put it on a .por file as a test either until 100% working as that will also give you strange results. My guess is you didn't do "CTRL-R" so try a reload with the above code and see how it works...
 
Yep, did a Ctrl + R, always do when bootstrapping, but I ended up modifying the shutdown statement so before it shuts down, it hides the tracker. Now just to figure out how to change the name, because modifying the shortname is not doing it.
 
Back
Top