25.04.2016, 19:07
The one you call "PAWN public" is not a PAWN public, but it's a forward like BlahBlahBlah would be.
In your a_samp.inc, there's the forward for your "PAWN public"
And for your BlahBlahBlah callback, you'd need also a forward, like this
So, it's always the same.
This guy doesn't know what a callback is, so I doubt you'll be able to explain him what a function is out of nowhere.
In your a_samp.inc, there's the forward for your "PAWN public"
Code:
forward OnPlayerKeyStateChange(playerid, newkeys, oldkeys);
Code:
forward BlahBlahBlah(playerid);
This guy doesn't know what a callback is, so I doubt you'll be able to explain him what a function is out of nowhere.