ok... i deleted one of the preset scripts in apop by accident and now i need it back
anyone with apophysis here what ya do:
go script>open script>HQI batch
then go script>edit
then copy the code/script wateva ya wana calll it
then post it here inside a
Code:
code
box
06-03-2005, 08:37 AM
Unforgotten
Code:
how did you manage to delete that ?lol :lol: anyway, theres the code for the HQI Batch
06-03-2005, 08:39 AM
robgasm
thats a flame file...
an asc (script) file looks like this
Code:
Julia := False;
For i := 0 to Transforms - 1 do
begin
*SetActiveTransform(i);
*For j := 0 to NVARS - 1 do
* *if Transform.Variation[13] <> 0 then Julia := True
end; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
if Julia then
*ShowMessage('This flame uses the Julia variation.')
else * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*ShowMessage('This flame does not use the Julia variation.')
UpdateFlame := False;
06-05-2005, 06:01 AM
robgasm
just copy the HQI batch, paste into notepad, and then copy and paste into here
or
opne the HQI batch in notepad and copy into here
06-05-2005, 02:47 PM
Illegalx17
I got it, but it was hard. He's rightt, if you try to copy it it screws it up. I saved it then opened it with flash and was able to copy it. here
Code:
{**********************************************}
{ Sets up a hqi batch render of transparent * *}
{ PNGs of the currently loaded flame file. * * }
{ It presumes the Export|Renderer option has * }
{ been set to hqi.exe. Creates a new parameter }
{ file and a batch file in the same folder as *}
{ hqi.exe. Run the batch file to render the * *}
{ batch * * * * * * * * * * * * * * * * * * * *}
{**********************************************}
{ Get path to hqi.exe }
Path := ExtractFilePath(Options.ExportRenderer);
{ Delete the existing batch.flame. Otherwise
*params will just be added to old one! }
DeleteFile(Path + 'batch.flame');
for i := 0 to FileCount - 1 do * * * * * * * * * * *
begin
*ShowStatus('Saving ' + IntToStr(i) + ' of ' +
* *IntToStr(FileCount));
*LoadFlame(i);
{ Set parameters to the values of choice }
*Flame.SampleDensity := 100;
*Flame.Oversample := 2;
*Flame.FilterRadius := 0.6;
*Flame.Width := 640;
*Flame.Height := 480;
{ Adjust flame scale for new dimensions }
*CalculateScale;
{ Set Batches to sample density / 4 }
*Flame.Batches := Flame.SampleDensity / 4;
*SaveFlame(Path + 'batch.flame');
end;
{ Create batch file. }
FileList := TStringList.Create;
FileList.Add('set format=png');
FileList.Add('set prefix=pic');
FileList.Add('hqi < batch.flame');
FileList.SaveToFile(Path + 'render batch.bat');
FileList.Free;
UpdateFlame := False;
06-07-2005, 02:41 PM
robgasm
thanks man, basically what it does is it lets you render like 10 fractals in a row witohut having to re set it so i can render them overnight