05.05.2011, 09:20
Please wait for people to reply themselfs, we got our own lifes aswell you know..
But uhh, it could be that they will be banned, but you can fixed it easily.. Just use sample
But uhh, it could be that they will be banned, but you can fixed it easily.. Just use sample
pawn Код:
new IsUsingCheatCMD[MAX_PLAYERS]
CMD:getjetpack(playerid,params[])
{
if(IsUsingCheatCMD[playerid] == 0)
{
bla bla bla for making jetpack etc.
IsUsingCheatCMD = 1;
}
else if(IsUsingCheatCMD[playerid] == 1)
{
SendClientMessage(playerid, COLOR_RED, "You can only use 1 cheatcmd at a time")
}
return 1;
}
public AutoCheaterBan()
{
if(IsUsingCheatCMD[playerid] == 0)
{
bla bla for banning users who hack without a cheatcmd
}
}