2020-11-12, 07:10 AM
I can't magically look into your computer and see what the exact code is. Anyway,
"error 025: function heading differs from prototype"
This means that a public function's arguments doesn't match it's arguments when it was forwarded. Eg.
That would throw that error, for example.
"error 021: symbol already defined: "JBC_GetPlayerSpeed""
JBC_GetPlayerSpeed is already defined.
"error 025: function heading differs from prototype"
This means that a public function's arguments doesn't match it's arguments when it was forwarded. Eg.
Code:
forward myPublicFunction(Foo);
public myPublicFunction(Foo, Bar)
{
return;
}
That would throw that error, for example.
"error 021: symbol already defined: "JBC_GetPlayerSpeed""
JBC_GetPlayerSpeed is already defined.