Kullanıcı Tag Listesi

9 sonuçtan 1 ile 9 arası
  1. #1
    binbaşı er batuopoz0770 - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2012
    Yer
    Antalya
    Mesajlar
    322
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart [Jail] İstek Plugin

    Yapabileceklere Teşekkür Ediyorum

    Jailde Bilirsiniz Hook Pluginleri Mevcut Ama Pek Güzel Değiller
    Böyle Güzel Bir Hook Olsun Rengi Çeşitli Çeşitli Güzel Olsun
    Sadece CTler Kullansın istiyorum Adminler De Kullanamasın

    Tekrar Teşekkürler

  2. #2
    binbaşı er Furkan Dize - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jan 2012
    Yer
    İstanbul
    Mesajlar
    537
    Bahsedildi
    11 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart Cevap: [Jail] İstek Plugin

    https://www.csplague.com/jail-deathr...g-plugini.html
    Bu olurmu olursa ctlere özel yapacak arkadaşa kolaylık olur hooku aramaz
    [ OSMANLI IMP # F-TIPI JAILBREAK ]
    [ İMAN AHLAK ADALET ]

    [ Pit10 ]

    -facebook-
    [
    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.
    ]

    -diğer sosyal ağlarımız-
    [
    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.
    ]
    [
    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.
    ]



  3. #3
    binbaşı er batuopoz0770 - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2012
    Yer
    Antalya
    Mesajlar
    322
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart Cevap: [Jail] İstek Plugin

    olur güzel ama ct lere özel olsun
    Tek Hedefim
    HEP HEP

    CsPlague
    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.

  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: [Jail] İstek Plugin

    Pluginin .sma'sını paylaşırsanız. CT Takımına özel olarak ayarlarım.

    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/


  5. #5
    binbaşı er batuopoz0770 - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2012
    Yer
    Antalya
    Mesajlar
    322
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart Cevap: [Jail] İstek Plugin

    #include <amxmodx>
    #include <amxmisc>
    #include <engine>

    #define KZ_LEVEL ADMIN_KICK // Adminlevel

    new bool:canusehook[32]
    new bool:ishooked[32]
    new hookorigin[32][3]

    new Sbeam

    public plugin_init() {
    register_plugin("deathrun_hook","1.0","Low-Kick")

    register_clcmd("+hook","hook_on",KZ_LEVEL)
    register_clcmd("-hook","hook_off",KZ_LEVEL)

    register_clcmd("kz_hook","give_hook",KZ_LEVEL,"<na me|#userid|steamid|@ALL> <on/off>")
    }

    public plugin_precache() {
    precache_sound("hook/hook.wav")
    Sbeam = precache_model("sprites/hook/hook_CT.spr")
    }

    // ================================================== ===============================================

    public client_disconnect(id) {
    remove_hook(id)
    }

    public client_putinserver(id) {
    remove_hook(id)
    }

    // ================================================== ===============================================

    public give_hook(id,level,cid) {
    if(!cmd_access(id,level,cid,3))
    return PLUGIN_HANDLED

    new name[32]
    get_user_name(id,name,32)

    new szarg1[32], szarg2[8], bool:mode
    read_argv(1,szarg1,32)
    read_argv(2,szarg2,32)
    if(equal(szarg2,"on"))
    mode = true

    if(equal(szarg1,"@ALL")) {
    for(new i=1;i<=get_maxplayers();i++) {
    if(is_user_connected(i) && is_user_alive(i)) {
    canusehook[i-1] = mode
    if(mode) {
    client_print(i,print_chat,"[ProKreedz] Admin %s gave you ability to use hook",name)
    client_print(i,print_chat,"[ProKreedz] Just bind '+hook' on a key, you want")
    }
    else
    client_print(i,print_chat,"[ProKreedz] Admin %s removed your ability to use hook",name)
    }
    }
    }
    else {
    new pid = cmd_target(id,szarg1,2)
    if(pid > 0) {
    canusehook[pid-1] = mode
    if(mode) {
    client_print(pid,print_chat,"[ProKreedz] Admin %s gave you ability to use hook",name)
    client_print(pid,print_chat,"[ProKreedz] Just bind '+hook' on a key, you want")
    }
    else
    client_print(pid,print_chat,"[ProKreedz] Admin %s removed your ability to use hook",name)
    }
    }

    return PLUGIN_HANDLED
    }

    // ================================================== ===============================================

    public hook_on(id,level,cid) {
    if(!canusehook[id-1] && !cmd_access(id,level,cid,1))
    return PLUGIN_HANDLED

    get_user_origin(id,hookorigin[id-1],3)

    if(callfunc_begin("detect_cheat","prokreedz.amxx") == 1) {
    callfunc_push_int(id)
    callfunc_push_str("Hook")
    callfunc_end()
    }

    ishooked[id-1] = true

    emit_sound(id,CHAN_STATIC,"hook/hook.wav",1.0,ATTN_NORM,0,PITCH_NORM)
    set_task(0.1,"hook_task",id,"",0,"ab")
    hook_task(id)

    return PLUGIN_HANDLED
    }

    // ================================================== ===============================================

    public is_hooked(id) {
    return ishooked[id-1]
    }

    // ================================================== ===============================================

    public hook_off(id) {
    remove_hook(id)

    return PLUGIN_HANDLED
    }

    // ================================================== ===============================================

    public hook_task(id) {
    if(!is_user_connected(id) || !is_user_alive(id))
    remove_hook(id)

    remove_beam(id)
    draw_hook(id)

    new origin[3], Float:velocity[3]
    get_user_origin(id,origin)
    new distance = get_distance(hookorigin[id-1],origin)
    if(distance > 25) {
    velocity[0] = (hookorigin[id-1][0] - origin[0]) * (2.0 * 300 / distance)
    velocity[1] = (hookorigin[id-1][1] - origin[1]) * (2.0 * 300 / distance)
    velocity[2] = (hookorigin[id-1][2] - origin[2]) * (2.0 * 300 / distance)

    entity_set_vector(id,EV_VEC_velocity,velocity)
    }
    else {
    entity_set_vector(id,EV_VEC_velocity,Float:{0.0,0. 0,0.0})
    remove_hook(id)
    }
    }

    // ================================================== ===============================================

    public draw_hook(id) {
    message_begin(MSG_BROADCAST,SVC_TEMPENTITY)
    write_byte(1) // TE_BEAMENTPOINT
    write_short(id) // entid
    write_coord(hookorigin[id-1][0]) // origin
    write_coord(hookorigin[id-1][1]) // origin
    write_coord(hookorigin[id-1][2]) // origin
    write_short(Sbeam) // sprite index
    write_byte(0) // start frame
    write_byte(0) // framerate
    write_byte(100) // life
    write_byte(10) // width
    write_byte(0) // noise
    if(get_user_team(id) == 1) { // Terrorist
    write_byte(255) // r
    write_byte(255) // g
    write_byte(255) // b
    }
    else { // Counter-Terrorist
    write_byte(255) // r
    write_byte(255) // g
    write_byte(255) // b
    }
    write_byte(150) // brightness
    write_byte(0) // speed
    message_end()
    }

    public remove_hook(id) {
    if(task_exists(id))
    remove_task(id)
    remove_beam(id)
    ishooked[id-1] = false
    }

    public remove_beam(id) {
    message_begin(MSG_BROADCAST,SVC_TEMPENTITY)
    write_byte(99) // TE_KILLBEAM
    write_short(id)
    message_end()
    }

    // You reached the end of file
    // This plugin was made by p4ddY
    // Credits to EJL-SpaceDude/JTP10181




    Bu
    Tek Hedefim
    HEP HEP

    CsPlague
    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.

  6. #6
    er banned
    Üyelik tarihi
    Sep 2012
    Mesajlar
    33
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    0

    Standart Cevap: [Jail] İstek Plugin

    https://www.csplague.com/xm1014/1564...12-onemli.html bakarmısınız güzel ödül vr bulana

  7. #7
    cavus er grkann - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Sep 2012
    Yer
    ARTVİN
    Mesajlar
    274
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: [Jail] İstek Plugin

    bende bi hook vardı sesi rengi falan başkaydı kıvılcım çıkaryodu
    ->>GÜRKAN<<-

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    href="mailto:
    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.


    --►►►♀♂ĢŨŔĶĄŊ &#208;ÉĘŋǏŻ♂♀◄◄◄--




    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.


    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.

  8. #8
    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: [Jail] İstek Plugin

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


    new bool:canusehook[32]
    new 
    bool:ishooked[32]
    new 
    hookorigin[32][3]

    new 
    Sbeam

    public plugin_init() {
        
    register_plugin("deathrun_hook","1.0","Low-Kick")
        
        
    register_clcmd("+hook","hook_on")
        
    register_clcmd("-hook","hook_off")
        
        
    register_clcmd("kz_hook","give_hook",ADMIN_CVAR,"<na me|#userid|steamid|@ALL> <on/off>")
    }

    public 
    plugin_precache() {
        
    precache_sound("hook/hook.wav")
        
    Sbeam precache_model("sprites/hook/hook_CT.spr")
    }

    // ================================================== ===============================================

    public client_disconnect(id) {
        
    remove_hook(id)
    }

    public 
    client_putinserver(id) {
        
    remove_hook(id)
    }

    // ================================================== ===============================================

    public give_hook(id,level,cid) {
        if(!
    cmd_access(id,level,cid,3))
            return 
    PLUGIN_HANDLED
        
        
    new name[32]
        
    get_user_name(id,name,32)
        
        new 
    szarg1[32], szarg2[8], bool:mode
        read_argv
    (1,szarg1,32)
        
    read_argv(2,szarg2,32)
        if(
    equal(szarg2,"on"))
            
    mode true
        
        
    if(equal(szarg1,"@ALL")) {
            for(new 
    i=1;i<=get_maxplayers();i++) {
                if(
    is_user_connected(i) && is_user_alive(i)) {
                    
    canusehook[i-1] = mode
                    
    if(mode) {
                        
    client_print(i,print_chat,"[ProKreedz] Admin %s gave you ability to use hook",name)
                        
    client_print(i,print_chat,"[ProKreedz] Just bind '+hook' on a key, you want")
                    }
                    else
                        
    client_print(i,print_chat,"[ProKreedz] Admin %s removed your ability to use hook",name)
                }
            }
        }
        else {
            new 
    pid cmd_target(id,szarg1,2)
            if(
    pid 0) {
                
    canusehook[pid-1] = mode
                
    if(mode) {
                    
    client_print(pid,print_chat,"[ProKreedz] Admin %s gave you ability to use hook",name)
                    
    client_print(pid,print_chat,"[ProKreedz] Just bind '+hook' on a key, you want")
                }
                else
                    
    client_print(pid,print_chat,"[ProKreedz] Admin %s removed your ability to use hook",name)
            }
        }
        
        return 
    PLUGIN_HANDLED
    }

    // ================================================== ===============================================

    public hook_on(id) {
        if(!
    canusehook[id-1])
            return 
    PLUGIN_HANDLED
        
    if(get_user_team(id) != 2) {
            
    client_print(id,print_chat,"Sadece Gardiyanlar Hook Kullanabilir !")
            return 
    PLUGIN_HANDLED
        
    }
        
        
    get_user_origin(id,hookorigin[id-1],3)
        
        if(
    callfunc_begin("detect_cheat","prokreedz.amxx") == 1) {
            
    callfunc_push_int(id)
            
    callfunc_push_str("Hook")
            
    callfunc_end()
        }
        
        
    ishooked[id-1] = true
        
        emit_sound
    (id,CHAN_STATIC,"hook/hook.wav",1.0,ATTN_NORM,0,PITCH_NORM)
        
    set_task(0.1,"hook_task",id,"",0,"ab")
        
    hook_task(id)
        
        return 
    PLUGIN_HANDLED
    }

    // ================================================== ===============================================

    public is_hooked(id) {
        return 
    ishooked[id-1]
    }

    // ================================================== ===============================================

    public hook_off(id) {
        
    remove_hook(id)
        
        return 
    PLUGIN_HANDLED
    }

    // ================================================== ===============================================

    public hook_task(id) {
        if(!
    is_user_connected(id) || !is_user_alive(id))
            
    remove_hook(id)
        
        
    remove_beam(id)
        
    draw_hook(id)
        
        new 
    origin[3], Float:velocity[3]
        
    get_user_origin(id,origin
        new 
    distance get_distance(hookorigin[id-1],origin)
        if(
    distance 25) { 
            
    velocity[0] = (hookorigin[id-1][0] - origin[0]) * (2.0 300 distance)
            
    velocity[1] = (hookorigin[id-1][1] - origin[1]) * (2.0 300 distance)
            
    velocity[2] = (hookorigin[id-1][2] - origin[2]) * (2.0 300 distance)
            
            
    entity_set_vector(id,EV_VEC_velocity,velocity)
        } 
        else {
            
    entity_set_vector(id,EV_VEC_velocity,Float:{0.0,0.0,0.0})
            
    remove_hook(id)
        }
    }

    // ================================================== ===============================================

    public draw_hook(id) {
        
    message_begin(MSG_BROADCAST,SVC_TEMPENTITY)
        
    write_byte(1// TE_BEAMENTPOINT
        
    write_short(id// entid
        
    write_coord(hookorigin[id-1][0]) // origin
        
    write_coord(hookorigin[id-1][1]) // origin
        
    write_coord(hookorigin[id-1][2]) // origin
        
    write_short(Sbeam// sprite index
        
    write_byte(0// start frame
        
    write_byte(0// framerate
        
    write_byte(100// life
        
    write_byte(10// width
        
    write_byte(0// noise
        
    if(get_user_team(id) == 1) { // Terrorist
            
    write_byte(255// r
            
    write_byte(255// g
            
    write_byte(255// b
        
    }
        else { 
    // Counter-Terrorist
            
    write_byte(255// r
            
    write_byte(255// g
            
    write_byte(255// b
        
    }
        
    write_byte(150// brightness
        
    write_byte(0// speed
        
    message_end()
    }

    public 
    remove_hook(id) {
        if(
    task_exists(id))
            
    remove_task(id)
        
    remove_beam(id)
        
    ishooked[id-1] = false
    }

    public 
    remove_beam(id) {
        
    message_begin(MSG_BROADCAST,SVC_TEMPENTITY)
        
    write_byte(99// TE_KILLBEAM
        
    write_short(id)
        
    message_end()

    Sadece CT.

    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/


  9. #9
    binbaşı er batuopoz0770 - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2012
    Yer
    Antalya
    Mesajlar
    322
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    13

    Standart Cevap: [Jail] İstek Plugin

    teşekkürler
    Tek Hedefim
    HEP HEP

    CsPlague
    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.

Benzer Konular

  1. 2 Plugin İstek
    By betaboy in forum Çözülmüş İstekler
    Cevaplar: 5
    Son Mesaj: 25-02-12, 15:10
  2. Plugin İstek
    By BLooDGaMinG in forum Çözülmüş İstekler
    Cevaplar: 11
    Son Mesaj: 23-02-12, 20:32
  3. [İSTEK] Plugin
    By ST4R in forum Çözülmüş İstekler
    Cevaplar: 1
    Son Mesaj: 25-01-12, 16:09

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

csplague jail terror skins

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