03.02.2015, 05:48
Hello,
I'm having a little weird problem, I don't really know what's wrong, I saw someone said change the stock name.
I did it, nothing happened.
Here is the code:
I'm having a little weird problem, I don't really know what's wrong, I saw someone said change the stock name.
I did it, nothing happened.
Here is the code:
PHP код:
stock Float:GetPlayerPacketLossFromServer(playerid)
{
new stats[401], stringstats[70];
GetPlayerNetworkStats(playerid, stats, sizeof(stats));
new len = strfind(stats, "PacketLoss: ");
new Float:packetloss = 0.0;
if(len != -1)
{
strmid(stringstats, stats, len, strlen(stats));
new len = strfind(stats, "Packetloss: "); <<<<<<<Line
if(len != -1)
{
strdel(stats, 0, strlen(stats));
strmid(stringstats, stats, len, strlen(stats));
packetloss = floatstr(stats);
}
}
return packetloss;
}