Difference between revisions of "OS (API)"
From ComputerCraft Wiki
m |
|||
Line 14: | Line 14: | ||
|os.run( environment, programpath, arguments ) | |os.run( environment, programpath, arguments ) | ||
|<no description given> | |<no description given> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
|os.loadAPI( name ) | |os.loadAPI( name ) | ||
Line 26: | Line 21: | ||
|Unloads it. | |Unloads it. | ||
|- | |- | ||
− | |os.pullEvent() | + | |[[PullEvent|os.pullEvent()]] |
|<no description given> | |<no description given> | ||
|- | |- |
Revision as of 04:49, 5 February 2012
You may be looking for alternative OSes for ComputerCraft. If so, go to the list of OSes.
The Operating System API allows for interfacing with the Lua based Operating System itself.
Method name | Description |
---|---|
os.version() | Returns version |
os.computerID() | Returns the ID of the computer |
os.run( environment, programpath, arguments ) | <no description given> |
os.loadAPI( name ) | Loads the API given. |
os.unloadAPI( name ) | Unloads it. |
os.pullEvent() | <no description given> |
os.queueEvent() | <no description given> |
os.clock() | Returns CPU time. |
os.startTimer( timeout ) | <no description given> |
os.sleep( timeout ) | Makes the system wait before continuing in the program. |
os.time() | Returns MineCraft time. |
os.setAlarm( time ) | <no description given> |
os.shutdown() | Turns off the computer. |
os.reboot() | Reboots the computer. |