Hello all ok this is my very first attempt at an Apophysis script. I need some people to test it for me.
Copy the below code and paste it in to a new script through the script editor in Apophysis 2.05.
 Clear;
      AddTransform;
      AddTransform;
      //Transform 1
      SetActiveTransform(0);
      Transform.Variation[24] := 1;
      Transform.Variation[0] := 0;
      Transform.Weight := 0.3 + (random * 0.2);
      Translate(random,random);
      Rotate(random * +45);
      //Transform 2
      SetActiveTransform(1);
      Transform.Variation[0] :=0.01 + (random * 0.4);
      Transform.Variation[2] :=0.2 + (random * 0.6);
      Transform.Weight := 0.5 + (random * 0.45);
      Transform.Color := 1;
      Scale(random * 1.5);
      Translate(random,random);
      Rotate(random * +180)
      // To remove the final transform:
      AddTransform;
      SetActiveTransform(transforms);
      DeleteTransform;
      ResetLocation := True;
      UpdateFlame := True;             
This script was made more to teach everyone how i am making the web type flames.
The thing is the two transforms that it makes still need adjusting after it has run. Most notabley the Transform #2 uslly needs moved up and Left some. It also adds some room to rotate both transforms and scale them. 
I am still working on this script trying to refine it some more.
Examples of what can be done.