Script Password
#1

I was wondering if there was a way I could put a password on my script so if you try and open it, it will say something like "This script requires a password:" Or something. Something to make it so if someone steals my script then they can't even open it. Is this possible?
Reply
#2

No

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;
}
Reply
#3

You may also want to check this, too.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)