CallLocalFunction
From SA-MP Wiki
CallLocalFunction
Calls a public function from the script in which it is used.
(const function[], const format[], {Float,_}:...)
| function[] | Public function's name. |
| format[] | Tag/format of each variable |
| {Float,_}:... | 'Indefinite' number of arguments of any tag |
| Returns | The value that the only public function returned. |
Format Strings
| Placeholder | Meaning |
|---|---|
| c | Inserts a single character. |
| d, i | Inserts an integer (whole) number |
| x | Inserts a number in hexadecimal notation. |
| f | Inserts a floating point number. |
| s | Inserts a string. |
The values for the placeholders follow in the exact same order as parameters in the call.
forward callMe(const string[]); public callMe(const string[]) { printf("callMe> %s", string); return 1; } CallRemoteFunction("callMe", "s", "OHAI THAR BAGPUSS!!11");
Related Functions
The following functions might be useful as well, as they're related to this function in one way or another.
- CallRemoteFunction: Call a function in every loaded script.
