sscanf /radio
#1

Im busy with my 28 days later gamemode and my radio command gives this error:
Код:
C:\Documents and Settings\Corne\Bureaublad\Vandex Servers\server4\gamemodes\28dl.pwn(189) : error 017: undefined symbol "sscanf"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
This is the command:
Код:
dcmd_radio(playerid, params[])
{
	new rtext[240], rand1, rand2;
	if (sscanf(params, "z", rtext))
	{
		return SendClientMessage(playerid, COLOR_WHITE, " USAGE: /radio <text>");
	}
    GetPlayerName(playerid, pName, sizeof(pName));
    
    rand1 = random(10+0);
    rand2 = random(10+0);
    
	if(PlayerInfo[playerid][pInfected] == 0 && PlayerInfo[playerid][pRadio] == 1)
	{
	    if(rand1 < 4 && rand2 > 6)
	    {
			for(new i = 0; i < MAX_PLAYERS; i++)
			{
				if(PlayerInfo[i][pInfected] == 0)
				{
					format(nstring, sizeof(nstring), "[RADIO] %s: %s", pName, rtext);
 					SendClientMessage(i, COLOR_YELLOW, nstring);
				}
			}
  		} else {
			SendClientMessage(playerid, COLOR_YELLOW, "You`re radio didnt found connection");
		}
	} else {
		SendClientMessage(playerid, COLOR_YELLOW, "You are infected or You dont have a radio!");
	}
	return 1;
}
I have sscanf. I do not see the problem why i get that error.
Anyone see why?
Reply


Messages In This Thread
sscanf /radio - by corne - 24.11.2010, 19:04
Re: sscanf /radio - by Zh3r0 - 24.11.2010, 19:20
Re: sscanf /radio - by Ash. - 24.11.2010, 19:20
Re: sscanf /radio - by willsuckformoney - 24.11.2010, 19:22
Re: sscanf /radio - by corne - 24.11.2010, 19:27

Forum Jump:


Users browsing this thread: 3 Guest(s)