function helloWorld(%this) //%this is the object that calls the function, function tells it that it's a function and helloWorld is the function name.
{
// what ais the \\C2 and \\C3 for? andthing special? Sekret: \\c2 and \\c3 are escape characters for color, you can do \\c0-9 to get a new color, the default is red (0) if //nothing is used in a messageAll(), its black for echos
echo("\\c2Hello world, \\c3" @ %this.client.name); //%this.client.name is the calling object's client name, eg; if you called it, it would be 'wolis'
//messageAll can be used like:
messageAll("","\\c2Helo world, \\c3" @ %this.client.name);
}