10.08.2013, 19:28
I've been using the tutorial "How to implement RP chat" and I got these errors.
Lines:
Код:
G:\Roleplay Server\pawno\include\sscanf2.inc(69) : warning 235: public function lacks forward declaration (symbol "OnNPCModeInit") G:\Roleplay Server\gamemodes\rp.pwn(222) : error 025: function heading differs from prototype G:\Roleplay Server\gamemodes\rp.pwn(223) : error 021: symbol already defined: "strreplace" G:\Roleplay Server\gamemodes\rp.pwn(231) : warning 209: function "strreplace" should return a value G:\Roleplay Server\gamemodes\rp.pwn(238) : error 035: argument type mismatch (argument 2) G:\Roleplay Server\gamemodes\rp.pwn(643) : warning 203: symbol is never used: "IsNumeric" G:\Roleplay Server\gamemodes\rp.pwn(643) : warning 203: symbol is never used: "ReturnUser" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 3 Errors.
Код:
//-----Stocks------
stock strreplace(string[], find, replace)
{
for(new i=0; string[i]; i++)
{
if(string[i] == find)
{
string[i] = replace;
}
}
}
stock GetName(playerid)
{
new
name[24];
GetPlayerName(playerid, name, sizeof(name));
strreplace(name, '_', ' ');
return name;
}
stock ProxDetector(Float:radi, playerid, string[],color)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid,x,y,z);
foreach(Player,i)
{
if(IsPlayerInRangeOfPoint(i,radi,x,y,z))
{
SendClientMessage(i,color,string);
}
}
}


