This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
4rpl:commands:editaddundo [2025/02/14 14:57] – external edit 127.0.0.1 | 4rpl:commands:editaddundo [2025/03/25 01:50] (current) – Improved clarity and wording. Made clear how to best use the API. Vertu | ||
---|---|---|---|
Line 6: | Line 6: | ||
===== Description ===== | ===== Description ===== | ||
- | Creates an undo entry when editing the map. The argument specifies the type of undo. A value of 0 means any terrain change. | + | Creates an undo entry when editing the map. The argument specifies the type of undo. A value of 0 means any terrain change.\\ |
- | An undo entry can be restored by the map maker, by pressing | + | Only undoType of 0 (zero) is supported.\\ |
- | This command does nothing | + | An undo entry can be restored by the map maker while in edit mode by pressing |
+ | This command does nothing | ||
+ | |||
+ | Do note that you should use this API before applying a terrain change, not after. | ||
- | Note: Only undoType of 0 (zero) is supported. | ||
===== Examples ===== | ===== Examples ===== | ||
<code 4rpl> | <code 4rpl> | ||
- | EditAddUndo(0) | + | EditAddUndo(0) |
- | SetTerrain(42 23 10) | + | SetTerrain(42 23 10) #--Apply terrain change. |
- | #The make can press ctrl-z to under the terrain change. | + | #--The terrain change is now part of the undo state and can be undone by the map maker via CTRL/ |
</ | </ | ||
< | < | ||