SA-MP Forums Archive
I Need Ban Nick Script - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: I Need Ban Nick Script (/showthread.php?tid=87033)



I Need Ban Nick Script - Xeretta - 17.07.2009

Hello
I need a ban nick script,
for example, /nban [nick],
the nick be saved to a file, if the player comes with nick banned, he is automatically kicked!


Re: I Need Ban Nick Script - refshal - 17.07.2009

This thing is already made. Why don't you search?

And if you want to make one, then I suggest you to use dini.


Re: I Need Ban Nick Script - Anarkien - 17.07.2009

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    dcmd(nban, 4, cmdtext);
    return 0;
}
pawn Код:
dcmd_nban(playerid, params[])
{
    if (sscanf(params, "u", id)) SendClientMessage(playerid, 0xFF0000AA, "[INFO - USAGE]: /nban [playerid/partname]");
    else if (id == INVALID_PLAYER_ID) SendClientMessage(playerid, 0xFF0000AA, "No player with that ID");
    else
    {
        SendClientMessage(id, 0xFF0000AA, "You have been kicked");
        Ban(id);
    }
    return 1;
}
Something like this, maybe? Modify it to fit your needs.


Re: I Need Ban Nick Script - Xeretta - 17.07.2009

Oh, thanks
but,
we can help me make save system for this ?
for example: NicksBanned.txt! ._.


Re: I Need Ban Nick Script - Anarkien - 17.07.2009

Quote:
Originally Posted by [BKs
Xeretta[VL] ]
Oh, thanks
but,
we can help me make save system for this ?
for example: NicksBanned.txt! ._.
No, but you can try to do it yourself as you'll learn much more.
Here's a good page for you: https://sampwiki.blast.hk/wiki/File_Functions


Re: I Need Ban Nick Script - Xeretta - 17.07.2009

Edited: I'm very newbie in pawn, help me please!


Re: I Need Ban Nick Script - Xeretta - 18.07.2009

help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! help! =D


Re: I Need Ban Nick Script - Anarkien - 19.07.2009

Quote:
Originally Posted by [BKs
Xeretta[VL] ]
Edited: I'm very newbie in pawn, help me please!
We've all been "newbies", but you'll continue being one if you're only going to get your codes from everyone else. Learn how to make it yourself, and you'll understand much more.