Overview
Reads a Int64 (8 bytes) number from the specified memory address. Range: -9223372036854775808 to +9223372036854775807.
(number) Address of Memory.
(number) Return integer 64 that reads from memory.
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
mem = Memory.Allocate(1024) Memory.PutInt64(mem, "9876974526712182279") Dialog.Message("", Memory.GetInt64(mem)) -- Print 9876974526712182279 Memory.Free(mem)
See also: Related Actions