|
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
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
void exports.callingFunctions:callCF( 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