Can somebody cook me up a cog that will make a specified surface's extra light value flicker between to to specified values at a random rate? (for the randomization there make it so i can enter the max rate and minimum rate.) Thanks in advance!
This is the static archive of the Massassi Forums. The forums are
closed indefinitely. Thanks for all the memories!
You can also download
Super Old Archived Message Boards
from when Massassi first started.
"View" counts are as of the day the forums were archived, and will no longer increase.
#11/2001 GBK Symbols Message Startup Message Pulse Surface Wall Flex Min_val=0.1 Flex Max_val=0.9 Flex R=0 Local End Code Startup: Setpulse(Rand()); Stop; Pulse: Setsurfacelight(Wall, Rand(), 0.1); R=Rand(); While((R < Min_val) || (R > Max_val)) { R=Rand(); } Setpulse(R); Stop; End