Skip to content
CCTech-ComputerCraft edited this page May 30, 2019 · 8 revisions

Welcome to the Rheo Wiki!

Rheo is an Development kit for CC:Tweaked and it is still in developement!

Rheo Contains 2 Programs and 1 Lua API:

  • Rheo - The main program of this enviroment: An RheoScript Interpreter.
  • REdit - An edit program for RheoScript with a customized run function and syntax highlight
  • dict.lua - An API for LUA that creates JSON-like files that are compatible with RheoScript

You may have read "RheoScript" and now you're probably asking yourself "RheoScript? Never heard of it" - Well, how would you?

I was developing RheoScript for months now and after I accidently removed it I had to rewrite it from a really old Backup. But here it is now and still in Developement!

This wiki will teach you through RheoScript: A CC:Tweaked alternate scripting language

Run a RheoScript

If you have added RheoScript to your path you can easily run a file using: `rheo -rs file.rs´

Create and run a RheoArchive

A RheoArchive .ra file is similar to .jar just in Rheo format. You will need to have a directory with at least one RheoScript file. It should be called: main.rs You can have of course more files, but you'll need one main file. To create a RheoArchive file easily type: rheo -cra <directory> <output> Note at Output you don't need to contain the extension. The extension will be added automatically .ra

To run a RheoArchive easily type: rheo -ra <fileWithExtension>

Why Rheo?

Rheo is an Development Kit for CC:Tweaked

I've created this to make development in ComputerCraft a bit easier, and different.

I've made a new language so people don't always have to code in Lua.

I would apperciate any support and/or feedback on this project, together as community we can make development easier!