any have ip+countryFS?
#1

hi friends.
my friend have server and im head admin there
he need FS for his server.
i mean when players join th server like
Код:
STar. has joined the server country:... ip: 127.0.0.1
Reply
#2

Use GeoIP plugin+include.
In that script it's able to do
Reply
#3

can u give me download link?
Reply
#4

https://sampforum.blast.hk/showthread.php?tid=190699
Reply
#5

Shivkat, there is to do something can u make for me?
package in linux
please
Reply
#6

Quote:
Originally Posted by Star.
Посмотреть сообщение
Shivkat, there is to do something can u make for me?
package in linux
please
what do you what will i get what lunix
confused , plzz be specific or better of pm me
Reply
#7

For IP,
You can use the function GetPlayerIP.
Example
pawn Код:
CMD:myip(playerid,params[])
{
   new pIp;
   GetPlayerIP(playerid,pIp,sizeof(pIp));
   SendClientMessage(playerid, 0xFF0000, "You're IP is %i", pIp);
   return 1;
}
Reply
#8

no no xb
i need complete when players joining need that system
Reply
#9

Here:
pawn Код:
public OnPlayerConnect(playerid)
{
   new Lname[MAX_PLAYER_NAME];
   new string;
   new pIP;
   GetPlayerName(playerid,Lname,sizeof(Lname));
   GetPlayerIP(playerid,pIP,sizeof(pIP));
   format(string,sizeof(string),"%s(ID:%d) has joined the server|IP:%i", Lname, playerid, pIP);
   SendClientMessageToAll(0xC4C4C4FF, string);
   return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)