Core Function EvalSet
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> EvalSet( <evalObject>, <name>, <value> ) </pre> === Description === Set a variable inside an Eval Object. === Parameters === ==== evalObject ==== An Eval Object creat...")
Newer edit →
(Created page with "<pre> EvalSet( <evalObject>, <name>, <value> ) </pre> === Description === Set a variable inside an Eval Object. === Parameters === ==== evalObject ==== An Eval Object creat...")
Newer edit →
Revision as of 12:52, 1 August 2014
EvalSet( <evalObject>, <name>, <value> )
Contents |
Description
Set a variable inside an Eval Object.
Parameters
evalObject
An Eval Object created from EvalCreate().
name
The name of the variable you wish to assign.
data
The data you wish to assign to the variable.
Return Value
Success: Returns true.
Failure: Returns false if unable to create/assign the variable.
Remarks
This sets the variable in the GLOBAL scope of the Eval Object.
Example
// Create and get the variable if( EvalSet($EvalSpk, "Test", 1221) ) { println("Test: " . EvalGet($EvalSpk, "Test")); }