Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
-- this is a comment it'll be ignored by the compiler
-- this snippet below will read from an external file
local f = io.open(filename,r)
print(f:read("*a"))
-- this snippet below will write to a lua log external file
local filehandle = io.open(filename[, mode])
local filehandle = io.open("Log.txt", "w+")
filehandle:write(ObjName, "Obj: ", tostring(ObjAnim), "\n") --might be somewhat wrong.
filehandle:close()
-- this will select all of your objects
os.execute("nav_select_radius 3000") -- may not work properly without editing first
-- Good luck!
did any of this help you?