irc /announce crashes my server
#1

Код:
irccmd_ann(conn, channel[], user[], message[])
{
	new tmp[256];
	tmp = zcmd(1, message);

	if(ircIsOp(conn, channel, user) == 0) return ircSay(conn, channel, "You are not a channel admin");
	if(strlen(tmp) == 0) return ircSay(conn, channel, "You did not put in a msg");

	new string[256];
	format(string, sizeof(string), "%s", message[6]);
	GameTextForAll(string, 5000, 3);
	return 1;
}
it seems to crash my server but i dont no y
Reply
#2

pawn Код:
irccmd_ann(conn, channel[], user[], params[])
{
    if(!strlen(params)) return ircSay(conn, channel, "You did not put in a msg");
    if(!ircIsOp(conn,channel,user)) return false;

new string[128];
    format(string, sizeof(string), "%s", params);
    GameTextForAll(string, 5000, 3);
  return 1;
}
Reply
#3

thanks man
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)