26.02.2012, 08:53
So, I need help makin the [REASON: %s ] work. Btw, this is from NAdmin. Thanks to Notis for this system! Love it! 
Heres the ban code:

Heres the ban code:
pawn Код:
COMMAND:ban(playerid, params[])
{
new id;
if(IsPlayerConnected(id))
{
if(PlayerInfo[playerid][AdminLevel] >= 1)
{
if(!sscanf(params, "u", id))
{
new string[900],reason[300];
format(file,sizeof(file),"/Data/users/%s.ini",id);
new name[MAX_PLAYER_NAME], PlayerName[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
GetPlayerName(id, PlayerName, sizeof(PlayerName));
format(string, sizeof(string), " [[ < YOU HAVE BEEN BANNED BY ADMIN %s ! [REASON: %s ]", name,reason);
SendClientMessage(id, COLOR_RED, string);
dini_IntSet(file,"Banned",1);
format(string, sizeof(string), "You banned %s for %s", id,reason);
SendClientMessage(playerid,COLOR_WHITE, string);
format(string, sizeof(string), "Administrator %s banned %s for %s",name,id,reason);
SendClientMessageToAll(COLOR_WHITE, string);
BanEx(id,reason);
return 1;