| 14 | void findSector(string name) { level.findSector(name); } |
| 15 | |
| 16 | void help() |
| 17 | { |
| 18 | system.print("=== Script Console Short-cuts ==="); |
| 19 | system.print("clear()"); |
| 20 | system.print("print(msg) - print(\"Test\")"); |
| 21 | system.print("runScript(name) - runScript(\"LevelInfo\")"); |
| 22 | system.print("showScript(name) - showScript(\"VectorMath\")"); |
| 23 | system.print("findSector(name) - findSector(\"RedDoor\")"); |
| 24 | } |