Difference between revisions of "ISInterface:RunScript"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 +
==Syntax==
 +
bool RunScript(char *Filename)
 
== Purpose ==
 
== Purpose ==
 
+
To run a [[Script_Development|Script]]
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 +
*char *Filename
 +
:The '''Filename''' of the script to run
 
=== Return Value ===
 
=== Return Value ===
 +
*bool
 +
:Returns true on success, false on failure
 +
== Examples ==
 +
;Example code
  
== Examples ==
+
pISInterface->EndScript("test");
  
 
== See Also ==
 
== See Also ==
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]
 
+
* [[ISInterface:EndScript|EndScript]]
 +
* [[Script_Development]]
 
[[Category:ISXDK]]
 
[[Category:ISXDK]]
 
[[Category:ISInterface]]
 
[[Category:ISInterface]]

Revision as of 00:38, 2 September 2005

Syntax

bool RunScript(char *Filename)

Purpose

To run a Script

Usage

Parameters

  • char *Filename
The Filename of the script to run

Return Value

  • bool
Returns true on success, false on failure

Examples

Example code
pISInterface->EndScript("test");

See Also