Hi Tuame,
Next time your on and I have time I will gladly help you remember how to code.
However you may want to read some of these as a reminder:
read the coding manual its the most up-to-date version
read the book of howto
and as a small reminder:
Each block of code starts with ##, has a bit of text then ends with a colon
All commands between one block and another are executed when the bock of is called
A command consists of one command key word var, set, if etc.. followed by params and ends with a semi-colon
A reacting objects is triggered by including a block with the name of the action's keyword then runnning a block after that eg:
##think:runsub whattodo;
This will run the block of code ##whattodo: when someone thinks in that objects location.
Usualy you want to output some text so everyone can see what is happening and the simplest is the SAy command eg:
##whattodo:
say 'msg',"[$actor] says 'hello there'";
This block makes th actor (the reacting object) say 'hello there'. If combined wih the above trigger then your object will say thisevery time someone thinks in the sae location as it.
Note the 'msg' in the say command. This is trigger key word so anything that reacts to 'msg' eg ##msg: will bet triggered into action.
Thats all for now.. remember you can code other codedobjects to see how they work ike the saxaphone or the waiter etc..
Please lock and leave this object in the book of howtos as a simple guide to coding for others.
One day we will have lost of guides and help about coding.. one day.
have fun now.