Ill try and be as detailed as i can be. I have a dump file in .txt format and im trying to get CE to search the txt file for key words and then print to a dropdown list with the address and name..
Text file name is C:\[Borderlands3.exe] ObjectsDump.txt File will always be dumped to c:\ and name will never change but i need to dump the file and grab new address's every time due to the address's changing every time you start the game
Dump file is formatted like so:
Spoiler
[00452874] 000002B68A31E320 ItemPoolData /Game/PatchDLC/BloodyHarvest/GameData/Loot/ItemPool_BloodyHarvest_Trinkets.ItemPool_BloodyHarvest_Trinkets
[00452875] 000002B68A31D280 ItemPoolData /Game/PatchDLC/BloodyHarvest/GameData/Loot/ItemPool_BloodyHarvest_Skins.ItemPool_BloodyHarvest_Skins
[00452876] 000002B68A31D1A0 ItemPoolData /Game/PatchDLC/BloodyHarvest/GameData/Loot/ItemPool_BloodyHarvest_EchoThemes.ItemPool_BloodyHarvest_EchoThemes
[00452877] 000002B68A31D0C0 ItemPoolData /Game/PatchDLC/BloodyHarvest/GameData/Loot/ItemPool_BloodyHarvest_Cosmetics.ItemPool_BloodyHarvest_Cosmetics
[00452878] 000002B68A31CFE0 ItemPoolData /Game/PatchDLC/BloodyHarvest/GameData/Loot/ItemPool_BloodyHarvest_Legendary.ItemPool_BloodyHarvest_Legendary
Spoiler
ItemPool_BloodyHarvest_Skins.ItemPool_BloodyHarvest_Skins
ItemPool_BloodyHarvest_EchoThemes.ItemPool_BloodyHarvest_EchoThemes
ItemPool_BloodyHarvest_Cosmetics.ItemPool_BloodyHarvest_Cosmetics
ItemPool_BloodyHarvest_Legendary.ItemPool_BloodyHarvest_Legendary
After the search I need grab the address 000002B68A31E320 and the name ItemPool_BloodyHarvest_Trinkets and add them to a dropdown list.
Example:
Spoiler
000002B68A31D280:ItemPool_BloodyHarvest_Skins
000002B68A31D1A0:ItemPool_BloodyHarvest_EchoThemes
000002B68A31D0C0:ItemPool_BloodyHarvest_Cosmetics
000002B68A31CFE0:ItemPool_BloodyHarvest_Legendary
Or if the above is not possible add just the address and search term:
000002B68A31E320:ItemPool_BloodyHarvest_Trinkets.ItemPool_BloodyHarvest_Trinkets
000002B68A31D280:ItemPool_BloodyHarvest_Skins.ItemPool_BloodyHarvest_Skins
000002B68A31D1A0:ItemPool_BloodyHarvest_EchoThemes.ItemPool_BloodyHarvest_EchoThemes
000002B68A31D0C0:ItemPool_BloodyHarvest_Cosmetics.ItemPool_BloodyHarvest_Cosmetics
000002B68A31CFE0:ItemPool_BloodyHarvest_Legendary.ItemPool_BloodyHarvest_Legendary
Im not even sure if this is possible to add only the address and ending name or not but this is way over my head. Hoping one of you lua gods might have a solution.
If its not possible.. another option would be to do a search as stated above and just print the entire line to Lua window.. I know its not as clean and people will have to copy and paste.. but will at least save them from searching through thousands of lines in a dump file for all the itempools and instead print all 709 pools to the lua window or even a txt file for them.
Thank you in advance for any help you can provide. I will be sure to give credit in the script for anyone that can figure this out