Kullanıcı Tag Listesi

8 sonuçtan 1 ile 8 arası

Hybrid View

  1. #1
    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: Plugin Ufak Ayarlar

    PHP- Kodu:
    /*
    This is a simple plugin I made that will just restart a players score
    making their deaths and kills set to 0, this is to help players out a
    little bit because they no longer have to reconnect or retry if they
    want their score to start over, they can just type a simple command

    ---------------------------------
    --------- MADE BY SILENTTT -----
    ------ MADE BY SILENTTT ------
    --  MADE BY SILENTTT -------
    ------ MADE BY SILENTTT ------
    --------- MADE BY SILENTTT -----
    ---------------------------------
    */
    #include <amxmodx>
    #include <amxmisc>
    #include <cstrike>
    #include <fun>
    #define adtime  300.0 //Default of 10 minuites

    new pcvar_Display
    public plugin_init()
    {
        
    register_plugin("Reset Score""1.0""Silenttt")
        
        
    //You may type /reset or /rr
        
    register_clcmd("say /reset""reset_score")
        
    register_clcmd("say /rr""reset_score")
        
        
    //This command by default is also 0
        //Change it to 1 in server.cfg if you want
        //It to show who reset their scores when they do it
        
    pcvar_Display register_cvar("sv_rsdisplay""0")
        
    }
    public 
    reset_score(id)
    {
        
    //These both NEED to be done twice, otherwise your frags wont
        //until the next round
        
    cs_set_user_deaths(id0)
        
    set_user_frags(id0)
        
    cs_set_user_deaths(id0)
        
    set_user_frags(id0)
        
        if(
    get_pcvar_num(pcvar_Display) == 1)
        {
            new 
    name[33]
            
    get_user_name(idname32)
            
    chat_color(0"!t[ ~ NiCoMeDiA ~ ] !y--> %s !gScorunu Sifirladi ..!"name)
        }
        else
        {
            
    chat_color(id"!t[ ~ NiCoMeDiA ~ ] !y--> !gScorunu Sifirladin ..!")
        }
    }
    public 
    connectmessage(id)
    {
        if(
    is_user_connected(id))
        {
            
    client_print(idprint_chat"[ ~ NiCoMeDiA ~ ] --> /reset veya /rr Yazarak Scorunu Sifirliyabilirsin ..!)")
        }
    }
    stock chat_color(const id, const input[], any:...) 
    {
        new 
    count 1players[32]
        static 
    msg[191]
        
    vformat(msg190input3)
        
        
    replace_all(msg190"!g""^4")
        
    replace_all(msg190"!y""^1")
        
    replace_all(msg190"!t""^3")
        
    replace_all(msg190"!team2""^0")
        
        if (
    idplayers[0] = id
        
    else get_players(playerscount"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();
            }
        }
        

    Yazı kaldırıldı.

    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/


  2. #2
    onbasi er
    Üyelik tarihi
    May 2013
    Yer
    Bursa
    Mesajlar
    145
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart Cevap: Plugin Ufak Ayarlar

    Alıntı akcaliberkk Nickli Üyeden Alıntı Mesajı göster
    PHP- Kodu:
    /*
    This is a simple plugin I made that will just restart a players score
    making their deaths and kills set to 0, this is to help players out a
    little bit because they no longer have to reconnect or retry if they
    want their score to start over, they can just type a simple command

    ---------------------------------
    --------- MADE BY SILENTTT -----
    ------ MADE BY SILENTTT ------
    --  MADE BY SILENTTT -------
    ------ MADE BY SILENTTT ------
    --------- MADE BY SILENTTT -----
    ---------------------------------
    */
    #include <amxmodx>
    #include <amxmisc>
    #include <cstrike>
    #include <fun>
    #define adtime  300.0 //Default of 10 minuites

    new pcvar_Display
    public plugin_init()
    {
        
    register_plugin("Reset Score""1.0""Silenttt")
        
        
    //You may type /reset or /rr
        
    register_clcmd("say /reset""reset_score")
        
    register_clcmd("say /rr""reset_score")
        
        
    //This command by default is also 0
        //Change it to 1 in server.cfg if you want
        //It to show who reset their scores when they do it
        
    pcvar_Display register_cvar("sv_rsdisplay""0")
        
    }
    public 
    reset_score(id)
    {
        
    //These both NEED to be done twice, otherwise your frags wont
        //until the next round
        
    cs_set_user_deaths(id0)
        
    set_user_frags(id0)
        
    cs_set_user_deaths(id0)
        
    set_user_frags(id0)
        
        if(
    get_pcvar_num(pcvar_Display) == 1)
        {
            new 
    name[33]
            
    get_user_name(idname32)
            
    chat_color(0"!t[ ~ NiCoMeDiA ~ ] !y--> %s !gScorunu Sifirladi ..!"name)
        }
        else
        {
            
    chat_color(id"!t[ ~ NiCoMeDiA ~ ] !y--> !gScorunu Sifirladin ..!")
        }
    }
    public 
    connectmessage(id)
    {
        if(
    is_user_connected(id))
        {
            
    client_print(idprint_chat"[ ~ NiCoMeDiA ~ ] --> /reset veya /rr Yazarak Scorunu Sifirliyabilirsin ..!)")
        }
    }
    stock chat_color(const id, const input[], any:...) 
    {
        new 
    count 1players[32]
        static 
    msg[191]
        
    vformat(msg190input3)
        
        
    replace_all(msg190"!g""^4")
        
    replace_all(msg190"!y""^1")
        
    replace_all(msg190"!t""^3")
        
    replace_all(msg190"!team2""^0")
        
        if (
    idplayers[0] = id
        
    else get_players(playerscount"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();
            }
        }
        

    Yazı kaldırıldı.
    Serverinde Kullandığın Top15 Top10 rankstats me pluginin varmı kendi kullandığın

    internettekiler yamuk yumuk .s

Benzer Konular

  1. Ufak bi yardim
    By t4t1fati in forum Çözülmüş İstekler
    Cevaplar: 6
    Son Mesaj: 20-02-15, 23:59
  2. Ufak bi tasarım..
    By melof in forum PhotoShop Yardım
    Cevaplar: 1
    Son Mesaj: 22-05-13, 15:12
  3. Ayarlar
    By MamyLee in forum CFG Kodları
    Cevaplar: 4
    Son Mesaj: 27-10-12, 00:00

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