-if i flollow the manual scripting look like this:
Code: Select all
{
Spawn[()
{
SetFOV(xxx);
...
Code: Select all
{
FOV[xxx]
Spawn[()
{
SetFOV(FOV);
...
Code: Select all
{
Spawn[()
{
SetFOV(xxx);
...
Code: Select all
{
FOV[xxx]
Spawn[()
{
SetFOV(FOV);
...
Code: Select all
{
Spawn[() //starts the spawn command
{
SetFOV(xxx); //sets the FOV to 'XXX'
...
Code: Select all
{
FOV[xxx] //creates a variable called 'FOV' with the value of 'XXX'
Spawn[() //starts the spawn command
{
SetFOV(FOV); //sets the FOV to the value of the variable 'FOV'
...