Resource:CallingFunctions: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 9: Line 9:


==Calling Functions==
==Calling Functions==
<section name="callSF" class="server" show="true">
<section name="callSF" class="client" show="true">
<syntaxhighlight lang="lua"> void exports.callingFunctions:callSF( string funcname, [ var arg1, ... ] ) </syntaxhighlight>
<syntaxhighlight lang="lua"> void exports.callingFunctions:callSF( string funcname, [ var arg1, ... ] ) </syntaxhighlight>
=Required=
=Required=
Line 19: Line 19:
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
<section name="callCF" class="client" show="true">
<section name="callCF" class="server" show="true">
<syntaxhighlight lang="lua"> void exports.callingFunctions:callCF( client Client, string funcname, [ var arg1, ... ] ) </syntaxhighlight>
<syntaxhighlight lang="lua"> void exports.callingFunctions:callCF( client Client, string funcname, [ var arg1, ... ] ) </syntaxhighlight>
=Required=
=Required=

Revision as of 05:36, 23 May 2012

Accessories-text-editor.png Script Example Missing Function Resource:CallingFunctions needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


This resource was made off of the functions: CallClientFunction and CallServerFunction

Calling Functions

Click to collapse [-]
callSF
 void exports.callingFunctions:callSF( string funcname, [ var arg1, ... ] ) 

Required

  • funcname: The name of the function that should be called serverside. May also be a function in a table, e.g. "math.round".

Optional

  • agr1-argn: The arguments that should be passed to the function.

Example


Click to collapse [-]
callCF
 void exports.callingFunctions:callCF( client Client, string funcname, [ var arg1, ... ] ) 

Required

  • Client: The element of the player who should be affected.
  • funcname: The name of the function that should be called serverside. May also be a function in a table, e.g. "math.round".

Optional

  • agr1-argn: The arguments that should be passed to the function.

Example


I give all thanks to Neon Black for making these functions.

See Also