MSIR.0761 ($function) not callable: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
mNo edit summary
Line 1: Line 1:
The indicated $function as invoked as an explicit or implicit Call, but the $function is not [[Calling Sirius Mods $functions|callable]]. An explicit call is one where the $function name is preceded with the <tt>Call</tt> statement:<pre> call $listAdd('Whatever')</pre> An implicit call is one where the $function invocation is the only thing in a statement:<pre> $listAdd('Whatever')</pre>  
The indicated $function as invoked as an explicit or implicit Call, but the $function is not [[Calling Sirius Mods $functions|callable]]. An explicit call is one where the $function name is preceded with the <tt>Call</tt> statement:
 
<p class="code">call $listAdd('Whatever')</p>  
<p>
An implicit call is one where the $function invocation is the only thing in a statement: </p>
<p class="code">$listAdd('Whatever')</p>  


See the individual function descriptions in M204wiki for details on which $functions are callable and which ones aren't. Note that the only non-Sirius $functions that are callable are <var>$Setg</var> and <var>$Delg</var>. Since $function callability was only introduced in [[Sirius Mods]] Version 6.5, not all $functions for which callability might make sense are defined as callable. If there are $functions which you feel would be useful to be callable but aren't currently, make this suggestion to [[Contacting Rocket Software Technical Support|Technical Support]].
See the individual function descriptions in M204wiki for details on which $functions are callable and which ones aren't. Note that the only non-Sirius $functions that are callable are <var>$Setg</var> and <var>$Delg</var>. Since $function callability was only introduced in [[Sirius Mods]] Version 6.5, not all $functions for which callability might make sense are defined as callable. If there are $functions which you feel would be useful to be callable but aren't currently, make this suggestion to [[Contacting Rocket Software Technical Support|Technical Support]].


[[Category:Sirius Mods messages]]
[[Category:Sirius Mods messages]]

Revision as of 00:43, 23 April 2014

The indicated $function as invoked as an explicit or implicit Call, but the $function is not callable. An explicit call is one where the $function name is preceded with the Call statement:

call $listAdd('Whatever')

An implicit call is one where the $function invocation is the only thing in a statement:

$listAdd('Whatever')

See the individual function descriptions in M204wiki for details on which $functions are callable and which ones aren't. Note that the only non-Sirius $functions that are callable are $Setg and $Delg. Since $function callability was only introduced in Sirius Mods Version 6.5, not all $functions for which callability might make sense are defined as callable. If there are $functions which you feel would be useful to be callable but aren't currently, make this suggestion to Technical Support.