CoSmiN 31 Posted March 2, 2019 Descriere: Acest jucator printeaza in chat de unde se conecteaza jucatorul. Download: #include < sourcemod > #include < geoip > #pragma tabsize 0 public Plugin:myinfo = { name = "Join Message", author = "LondoN eXtream", description = "Arata tara de unde se conecteaza", version = "0.1", url = "http://www.extreamcs.com/forum" }; public OnClientPutInServer(Player) { new String:szName[32], String:szIP[32], String:szCountry[32]; GetClientName(Player, szName, sizeof(szName)); GetClientIP(Player, szIP, sizeof(szIP), true); GeoipCountry(szIP, szCountry, sizeof(szCountry)); PrintToChatAll("\x04[eXtreamCS.Com]\x03 Player\x04 %s\x03 joined from [\x04%s\x03]", szName, StrEqual(szCountry, "error") ? "N/A": szCountry); } [/sursa] Sunt incepator ? [/quote] Share this post Link to post Share on other sites More sharing options...