Page 1 of 1

Drop Down List

Posted: Sat Apr 29, 2023 3:19 am
by Solenya
I am trying to implement a drop down list of skins that can be selected to equip them. I already have all the appropriate addresses and values that I need, to change it manually be entering in the pointer. Is there a way to use the value of an address/offset in the address list in the drop down options?

Re: Drop Down List

Posted: Sat Apr 29, 2023 4:21 am
by BabyGroot
Like this?
Numbers 1 to 6 are values.
Spoiler
Image

Re: Drop Down List

Posted: Sat Apr 29, 2023 4:57 am
by Solenya
It's actually for Crab Champions lol. So imagine that the numbers 1 to 6 are values of addresses you have found. How can I make the dropdown value accept a non static value. So say default skin value = 000001F438E8F200, how can I set value:description so that 000001F438E8F200:default skin.

Re: Drop Down List

Posted: Tue May 23, 2023 6:19 am
by tdg6661
Solenya wrote:
Sat Apr 29, 2023 4:57 am
It's actually for Crab Champions lol. So imagine that the numbers 1 to 6 are values of addresses you have found. How can I make the dropdown value accept a non static value. So say default skin value = 000001F438E8F200, how can I set value:description so that 000001F438E8F200:default skin.
Right click, Show As Hex. Then the format hex_address:desc.

You can also convert the address into decimal value, depending on your pointer size. Use readPointer(item_address).
x64 = 8 bytes
x86 = 4 bytes