24.11.2010, 19:04
Im busy with my 28 days later gamemode and my radio command gives this error:
This is the command:
I have sscanf. I do not see the problem why i get that error.
Anyone see why?
Код:
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.
Код:
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; }
Anyone see why?