Kullanıcı Tag Listesi

5 sonuçtan 1 ile 5 arası
Like Tree1Likes
  • 1 Post By JDM

Konu: Renkli ct gün / t gün acil

Threaded View

  1. #2
    JDM
    JDM çevrimdışı
    teğmen mod JDM - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Feb 2013
    Yer
    İstanbul/Bahçelievler
    Mesajlar
    841
    Bahsedildi
    5 Mesaj
    Etiketlenmiş
    9 Konu
    Tecrübe Puanı
    13

    Standart Cevap: Renkli ct gün / t gün acil

    Hud mesajlarını rengarenk yapamazsın hepsi belirlenen renkte olur.

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

    #include <amxmodx>
    #include <amxmisc>
    #include <hamsandwich>

    #define PLUGIN "Jail Break: Basic Info"
    #define VERSION "1.0"
    #define AUTHOR "Sn!ff3r"

    #define USERTASK 921
    #define UPDATEDELAY 1.0

    new static reasons[][] = { 
        
    "Uyusturucu Kullandin",
        
    "Tecavuzden",
        
    "Hirsizlik",
        
    "Fuhus",
        
    "Darp",
        
    "Silah Kacakciligi",
        
    "Sahte Mal Pazarlama",
        
    "Adam Yaralamadan",
        
    "Teror Orgutune Yardim"
    }

    new 
    userreason[33]
    new 
    roundshudhandler

    public plugin_init() 
    {
        
    register_plugin(PLUGINVERSIONAUTHOR)    
        
        
    register_event("TextMsg","restart_roundsnum","a","2&#Game_C"/*,"2&#Game_w"*/
        
        
    register_logevent("round_end"2"1=Round_End")  
        
        
    RegisterHam(Ham_Spawn"player""client_spawn"1)    
        
        
    hudhandler CreateHudSyncObj()
    }

    public 
    round_end()
    {
        
    rounds ++
    }

    public 
    restart_roundsnum() 
    {
        
    rounds 
    }

    public 
    client_disconnect(id)
    {
        
    userreason[id] = -1
        
        
    if(task_exists(id USERTASK))
        {
            
    remove_task(id USERTASK)
        }
    }

    public 
    client_spawn(id)
    {    
        if(
    task_exists(id USERTASK))
        {
            
    remove_task(id USERTASK)
        }    
        
        if(
    get_user_team(id) == 1)
        {    
            
    userreason[id] = random_num(0sizeof reasons 1)
            
            
    set_task(UPDATEDELAY"client_jailinfo"id USERTASK__"b")
        }    
    }

    public 
    client_jailinfo(TASKID)
    {
        static 
    id
        id 
    TASKID USERTASK
        
        
    // rgb renkleri r= kırmızı, g= yeşil, b= mavi
        
    set_hudmessage(255000.80.106.012.0)
        
        
    ShowSyncHudMsg(idhudhandler"Gun %d | Hapis Sebebi: %s."roundsreasons[userreason[id]])    

    Ekli Dosyalar Ekli Dosyalar
    Konu JDM tarafından (19-02-14 Saat 20:50 ) değiştirilmiştir. Sebep: sma ve amxx eklendi
    Steam ID: STEAM_1:0:70428872
    Steam Name: Seps!s
    Skype: jdm.csplague

    Takdir ediliyorsan değil, Taklit ediliyorsan başarmışsın demektir.
    Albert Einstein

Benzer Konular

  1. Renkli Amx komutları
    By berkanmtn in forum Çözülmüş İstekler
    Cevaplar: 2
    Son Mesaj: 14-09-12, 22:36

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