editing Interaction Editor script

Started by homelightgames, Fri 27/10/2006 19:23:45

Previous topic - Next topic

homelightgames

Hey all,

I have a quick question. 

I assume everything in the Interaction Editor is converted to script somewhere.  Is there a way to edit that script? 

I've checked around, and looked at the manual but can't find if this is possible.

thanks

visionmind

monkey0506

If you want to use scripting, use Run Script commands. Otherwise I don't believe (though I could be wrong here) that you can edit the scripts.

homelightgames

Yeah.  What it is, is I'm using Conditional Events to run my own scripts, but I was wanting to edit the conditional events so it wasn't simpley "==", so I could do greater than or less then conditions.

It was a long shot (if it was possible) but I just thought I'd ask.

thanks

visionmind

monkey0506

Code: ags
if (a > b) Display("a is greater than b");
if (a < b) Display("a is less than b");
if (a == b) Display("a is equal to b");
if (a != b) Display("a is not equal to b");
if (a >= b) Display("a is greater than or equal to b");
if (a <= b) Display("a is less than or equal to b");


Does that help?

SMF spam blocked by CleanTalk