Kullanıcı Tag Listesi

5 sonuçtan 1 ile 5 arası
  1. #1
    onbasi er xLdeJavu - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Oct 2013
    Mesajlar
    134
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    11

    Standart CT ler için paint plugini

    Merhabalar kolay gelsin pluginci arkadaşlardan bizim bu bildigimiz paint plugini var mouse sag tik ile renkli çizgiler çıkarıyor o plugini sadece ct ler kullanabilecegi sekilde ayarlayıp atmalarını ıstıyebilir miyim?
    CS 1.6 TR 1.Sİ DEATHRUN Server IP: | 95.173.172.7 |RsT # DEATHRUN -
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    Server IP: 95.173.172.7 & dr.rstgaming.netWeb:
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  2. #2
    onbasi er xLdeJavu - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Oct 2013
    Mesajlar
    134
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    11

    Standart Cevap: CT ler için paint plugini

    guncelll
    CS 1.6 TR 1.Sİ DEATHRUN Server IP: | 95.173.172.7 |RsT # DEATHRUN -
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
    Server IP: 95.173.172.7 & dr.rstgaming.netWeb:
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  3. #3
    onbasi er
    Üyelik tarihi
    Sep 2012
    Yer
    Istanbul
    Mesajlar
    77
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    12

    Standart Cevap: CT ler için paint plugini

    Kod:
    /* Plugin generated by AMXX-Studio */
    
    #include <amxmodx>
    #include <amxmisc>
    #include <fakemeta>
    #include <xs>
    
    
    #define PLUGIN "Paint"
    #define VERSION "3.1"
    #define AUTHOR "stupok69"
    
    
    #define MAX_PLAYERS 32
    
    
    new Float:origin[MAX_PLAYERS+1][3]
    new prethink_counter[MAX_PLAYERS+1]
    new bool:is_drawing[MAX_PLAYERS+1]
    new bool:is_holding[MAX_PLAYERS+1]
    
    
    new spriteid
    
    
    public plugin_init() {
    	register_plugin(PLUGIN, VERSION, AUTHOR)
    	
    	register_clcmd("+paint", "paint_devam")
    	register_clcmd("-paint", "paint_devam")
    	register_forward(FM_PlayerPreThink, "forward_FM_PlayerPreThink", 0)
    }
    public plugin_precache()
    {
    	spriteid = precache_model("sprites/lgtning.spr")
    }
    public paint_devam(id){
    	if (get_user_team(id) == 2)  
    	{
    		static cmd[2]
    		read_argv(0, cmd, 1)
    		
    		switch(cmd[0])
    		{
    			case '+': is_drawing[id] = true
    				case '-': is_drawing[id] = false
    			}
    	}
    	return PLUGIN_HANDLED
    }
    public forward_FM_PlayerPreThink(id)
    {
    	if(prethink_counter[id]++ > 5)
    	{
    		if(is_drawing[id] && !is_aiming_at_sky(id))
    		{
    			static Float:cur_origin[3], Float:distance
    			
    			cur_origin = origin[id]
    			
    			if(!is_holding[id])
    			{
    				fm_get_aim_origin(id, origin[id])
    				move_toward_client(id, origin[id])
    				is_holding[id] = true
    				return FMRES_IGNORED
    			}
    			
    			fm_get_aim_origin(id, origin[id])
    			move_toward_client(id, origin[id])
    			
    			distance = get_distance_f(origin[id], cur_origin)
    			
    			if(distance > 2)
    			{
    				draw_line(origin[id], cur_origin)
    			}
    		}
    		else
    		{
    			is_holding[id] = false
    		}
    		prethink_counter[id] = 0
    	}
    	
    	return FMRES_IGNORED
    }
    
    
    stock draw_line(Float:origin1[3], Float:origin2[3])
    {
    	message_begin(MSG_BROADCAST,SVC_TEMPENTITY)
    	write_byte(TE_BEAMPOINTS)
    	engfunc(EngFunc_WriteCoord, origin1[0])
    	engfunc(EngFunc_WriteCoord, origin1[1])
    	engfunc(EngFunc_WriteCoord, origin1[2])
    	engfunc(EngFunc_WriteCoord, origin2[0])
    	engfunc(EngFunc_WriteCoord, origin2[1])
    	engfunc(EngFunc_WriteCoord, origin2[2])
    	write_short(spriteid)
    	write_byte(0)
    	write_byte(10)
    	write_byte(255)
    	write_byte(50)
    	write_byte(0)
    	write_byte(random(255))
    	write_byte(random(255))
    	write_byte(random(255))
    	write_byte(255)
    	write_byte(0)
    	message_end()
    }
    
    
    stock fm_get_aim_origin(index, Float:origin[3])
    {
    	static Float:start[3], Float:view_ofs[3]
    	pev(index, pev_origin, start)
    	pev(index, pev_view_ofs, view_ofs)
    	xs_vec_add(start, view_ofs, start)
    	
    	static Float:dest[3]
    	pev(index, pev_v_angle, dest)
    	engfunc(EngFunc_MakeVectors, dest)
    	global_get(glb_v_forward, dest)
    	xs_vec_mul_scalar(dest, 9999.0, dest)
    	xs_vec_add(start, dest, dest)
    	
    	engfunc(EngFunc_TraceLine, start, dest, 0, index, 0)
    	get_tr2(0, TR_vecEndPos, origin)
    	
    	return 1
    }
    
    
    stock move_toward_client(id, Float:origin[3])
    {		
    	static Float:player_origin[3]
    	
    	pev(id, pev_origin, player_origin)
    	
    	origin[0] += (player_origin[0] > origin[0]) ? 1.0 : -1.0
    	origin[1] += (player_origin[1] > origin[1]) ? 1.0 : -1.0
    	origin[2] += (player_origin[2] > origin[2]) ? 1.0 : -1.0
    }
    bool:is_aiming_at_sky(index)
    {
    new Float:origin[3];
    fm_get_aim_origin(index, origin);
    
    
    return engfunc(EngFunc_PointContents, origin) == CONTENTS_SKY;
    }

  4. #4
    onbasi er crunch98 - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Jan 2014
    Yer
    İstanbul/Florya
    Mesajlar
    56
    Bahsedildi
    1 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    11

    Standart Cevap: CT ler için paint plugini

    teşekkürler
    Facebook.com/FreeDooM.ServeR - 185.182.188.13 - FreeDooM $ ClaN ServeR
    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  5. #5
    onbasi er
    Üyelik tarihi
    Dec 2017
    Mesajlar
    53
    Bahsedildi
    0 Mesaj
    Etiketlenmiş
    0 Konu
    Tecrübe Puanı
    7

    Standart Cevap: CT ler için paint plugini

    yararlı bi konu teşekkürler

Benzer Konular

  1. Ct özel paint
    By MAJESTIC GAMING in forum [İSTEK] Cs 1.6 Plugin İstek Bölümü
    Cevaplar: 2
    Son Mesaj: 13-07-15, 14:54
  2. TeamSpeak3 plugini için bir istek
    By PhantomRui in forum Çözülmüş İstekler
    Cevaplar: 5
    Son Mesaj: 18-07-13, 00:44
  3. Jaıl icin Shop Plugini Menulu
    By EnbuyukBjk in forum Onaylanmış Modlar
    Cevaplar: 13
    Son Mesaj: 26-05-13, 22:56
  4. Paint çalışmam :D
    By NiceDreamxD in forum [Movie|CAPS] CS Resim ve Videolarınız
    Cevaplar: 24
    Son Mesaj: 31-03-12, 20:52
  5. [JB]Beyler Swye Bot Atma Plugini JB icin,
    By c4* in forum Çözülmüş İstekler
    Cevaplar: 8
    Son Mesaj: 18-01-12, 16:54

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