• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

How to view all variables in game and edit them while in game?

Status
Not open for further replies.
Maybe you can try the hot code reload:



But this will be harder due to the Patch 1.33 aggressive caching bug

(Edit: I have also heard people mention a program called Cheat Engine that they used for doing what you ask more specifically in binary, but I have never looked that up nor used that, it was just something I heard about in conversation.)
 
1669519278592.png


If I do a trigger event on the value of MyVariable, then the event will use a string of the variable as the variable to use:
JASS:
    call TriggerRegisterVariableEvent( gg_trg_Untitled_Trigger_001, "udg_MyVariable", EQUAL, 0 )

So, it is close to what you ask, but maybe not the exact same.

My string generated here was "udg_MyVariable"
 
Status
Not open for further replies.
Top