8000 temporarily · brombres/Rogue Wiki · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Abe Pralle edited this page Sep 7, 2022 · 5 revisions

Syntax

temporarily x=3, obj.property=4, ...
  ...
endTemporarily

# Equivalent to
local old_x = x
x = 3
local old_property = obj.property
obj.property = 4
...
obj.property = old_property
x = old_x
Clone this wiki locally
0