13.02.2011, 15:09
hello,
no matter which command I use, and I write many letters it will not show the whole thing
example the admin chat
I write this: "gasgjasgsasgjasgasghajgagasjgajgjashgahgsagasgjas gajjasjhasghsgjhasjhajhajhasgjh"
and it will only show this: "gasgjasgsasgjasgasghajgagasjgajgjashg"
its same with ban reason, kick reason .. also it says. sscanf warning: string overblow or something
here is my admin chat
no matter which command I use, and I write many letters it will not show the whole thing
example the admin chat
I write this: "gasgjasgsasgjasgasghajgagasjgajgjashgahgsagasgjas gajjasjhasghsgjhasjhajhajhasgjh"
and it will only show this: "gasgjasgsasgjasgasghajgagasjgajgjashg"
its same with ban reason, kick reason .. also it says. sscanf warning: string overblow or something
here is my admin chat
pawn Код:
COMMAND:a(playerid, params[])
{
if(!PLVL[playerid]) return 0;
if(PlayerInfo[playerid][pAdminLevel] < 1) return false;
if(sscanf(params, "s", params[0])) return SendClientMessage(playerid, Yellow, "Usage: /a <message>");
new name[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "Level: %d | Admin %s: %s", PlayerInfo[playerid][pAdminLevel], name, params);
MessageToAdmins(AdminColor, string);
return 1;
}