well i went ahead and purchased platinum this morning... so now i'm a registered user i can start making demands right?
the comments in the scripts folder are helpful, but the info is all spread out and not really easy to find at a quick glance... what i was hoping to get was just a small list of commands and what they do to help me get started... not necessarily an indepth tutorial on how to make your own waveshapes and such - although that would be nice too!
like the 'example script' is helpful, but does it contain all the commands that are available to me?
i can even start it...
stdout( "text" ); //prints text to screen - not really to be used, but helpful for seeing timing for scripts
SetSlideShow( CONFIG_WAVESHAPE | CONFIG_COLORMAP | CONFIG_FLOWFIELD | CONFIG_SPRITE | CONFIG_PARTICLE, false ); //turns slideshows on and off
SetWaveShape( "Simple Vertical", 0 ); //what do the numbers do?
SetColorMap( "Hero", 0 );
SetFlowField( "Right Turn", 0 );
SetNextFlowField( "Noise", "", 34, 5 ); //see CTRL 3.txt
SetWaveShape( "Rotating Arcs", 6 + rnd(4) ); //oooooo, math...
StartParticle( "Spinning Plane" );
StartRandomParticle();
StartSprite( "sprite" ); //is there a corresponding StopSprite?
StartOverlayText( "text", 18, 10, 3, 0, -.8 ); //this one doesn't actually work...
what else is there?