31.07.2017, 09:54
You're using CallRemoteFunction with incorrect parameters.
https://sampwiki.blast.hk/wiki/CallRemoteFunction
Example Usage:
https://sampwiki.blast.hk/wiki/CallRemoteFunction
Example Usage:
PHP код:
forward CallMe(number, const string[]);
public CallMe(number, const string[])
{
printf("CallMe called. Int: %i String: %s.", number, string);
return 1;
}
// Somewhere... in another file perhaps?
CallRemoteFunction("CallMe", "is", 69, "this is a string");