Script data (if you don't already know)

Started by Kazamatta, April 15, 2012, 07:35:32 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Kazamatta

All scripts are written in JScript

A single line is from any of the following:

Begin:                                End:
Echo("....................................");

Pause("..................................");

Echo(".....................................") +
*the next line following the one above starts with (" and ends ");
* it may also be another line starting ("  and ending ") +

AddOption(0............................");


Complete Lines(other)
Begin-End

ClearOptions();

ProcessOptions();

return 0

function op1(){

function Pause(caption){

BeginOptions();

AddOption(0,caption,"","");

ProcessOptions();

function OnFirstEnter(){

The symbol } is always on the next line  from the one it follows and is at beginning of line.