下面是引用 岳岳 於 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) }