Anlamadım? istediğin şey client_connect olayında ip kontrolu mü ?
Ayırca bkz: https://www.csplague.com/plugin-cs-1...i-kararir.html
 maç server plugin istek
 maç server plugin istek Mesela karşıya bi takım çektik diyelim. Aynı ip yi kullanan oyuncular aşagıda yazsın mesela. Ben oyundayım karşıya takım çektim adamlar oyuna girince xx Oyuna girdi . XX oyuna girdi diye adamların isimleri aşagıda yazsın. Eğer aynı ip yi kullanan 2 oyuncu varsa yada daha fazla. xx ve xx aynı IP den giris yapıyorlar şeklinde bi uyarı versin. Yapilabilir mi
MSN :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
WEBSİTE :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
color="Red">FACEBOOK :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
color="#ff0000">-MatchArena.NET-
Güvenli ve hızlı steam satışında doğru adres!
 
  
   
    
   Cevap: maç server plugin istek
 Cevap: maç server plugin istek Anlamadım? istediğin şey client_connect olayında ip kontrolu mü ?
Ayırca bkz: https://www.csplague.com/plugin-cs-1...i-kararir.html
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
CS:GO ve CS 1.6 için ücretli eklenti yapılır.
Plugin yazmak isteyenlere yardımcı olabilirim.
Skype adresimden ulaşabilirsiniz: destek_596
Steam: http://steamcommunity.com/id/ca-nemesis/
 Cevap: maç server plugin istek
 Cevap: maç server plugin istek Yok yok bu değil. mesela ben serverdayım. oyuna birisi girince xxx oyuna girdi yazsın altta. Ve oyuna giren kişilerden 2 kişi yada daha fazla kişi aynı ip üzerinden giriyolarsa xxx ve xxx aynı IP üzerinden giris yaptilar seklinde bi seferlik uyari yapsin.
MSN :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
WEBSİTE :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
color="Red">FACEBOOK :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
color="#ff0000">-MatchArena.NET-
Güvenli ve hızlı steam satışında doğru adres!
 
  
   
    
   Cevap: maç server plugin istek
 Cevap: maç server plugin istek Dene bakalım.PHP- Kodu:/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
// Add your code here...
}
public client_connect(id) {
new ip[32],name[32];
get_user_name(id,name,31)
get_user_ip(id,ip,31,0)
check_ip_adress(ip,name)
}
check_ip_adress(ip[32],name[32]) {
new ip2[32],name2[32];
new players[32],inum;
get_players(players,inum)
new tempid;
for(new i=0;i<inum;i++) {
tempid = players[i];
get_user_ip(tempid,ip2,31,0)
get_user_name(tempid,name2,31)
if(equali(name,name2)) {
return;
}
if(equal(ip,ip2)) {
client_print(0,print_chat,"[IP TESPIT] Oyuna Baglanan %s Adli Oyuncunun IP Adresi ile %s Adli Oyuncunun IP Adresi Ayni ! [%s]",name,name2,ip)
break;
}
}
}
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
CS:GO ve CS 1.6 için ücretli eklenti yapılır.
Plugin yazmak isteyenlere yardımcı olabilirim.
Skype adresimden ulaşabilirsiniz: destek_596
Steam: http://steamcommunity.com/id/ca-nemesis/
 Cevap: maç server plugin istek
 Cevap: maç server plugin istek bunu deniyecem birazdan birde oyuncular oyuna girince say den xx oyuna girdi diye bi yazı yazmasını istiyordum.
MSN :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
WEBSİTE :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
color="Red">FACEBOOK :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
color="#ff0000">-MatchArena.NET-
Güvenli ve hızlı steam satışında doğru adres!
 
  
   
    
   Cevap: maç server plugin istek
 Cevap: maç server plugin istek Çözülmüş İsteklere taşındı.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
CS:GO ve CS 1.6 için ücretli eklenti yapılır.
Plugin yazmak isteyenlere yardımcı olabilirim.
Skype adresimden ulaşabilirsiniz: destek_596
Steam: http://steamcommunity.com/id/ca-nemesis/