SEQRAT v1.0 - Scripting Engine
by Andrei Besleaga

  With SEQRAT you have access to the powerful VBScript and you can
make little (or bigger) scripts that can handle or automate for you
different tasks. Scripts are run remotely by the server.
  You have access to the following objects:
	
	SCRIPT- this is the ScriptControl itself and you can access
		it's methods and properties so that the scripting 
		you make is more customizable.
		see the help on ScriptControl for all the power of 
		this object;
	
	MAIN - this is the frmMain form of the server and you can
		access any procedure or function that is public
		in this module;
	
	CHAT - this is the frmChat form of the server;
	
	ZLIB - this is the clsZlib class of the server and you have
		access to any property or method of this class;


	scTimer - this is a timer control which you have access to.
		  you have to define the scTimer_Timer event (just
		  a script sub) and set the interval and enabled to
		  true or false and you can do amazing things;

        DataArival - this is the sub run whenever data arrives on 
		     the server's socket.
		     (define Sub DataArival() and put code there);

	DoeventsEx - this does the Doevents for you in your script;

	gimme(string,NOTenc) - this function returns to you the 
				string in the argument;
				
				the NOTenc parameter is optional
				and if it's false (default) it sends
				the string back encrypted (the 
				client will decrypt it) and if it is
				set to true then will send the data
				unencrypted.

				if is send unencrypted the protocol
				code returned to client is "s1",
				else is "s0".

			(note: this function is replaced by server 
			with the scSend function and puts your 
			winsocket index automatically in it);

	%myindex  - this is a variable which is your's connection
		    index number;


To understand it better see the samples provided. Go to scripting,
open script and see and execute the samples provided. If you
understand those then make up your own. 
If you know VBScript and made some scripts, please share them or
their URL on the comments.		
