Quote:
Originally Posted by SickAttack
That means nothing, you could go all capslock too. It's just the name.
_: is to detag something (remove tag)
|
Do not give random info if you have no idea about the question asked
https://sampforum.blast.hk/showthread.php?tid=318307
Yes, they do have a difference:
Quote:
Strong & Weak tags:
pawn Код:
enum E_STRONG //< Since the name starts with a capital letter, the tag is considered "Strong" { E_VAR = 64 };
main() { new Test = E_STRONG:E_VAR; //Will give you a warning: "tag mismatch" because "Test" doesn't have E_STRONG tag #pragma unused Test }
pawn Код:
enum e_WEAK //< And here it starts with small letter, so the enum creates a weak tag. { E_VAR = 64 };
main() { new Test = e_WEAK:E_VAR; //No warning... #pragma unused Test }
|
Quote:
Originally Posted by ALiScripter
Can somebody explain me...
KickTimer function
Код:
forward KickTimer(playerid);
public KickTimer(playerid)
{
if(playerid != INVALID_PLAYER_ID) Kick(playerid);
return 1;
}
|
Idk if that seems to be the origin but by the looks of it you are passing yet another parameter to KickTimer, you should fix that.
You should consider re-compiling your code with debug lvl 3 (-d3) when testing your code.
Also I assume this is a linux server? if yes there's a tutorial on how to get more meaningful crash reports.