03.02.2015, 05:58
It has nothing to do with the stock name.
You define the same thing twice, remove one of them.
pawn Код:
new len = strfind(stats, "PacketLoss: "); // Defined "len"
new Float:packetloss = 0.0;
if(len != -1)
{
strmid(stringstats, stats, len, strlen(stats));
new len = strfind(stats, "Packetloss: "); // You define it again, confusing the script