下面是引用 岳岳 于 2014-01-28 11:58 发表的 : 如果只是单纯的显示进房玩家IP的话版上插件区或版上的AMXX都有这插件
/* Returns ip. */ native get_user_ip(index,ip[],len, without_port = 0);
下面是引用 a7811311622 于 2014-01-28 12:43 发表的 : <amxmodx>里就有的东西有啥好问的…复制程式 /* Returns ip. */ native get_user_ip(index,ip[],len, without_port = 0);
下面是引用 11922911 于 2014-02-03 18:01 发表的 : dropped from server 是当玩家离线时显示, 所以你可以用AMXX弄一个离线LOG.如果没记错版上己有类似的插件, 把连接/离线的玩家资料记录到LOG档案.
public client_putinserver(id) { new szIP[40]; get_user_ip ( id, szIP, charsmax(szIP) , 1 ); // Get player's IP client_print(0, print_console, "%s", szIP) }