SymOntoClay is game AI experimental open source engine.


  Warning logo Purely experimental and very unstable project developed by only one person
Please read the page before starting

Getting started with CLI

Contens

Install SymOntoClay CLI

back to top

See here or here about installing SymOntoClay CLI.

Write some code

back to top

Get started with "Hello, World".

  1. Open a command prompt and navigate to your home directory.

    On Windows:

    cd %HOMEPATH%
  2. Create new worldspace.
    soc new Example
  3. Navigate to directory with new NPC.
    cd %HOMEPATH%/Example/Npcs/Example
  4. Write some code in the file Example.soc.
    app Example
    {
        on Init =>
        {
            "Helo, World!" >> @>log;
        }
    }

    This is your SymOntoClay code. In this code, you:

  5. Navigate to root directory of the worldspace and run It.
    cd %HOMEPATH%/Example
    soc run

Write more code

back to top

Learn more about SymOntoClay DSL.

Try examples.