Aether

From Esolang
Jump to navigation Jump to search
This is still a work in progress. It may be changed in the future.

What is "Aether"?

Aether is a programming language made to replace the Minecraft's commands because: They are horrible.

Features of the Aether programming language:

  • Easy to use
  • Easy to learn
  • Lua like
  • Object oriented
  • Cool, I think.


Documentation

I will teach you how tu use this language by showing examples and tell you what every line does.

The set command

The set command is the most important thing, with this command you will do a lot of things like:

  • Creating variables and changing their values
  • Add/delete/replace blocks
  • Change hunger of players
  • Change health of players


Examples

Now I will show you examples of code.

// Kill a random player
set health players.random() 0
// Refill hunger of every player every 0.5 of a second
while true do
 read array players.users in player do
  set hunger player 20
 end
 delay seconds 0.5
end