Difference between revisions of "Lua:getAutorunPath"
Jump to navigation
Jump to search
(Initial page creation.) |
m (Added related function template.) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 11: | Line 11: | ||
===Examples=== | ===Examples=== | ||
| − | < | + | <syntaxhighlight lang="lua" line> |
local path = getAutorunPath() | local path = getAutorunPath() | ||
print("Autorun path: " .. path) | print("Autorun path: " .. path) | ||
| − | </ | + | </syntaxhighlight> |
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| + | |||
| + | {{TargetIdentity}} | ||
Latest revision as of 23:37, 26 June 2026
Returns the autorun path.
Function Parameters[edit]
This function has no parameters.
Returns[edit]
string — The autorun path.
Examples[edit]
1 local path = getAutorunPath()
2
3 print("Autorun path: " .. path)