Quote:error 021: symbol already defined: "JBC_GetPlayerSpeed"
Quote:JBC_GetPlayerSpeed is already defined.
Quote:I think it was because that part was already defined in the JunkBuster includeWhat a good guess :P. That error means a symbol (eg. a function or variable) was already declared (created).
The "function heading differs from prototype" occured because they weren't declared in the same way in this case. This code would produce the same errors:
Code:
Foo(a)
{
return a;
}
Foo(b)
{
return b;
}
If you're using pawno and not vscode I suggest (strongly recommend) using vscode. You could've find out way earlier by opening your includes directory and searching for "JBC_GetPlayerSpeed".
Also make sure it's actually safe to remove it from that include. You should report that as an issue aswell (if it's on Github, submit an issue there).