Jump to content
LordJashin

Scar Script Information Library 1.0 [FINAL RELEASE]

Recommended Posts

~Discontinued, Final

Might not work correctly with some things might update include and this post later... watch this space

 

 

Features

 

1. Variables such as Script name, version, desc, dates, author, etc.

2. Scar Version checking, and operating system checking ( Windows only )

3. Update functions for scripts, and one built in to the SSIL include ( can have custom save paths )

4. SSIL Extensions, provides some useful Scar Divi related functions

5. Has built in failsafes, and error checking/handling

6. Supports Scar Divi Version 3.20b and higher

 

Can be installed on Scar Divi via File->Includes Manager

 

SVN Repository - here

 

SSIL has a Setup Tool which can generate a SSIL layout

 

Example Script using SSIL:

 

[sCAR]

program ExampleWithoutSSILExtensions;

 

// Without SSIL Extensions

 

{$i SSIL/SSIL.scar}

 

procedure SetupScript;

begin

 

Script.Name := 'Scar Script Information Library';

Script.Version := 1.0;

Script.Author := 'LordJashin32';

Script.Description := 'A Scar library for Script Information';

Script.Created := 'May 3, 2012';

Script.LastUpdated := 'May 3, 2012'

Script.SupportedScarVersions := [320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334];

Script.SupportedOperatingSystems := [osWin7, osWinXP, osWinVista];

 

Script_CheckScarVersion(true, true);

Script_CheckOperatingSystem(true, true);

 

Script_CheckForUpdates('http://pastebin.com/raw.php?i=BtCd4YmP', '', true, true, true);

 

Script_CheckForSSILUpdates('', true, true, true);

 

end;

 

begin

 

SetupScript;

 

end.

[/sCAR]

 

 

Setup Tool:

Untitled2.png

Untitled.png

Edited by LordJashin
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...