Kullanıcı Tag Listesi

10 sonuçtan 1 ile 10 arası

Threaded View

  1. #3
    onbasi er chirkinqral - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jan 2012
    Mesajlar
    134
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    14

    Standart Cevap: Pass Sprite [YARDIM]

    PHP- Kodu:
    #include <amxmodx>
    #include <amxmisc>


    new spriteaccessCvar


    public plugin_init()
    {
        
    register_plugin("Pas Sprite""1.0""Mcc")
        
    register_clcmd("+pass""pas")
        
    register_clcmd("-pass""pas2")
        
    accessCvar register_cvar("pas_kullanici""0")
    }


    public 
    plugin_precache()
    {
        
    sprite precache_model("sprites/pass.spr")
    }


    public 
    pas(id)
    {
        if(!
    is_user_alive(id))
            return 
    PLUGIN_HANDLED
        
    switch(get_pcvar_num(accessCvar))
        {
            case 
    set_cheer(id)
            case 
    :
            {
                if(!
    access(idADMIN_CHAT))
                    return 
    PLUGIN_HANDLED
                set_cheer
    (id)
            }
        }
        
    client_cmd(id"bind f +pass")
        return 
    PLUGIN_HANDLED
    }


    public 
    pas2(id)
    {
        
    rem_cheer(id)
        return 
    PLUGIN_HANDLED
    }


    stock rem_cheer(id)
    {
        
    message_begin(MSG_ALLSVC_TEMPENTITY)
             
    write_byte(125)
             
    write_byte(id)
             
    message_end()
    }


    stock set_cheer(id)
    {
        
    message_begin(MSG_ALLSVC_TEMPENTITY)
        
    write_byte(124)
        
    write_byte(id)
        
    write_coord(35)
        
    write_short(sprite)
        
    write_short(100)
        
    message_end()

    Bu plugin yabanci sunucularda var. ama ben plugini bulamadigim için başka bir plugin buldum ona benzeyen plugin. ama bu pluginde sorun var sadece 1 tane sprite herkes basabiliyor benim istediğim ct de mavi pas t de kırmızı pas olması ve bunları sadece kendi takım arkadaşlarınn gormesi.
    Konu chirkinqral tarafından (03-11-13 Saat 16:41 ) değiştirilmiştir.

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