This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
prpl:refreadglobal [2016/12/02 23:33] – external edit 127.0.0.1 | prpl:refreadglobal [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | <- [[.: | + | <- [[.: |
- | ===== | + | ===== |
^Arguments^Result^Notation^ | ^Arguments^Result^Notation^ | ||
- | | | | [ - ] | | + | | string |
=== Description === | === Description === | ||
+ | |||
+ | Read variable with string name s1 from the global heap. Reads the contents of the global variable and pushes it to the stack. This allows dynamic reading of variables. Global variables can be accessed by any script on the map. | ||
=== Examples === | === Examples === | ||
+ | <code prpl> | ||
+ | # In one script: | ||
+ | 42 " | ||
+ | # In any script on the same map after that point: | ||
+ | " | ||
+ | # Shows 42 in the debug window. | ||
+ | </ | ||
< | < | ||
stack.Push(GameSpace.instance.globalHeap[s1]); | stack.Push(GameSpace.instance.globalHeap[s1]); |