#7

Quote:
Originally Posted by Celson
Посмотреть сообщение
What are the errors saying?
errors:
Код:
D:\Games\Gta San Anreas Online\GodFucker\gamemodes\MyGameMode.pwn(1141) : error 076: syntax error in the expression, or invalid function call
pawn code:
Код:
if(strcmp(cmd, "/unmute", true) == 0)
{
	new tmp[256];
	tmp = strtok(cmdtext,idx);
	if(!strlen(tmp))
	{
	    SendClientMessage(playerid, COLOUR_ORANGE, "Usage: /unmute [playerid]");
	    return 1;
	}
	new id;
	id = strval(tmp);
	new playername[MAX_PLAYER_NAME];
	GetPlayerName(playerid, playername, sizeof(playername));
	new playername2[MAX_PLAYER_NAME];
	GetPlayerName(id, playername2, sizeof(playername2));
	new string[128];
	format(string, sizeof(string), "The admin %s unmuted you.", playername);
	SendClientMessage(playerid, COLOUR_YELLOW, string);
	KillTimer(Mute_Timer);
	format(string, sizeof(string), "You unmuted %s.", playername2);
	SendClientMessage(playerid, COLOUR_YELLOW, string);
	return 1;
}
line 1141:
Код:
KillTimer(Mute_Timer);
Reply


Messages In This Thread
mute - by omer5198 - 20.03.2011, 08:00
Re: mute - by antonio112 - 20.03.2011, 08:04
Re: mute - by kayle - 20.03.2011, 08:04
Re: mute - by Marricio - 20.03.2011, 08:13
Re: mute - by omer5198 - 20.03.2011, 08:31
Re: mute - by Celson - 20.03.2011, 08:36
Re: mute - by omer5198 - 20.03.2011, 09:12
Re: mute - by Davz*|*Criss - 20.03.2011, 10:08
Re: mute - by PinkFloydLover - 20.03.2011, 10:23

Forum Jump:


Users browsing this thread: 1 Guest(s)