28.08.2009, 07:01
No
But you can use this piece of code, so people who steal your amx file can't decompile it with Deamx
But you can use this piece of code, so people who steal your amx file can't decompile it with Deamx
pawn Код:
AntiDeAMX()
{
new a[][] =
{
"Unarmed (Fist)",
"Brass K"
};
#pragma unused a
}
pawn Код:
public OnGameModeInit()
{
AntiDeAMX(); ///can be put in any callback
return 0;
}