nOOb scripting question.

Discussion forum for G-Force users

Moderators: BTT, andy55, b.dwall, juxtiphi

Post Reply
BlueMan1
Posts: 2
Joined: Fri Jun 10, 2005 11:17 pm

nOOb scripting question.

Post by BlueMan1 »

I would like G-Force to turn off spires and particles and stop all slideshows when i start it up. how do i script this?

User avatar
chkman
Posts: 329
Joined: Mon Aug 08, 2005 12:36 pm
Location: Greensburg, PA

Post by chkman »

Copy and paste this into a text editor like wordpad then save (as text) to folder C:\program files\soundspectrum\g-force\scripts
as stopall.txt
00:00
SetSlideShow( CONFIG_WAVESHAPE | CONFIG_COLORMAP | CONFIG_FLOWFIELD | CONFIG_SPRITE | CONFIG_PARTICLE, false );
Next open up a file (in the same scripts folder) called startup.txt and look for this
// If we're running the V-Bar, don't do the periodic logo
#if BAR == 0
Run( "logo.txt" );
#endif
replace Run( "logo.txt" );

with this line (then save the file).
Run("stopall",0);
G-Force will run the script stopall when it starts and that script stops all slideshows (before they have a chance to get started). I guess you want to control things with the toolbar?

Post Reply