SymOntoClay  is an Independent DIY Game AI DSL.


  Warning logo Disclaimer: This is a purely experimental and unstable personal project, created by a single developer. Not intended for production use.
Please read the disclaimers carefully before use!

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 Enter =>
        {
            "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.