Kullanıcı Tag Listesi

4 sonuçtan 1 ile 4 arası
  1. #1
    er er
    Üyelik tarihi
    Jun 2013
    Mesajlar
    46
    Bahsedildi
    2 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    11

    Post VIP Adminlere Özel Şapka

    VIP ADMINLERE OZEL BİR ŞAPKA İSTİYORUM HANE BOYLE ADAM KAFASI VARYA O TARZDAN VARSA BOYLE BIR PLUGIN YAPABILIRMISINIZ R YETKISINDE OLSUN ?

    Modelin Linki : Dosya.tc - cretsiz, Hzl ve Kolay Dosya Paylam


  2. #2
    teğmen er scarty - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jun 2012
    Yer
    BURSA
    Mesajlar
    788
    Bahsedildi
    68 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: VIP Adminlere Özel Şapka

    @GreatsGaming normal admin şapkasıyla çakışabilir kalkan falan koy onu adminlere yap tercihim gerçi sitedeki coderler iyi yaparlar onuda.
    YouTube.com/enesscarty

  3. #3
    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: VIP Adminlere Özel Şapka

    admin_mark ı düzenleyip vip_mark yaptım. Buyrun;

    PHP- Kodu:
    /* AMX Mod X
    *   VIP Mark
    *
    * (c) Copyright 2007 by KaLoSZyFeR
    *
    * This file is provided as is (no warranties)
    *
    *     DESCRIPTION
    *       Plugin marks admin by adding on his head special helmet or beret. Size of model
    *    is less than 60kb, so player don't have to extra download whole admin model (size: 2Mb)
    *    like in other plugins such as KaOs' "Admin Models".
    *
    *     FEATURES
    *       - if admin is CT, he wears special helmet
    *    - if admin is T, he wears special beret
    *
    *
    *     CVARS
    *       amx_vip_mark (0: OFF, 1: ON, default: 1) - disables/enables plugin
    *
    *     VERSIONS
    *       1.0   first release
    *    1.1   added forcing standard models, optimized some code
    *    1.2   changed really smart part of code (1 word...)
    *
    */

    #include <amxmodx>
    #include <cstrike>
    #include <engine>

    new g_adminmarkEnt[33]
    new 
    cvar_enable
    new MODEL_MARK[]     = "models/vip_head.mdl"

    static const PLUGIN_NAME[]     = "VIP Mark"
    static const PLUGIN_AUTHOR[]     = "KaLoSZyFeR"
    static const PLUGIN_VERSION[]    = "1.2"

    public plugin_init()
    {
        
    register_plugin(PLUGIN_NAMEPLUGIN_VERSIONPLUGIN_AUTHOR)
        
    register_cvar(PLUGIN_NAMEPLUGIN_VERSIONFCVAR_SPONLY|FCVAR_SERVER)    
        
    cvar_enable register_cvar("amx_vip_mark""1")
    }

    public 
    plugin_precache()
    {
        
    precache_model(MODEL_MARK)    
        
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/gign/gign.mdl")
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/gsg9/gsg9.mdl")
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/sas/sas.mdl")
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/urban/urban.mdl")
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/vip/vip.mdl")
        
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/arctic/arctic.mdl")
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/guerilla/guerilla.mdl")
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/leet/leet.mdl")
        
    force_unmodified(force_model_samebounds,{0,0,0},{0,0,0},"models/player/terror/terror.mdl")    
    }

    public 
    client_connect(id)
    {
        if(
    g_adminmarkEnt[id] > 0)
            
    remove_entity(g_adminmarkEnt[id])
        
    g_adminmarkEnt[id] = 0
    }

    public 
    client_disconnect(id)
    {
        if(
    g_adminmarkEnt[id] > 0)
            
    remove_entity(g_adminmarkEnt[id])
        
    g_adminmarkEnt[id] = 0
    }

    public 
    client_PreThink(id)
    {
        if(!
    is_user_connected(id))
            return 
    PLUGIN_CONTINUE
        
        
    if(!is_user_alive(id) && g_adminmarkEnt[id] > 0)
        {
            
    remove_entity(g_adminmarkEnt[id])
            
    g_adminmarkEnt[id] = 0
            
            
    return PLUGIN_CONTINUE
        
    }
        
        if (!(
    get_user_flags(id) & ADMIN_LEVEL_F))
        {
            
    remove_entity(g_adminmarkEnt[id])
            
    g_adminmarkEnt[id] = 0
            
            
    return PLUGIN_CONTINUE
        
    }
        
        if(!
    get_pcvar_num(cvar_enable))
            return 
    PLUGIN_CONTINUE
        
        
    if(!is_user_alive(id))
            return 
    PLUGIN_CONTINUE
        
        
    if(g_adminmarkEnt[id] < 1)
        {
            
    g_adminmarkEnt[id] = create_entity("info_target")
            if(
    g_adminmarkEnt[id] > 0)
            {
                
    entity_set_int(g_adminmarkEnt[id], EV_INT_movetypeMOVETYPE_FOLLOW)
                
    entity_set_edict(g_adminmarkEnt[id], EV_ENT_aimentid)
                
    entity_set_model(g_adminmarkEnt[id], MODEL_MARK)            
            }
        }
        
        if (
    g_adminmarkEnt[id] > 0)
        {
            new 
    modelID get_model_id(id)
            
    entity_set_int(g_adminmarkEnt[id], EV_INT_bodymodelID)
        }
        
        if(
    g_adminmarkEnt[id] < 1)
            return 
    PLUGIN_CONTINUE
        
        
    return PLUGIN_CONTINUE
    }

    new 
    modelname[9][] ={
        
    "gign",
        
    "gsg9",
        
    "sas",
        
    "urban",
        
    "vip",
        
    "arctic",
        
    "guerilla",
        
    "leet",
        
    "terror"
    }

    public 
    get_model_id(id)
    {
        new 
    modelStr[32], iNum=32modelID
        get_user_info
    (id,"model",modelStr,iNum)
        
        for(new 
    09i++)
        {
            if (
    equali (modelStrmodelname[i]) )
            {
                
    modelID i
            
    }
        }    
        return 
    modelID

    modelin ismini

    vip_head

    yapıp models klasörüne atın. R yetkisi olanlarda görünür. Normal admin şapkasıyla çakışma olursa, plugins.ini de iki pluginin yerlerini değiştirin. Yine olmazsa söyleyin iki plugini birleştirelim.

    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/


  4. #4
    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: VIP Adminlere Özel Şapka


    Çö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/


Benzer Konular

  1. Adminlere Özel Mermi Sekmeme Plugini
    By Schwertle in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 417
    Son Mesaj: 20-03-18, 20:18
  2. Adminlere Özel HP
    By Lorenca in forum Çözülmüş İstekler
    Cevaplar: 14
    Son Mesaj: 25-04-17, 17:29
  3. Pelerin Yapma Plugini ( Adminlere Özel )
    By NiCoMeDiA in forum [PLUGİN] Cs 1.6 Eklentiler
    Cevaplar: 206
    Son Mesaj: 16-02-15, 21:15
  4. Adminlere özel hook her el bir kere
    By HijyeniK in forum Çözülmüş İstekler
    Cevaplar: 8
    Son Mesaj: 12-05-13, 02:52
  5. adminlere özel model plugini
    By wolf5094 in forum Çözülmüş İstekler
    Cevaplar: 10
    Son Mesaj: 27-07-12, 08:33

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

csplague urban models

SAPKA MODELCOCUK

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