new
string[128],
Name[128]
;
GetPlayerName(playerid,Name,sizeof(Name));
format(string, sizeof(string), "7[SPAWN] %s(%d) Has Spawned",Name,playerid);
IRC_GroupSay(gGroupID, IRC_CHANNEL,string);
By reading the errors given above line 13527, "Name" symbol has been declared as global variable. I couldn't reproduce the argument type mismatch error by renaming the variable's name (in line 13525) to something else will most likely fix it.
|