Kullanıcı Tag Listesi

5 sonuçtan 1 ile 5 arası
  1. #1
    onbasi er xLdeJavu - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Oct 2013
    Mesajlar
    134
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    11

    Standart Ozel Mesaj Plugini

    Selamun aleykum. Simdi aklima soyle birsey geldi eger pluginci arkadasların elinden gelirse cok iyi olur.

    Fikir şu: Serverlardaki admin ve slotlara serverdaki yonetıcıler tarafından cezayi işlem uygulandıgında bu gibi cezalardan dogrudan haberi olmalari icin servera ilk girislerinde ekranın ortasında HUD mesaji ile "Ozel mesajiniz var!" diye bir yazı geçecek. O mesajida sadece server yoneticileri atabilecek admin veya slot ise /mesajlarim yazarak kendisine dogrudan bir mesaj bırakılıp bırakılmadıgını kontrol edebilecek. Eger mesaj yoksa "Ozel bir mesajiniz yok." diye bir yazı gececek saydan burdaki amaç; Yoneticiler adminlerine veya slotlarına ceza işlemi uyguladıklarında kişilerin hangi sebebten kac gun ceza yediklerinden haberdar olmaları ve bu mesajı panelden ozel bir .txt dosyasıyla duzenlenebilme olanagı olsun. Mesela ben "asd" nickli adama bir ozel mesaj iletmek istiyorum servera girisinde gorsun diye. En basitinden ornek vermek gerekirse....

    "oyuncunun nicki" "burayada o kişiye iletilecek mesaj yazilsin"

    yukardaki şekildeki gibi eğer pluginci arkadaslardan boyle bir plugini yapma şansları varsa sevinirim tesekkurler okudugunuz icin kolay gelsin...
    CS 1.6 TR 1.Sİ DEATHRUN Server IP: | 95.173.172.7 |RsT # DEATHRUN -
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    Server IP: 95.173.172.7 & dr.rstgaming.netWeb:
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  2. #2
    Nemesis* coadmin akcaliberkk - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jun 2012
    Yer
    İstanbul
    Mesajlar
    2.027
    Bahsedildi
    105 Mesaj
    Etiketlenmiş
    10 Konu
    Tecrübe Puanı
    10

    Standart Cevap: Ozel Mesaj Plugini

    PHP- Kodu:
    /* Plugin generated by AMXX-Studio */

    #include <amxmodx>
    #include <amxmisc>

    #define PLUGIN "Ozel Mesaj TXT"
    #define VERSION "1.0"
    #define AUTHOR "akcaliberkk"

    #define TASK_HUD  8765

    new file[] = "addons/amxmodx/configs/mesajlar.txt";
    new 
    bool:gChecked[33];

    public 
    plugin_init() {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
        
    register_clcmd("say /mesajlarim","ShowMessage");
    }
    public 
    ShowMessage(id) {
        
    gChecked[id] = true;
        
        new 
    message[200],bool:newmessage;
        new 
    bool:has has_user_message(id,message,charsmax(message),newmessage);
        if(!
    has) {
            
    ColorChat(id,"^3[Ozel Mesaj] ^4Ozel mesajiniz bulunmamaktadir.");
            return 
    PLUGIN_HANDLED
        
    }
        if(!
    newmessage) {
            
    ColorChat(id,"^3[Ozel Mesaj] ^4Bir okunmus mesaj bulundu:");
            
    ColorChat(id,"^3*** ^4%s",message);
            return 
    PLUGIN_HANDLED
        
    }
        
    ColorChat(id,"^3[Ozel Mesaj] ^4Bir okunmamis mesaj bulundu:");
        
    ColorChat(id,"^3*** ^4%s",message);
        
    set_read(id);
        return 
    PLUGIN_HANDLED
    }

    public 
    client_putinserver(id) {
        
    gChecked[id] = false;
        new 
    message[200], bool:newmessage;
        if(
    has_user_message(id,message,charsmax(message),newmessage)) {
            if(
    newmessage) {
                
    set_task(5.0,"ShowHud",id+TASK_HUD);
            }
        }
    }
    public 
    ShowHud(id) {
        
    id-=TASK_HUD;
        if(!
    is_user_connected(id)) return PLUGIN_HANDLED
        
        set_hudmessage
    (025542, -1.0, -1.001.01.0)
        
    show_hudmessage(id"Adiniza Kayitli^n Okunmamis Ozel Mesajiniz Bulunuyor^nKontrol Etmek Icin:^n^n/mesajlarim Yaziniz.")
        if(!
    gChecked[id]) set_task(1.0,"ShowHud",id+TASK_HUD);
        
        return 
    PLUGIN_HANDLED
    }
    stock set_read(id) {
        new 
    =fopen(file,"a+");
        new 
    tempfile[] = "addons/amxmodx/configs/a123temp.txt";
        new 
    tf fopen(tempfile,"a+");
        
        new 
    name[32];
        
    get_user_name(id,name,31);
        new 
    buffer[256];
        new 
    szName[32], szMessage[200], szCheck[6];
        
        while(
    fgets(f,buffer,charsmax(buffer))) {
            
    parse(buffer,szName,charsmax(szName),szMessage,charsmax(szMessage),szCheck,charsmax(szCheck));
            if(!
    equali(szName,name)) {
                
    fprintf(tf,"%s",buffer);
                } else {
                
    fprintf(tf,"^"%s^" ^"%s^" ^"1^"^n",szName,szMessage)
            }
        }
        
    fclose(f)
        
    fclose(tf)
        
    delete_file(file);
        
    rename_file(tempfile,file,1);
        
    }
    stock bool:has_user_message(idmessage[],msglen, &bool:newmessage) {
        new 
    fopen(file,"rt");
        
        new 
    name[32];
        
    get_user_name(id,name,31);
        
    newmessage false;
        
        new 
    buffer[256];
        new 
    szName[32], szMessage[200], szCheck[6];
        new 
    check;
        while(
    fgets(f,buffer,charsmax(buffer))) {
            
    parse(buffer,szName,charsmax(szName),szMessage,charsmax(szMessage),szCheck,charsmax(szCheck))
            
    check str_to_num(szCheck);
            if(
    equali(szName,name)) {
                if(!
    checknewmessage true;
                
    copy(message,msglen,szMessage);
                
    fclose(f);
                return 
    true;
            }
        }
        
    fclose(f);
        return 
    false;
    }
    stock ColorChat(const id, const string[], {FloatSqlResul,_}:...) { 
        new 
    msg[191], players[32], count 1
        
        static 
    len
        
    len formatex(msgcharsmax(msg), "^x01" ); 
        
    vformat(msg[len], charsmax(msg) - lenstring3); 
        
        if(
    id)players[0] = id
        else 
    get_players(players,count,"ch"); 
        
        for (new 
    0counti++){ 
            
            if(
    is_user_connected(players[i])){ 
                
                
    message_begin(MSG_ONE_UNRELIABLEget_user_msgid("SayText"),_players[i]); 
                
    write_byte(players[i]); 
                
    write_string(msg); 
                
    message_end(); 
            } 
        } 
        return; 

    configs klasörüne mesajlar.txt dosyasını oluşturun.

    Yazılışı:

    "hedef isim" "gönderilecek mesaj" "0"

    "0" ı koymayı unutmayın. Eğer "0", "1" e dönüşürse, bu hedef kişinin mesajı okuduğu anlamına gelir.

    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/


  3. #3
    onbasi er xLdeJavu - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Oct 2013
    Mesajlar
    134
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    11

    Standart Cevap: Ozel Mesaj Plugini

    Tesekkurler kardeşim eline sağlık.
    CS 1.6 TR 1.Sİ DEATHRUN Server IP: | 95.173.172.7 |RsT # DEATHRUN -
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    Server IP: 95.173.172.7 & dr.rstgaming.netWeb:
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  4. #4
    er er
    Üyelik tarihi
    Dec 2014
    Mesajlar
    16
    Bahsedildi
    2 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: Ozel Mesaj Plugini

    Ct ye oto silah verme plugini istiyorum

  5. #5
    onbasi er
    Üyelik tarihi
    Jan 2015
    Yer
    İstanbul
    Mesajlar
    65
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    10

    Standart Cevap: Ozel Mesaj Plugini

    Sağol eline sağlık

Benzer Konular

  1. !!! OzeL Admin Aim Plugini !!!
    By SaLtuk in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 28
    Son Mesaj: 08-10-17, 02:05
  2. Ozel id ban plugini - Satilik
    By ahmetberkay in forum Sohbet / Geyik
    Cevaplar: 3
    Son Mesaj: 03-12-13, 19:25

Kullanıcıların arama motorlarındaki kullandığı taglar:

Counter Strike 1.6 Cfg, plugin, eklenti, sxe, config, skin, setup
Counter Strike

Bu Konudaki Etiketler

Yetkileriniz

  • Konu Acma Yetkiniz Yok
  • Cevap Yazma Yetkiniz Yok
  • Eklenti Yükleme Yetkiniz Yok
  • Mesajınızı Değiştirme Yetkiniz Yok
  •  

SEO by vBSEO 3.6.0 ©2011, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121