29.03.2015, 21:01
So, I just randomly wanted to make a /getping CMD. But when I type IG, /getip I get this lol
[spoiler][/spoiler]
This is the code :
NOTE: I don't want it in /getping [ID], yet. Just want to get my ping first.
[spoiler][/spoiler]
This is the code :
PHP код:
CMD:getping(playerid, params[])
{
new targetplayer;
if(IsPlayerAdmin(playerid))
{
if(sscanf(params, "i", targetplayer))
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Players ping is %i");
GetPlayerPing(playerid);
}
else
{
SendClientMessage(playerid, -1, "SERVER: Unknown command.");
}
return 1;
}