Nullop

From EDukeWiki
Jump to navigation Jump to search

nullop

Null operation. Use this instead of empty braces to signify doing nothing, immediately followed by else and code to run if the if condition returns false. If you are not using an else, remove nullop and the if condition completely.

Instead of ifpdistl 1024 { } else killit, do ifpdistl 1024 nullop else killit.