Discord sunucumuz açılmıştır, hepinizi bekleriz

https://discord.gg/43gGDQe6tS

Redbull'u JB ile almak?

Eklenti sorunlarınız ve özel eklenti istekleriniz

Moderatör: Moderatörler

Kullanıcı avatarı

Konu Sahibi
tamdemS
Yasaklı Üye
Yasaklı Üye
Mesajlar: 175
Kayıt: Prş Oca 11, 2018 5:50 pm
Konum: İstanbul
Server Ip/DNS: cs133.csduragi.com
Clan İsmi: melankoliaJB

Redbull'u JB ile almak?

Mesaj gönderen tamdemS »

Selam. Jailde Redbull jb ile alınmasını istiyorum elinde plugin olan varmı acaba?

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Taha Demirbaş
Mesajlar: 10428
Kayıt: Cum Tem 08, 2016 10:05 pm
Konum: Türkiye
İletişim:

Redbull'u JB ile almak?

Mesaj gönderen Taha Demirbaş »

redbull eklentisini atın. Forumda Düzeltilir..

Link:
Linklerini gizle
Linki Kopyala

suriyelikene
Yasaklı Üye
Yasaklı Üye
Mesajlar: 336
Kayıt: Cmt Haz 17, 2017 2:44 pm

Redbull'u JB ile almak?

Mesaj gönderen suriyelikene »

bunu yapabılırsınız bu guzel tabı konu acan yapın derse
albay_özel_redbull.sma
Bu mesaja eklenen dosyaları görüntülemek için gerekli izinlere sahip değilsiniz.

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

noeldayi
Mesajlar: 3167
Kayıt: Prş Oca 19, 2017 6:57 pm
Konum: 213.238.173.35
Server Ip/DNS: 213.238.173.35
Clan İsmi: Moon Gaming
İletişim:

Redbull'u JB ile almak?

Mesaj gönderen noeldayi »

Kod: Tümünü seç

/*
*   _______     _      _  __          __
*  | _____/    | |    | | \ \   __   / /
*  | |         | |    | |  | | /  \ | |
*  | |         | |____| |  | |/ __ \| |
*  | |   ___   | ______ |  |   /  \   |
*  | |  |_  |  | |    | |  |  /    \  |
*  | |    | |  | |    | |  | |      | |
*  | |____| |  | |    | |  | |      | |
*  |_______/   |_|    |_|  \_/      \_/
*
*
*
*  Last Edited: 12-31-07
*
*  ============
*   Changelog:
*  ============
*
*  v2.0
*    -Added ML
*    -Optimized Code
*
*  v1.0
*    -Initial Release
*
*/

#define VERSION	"2.0"

#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>
#include <jail>

new bool:has_rb[33], bool:auto[33]

new cost_cvar, lasts_cvar, speed_cvar

public plugin_init()
{
	register_plugin("Red Bull",VERSION,"GHW_Chronic")

	register_clcmd("say /RedBull","say_cmd_handle")

	cost_cvar = register_cvar("redbull_cost","1")
	lasts_cvar = register_cvar("RB_Lasts","21.0")
	speed_cvar = register_cvar("RB_Speed","900.0")

	register_event("CurWeapon","curweap","be")
	register_event("HLTV", "event_round_start", "a", "1=0", "2=0")
}

public event_round_start()
{
	new players[32],inum;
	static Uid;
	get_players(players,inum)
	for(new i;i<inum;i++) {
		Uid = players[i]
		auto[Uid] = true
	}
}

public curweap(id)
{
	if(is_user_alive(id) && has_rb[id])
	{
		client_cmd(id,"cl_forwardspeed 400;cl_backspeed 400;cl_sidespeed 400")
		set_user_maxspeed(id,get_pcvar_float(speed_cvar))
	}
}

public client_connect(id) has_rb[id]=false
public client_disconnect(id) has_rb[id]=false

public say_cmd_handle(id)
{
	if(!is_user_alive(id))
	{
		client_printc(id,"!t[ !gCSDuragi !t] !nOluyken nasil redbull icecen mal.")
	}
	else if(has_rb[id])
	{
		client_printc(id,"!t[ !gCSDuragi !t] !nRedbull etkisi zaten devam ediyor.")
	}
	else if(jb_get_user_packs(id)<get_pcvar_num(cost_cvar))
	{
		client_printc(id,"!t[ !gCSDuragi !t] !nParan yetmiyor.")
	}
	else
	{
		jb_set_user_packs(id,jb_get_user_packs(id) - get_pcvar_num(cost_cvar))
		has_rb[id]=true
		set_task(get_pcvar_float(lasts_cvar),"redbull_over",id)
		set_task(1.0,"plus_hp",id,"",0,"b")
		set_user_gravity(id,0.5)
		set_user_maxspeed(id,get_pcvar_float(speed_cvar))
		client_printc(id,"!t[ !gCSDuragi !t] !nRedbull kanatlandirir!! O_O")
	}
}

public plus_hp(id)
{
	if(has_rb[id]) set_user_health(id,get_user_health(id)+1)
}

public redbull_over(id)
{
	if(is_user_connected(id))
	{
		has_rb[id]=false
		if(is_user_alive(id)){
		client_printc(id,"!t[ !gXqN Reborn !t] !nRedbull'un bitti :/")
		}
		set_user_gravity(id,1.0)
		set_user_maxspeed(id,250.0)
		set_user_gravity(id,1.0)
		remove_task(id)
	}
}

stock client_printc(const id, const input[], any:...) 
{ 
	new count = 1, players[32]; 
	static msg[191]; 
	vformat(msg, 190, input, 3); 
	
	replace_all(msg, 190, "!n", "^x01");
	replace_all(msg, 190, "!g", "^x04"); 	
	replace_all(msg, 190, "!t", "^x03");
	
	if (id) players[0] = id; else get_players(players, count, "ch"); { 
		for (new i = 0; i < count; i++) 
		{ 
			if (is_user_connected(players[i])) 
			{ 
				message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i]); 
				write_byte(players[i]); 
				write_string(msg); 
				message_end(); 
			} 
		} 
	}
	return PLUGIN_CONTINUE
}
buyur bi dene eskiden kalma hata varsa söylersin.

(amx_cvar) redbull_cost "1" ( Kac paraya alinacagi. 1TL Varsayılan )

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Konu Sahibi
tamdemS
Yasaklı Üye
Yasaklı Üye
Mesajlar: 175
Kayıt: Prş Oca 11, 2018 5:50 pm
Konum: İstanbul
Server Ip/DNS: cs133.csduragi.com
Clan İsmi: melankoliaJB

Redbull'u JB ile almak?

Mesaj gönderen tamdemS »

noeldayi yazdı:

Kod: Tümünü seç

/*
*   _______     _      _  __          __
*  | _____/    | |    | | \ \   __   / /
*  | |         | |    | |  | | /  \ | |
*  | |         | |____| |  | |/ __ \| |
*  | |   ___   | ______ |  |   /  \   |
*  | |  |_  |  | |    | |  |  /    \  |
*  | |    | |  | |    | |  | |      | |
*  | |____| |  | |    | |  | |      | |
*  |_______/   |_|    |_|  \_/      \_/
*
*
*
*  Last Edited: 12-31-07
*
*  ============
*   Changelog:
*  ============
*
*  v2.0
*    -Added ML
*    -Optimized Code
*
*  v1.0
*    -Initial Release
*
*/

#define VERSION	"2.0"

#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>
#include <jail>

new bool:has_rb[33], bool:auto[33]

new cost_cvar, lasts_cvar, speed_cvar

public plugin_init()
{
	register_plugin("Red Bull",VERSION,"GHW_Chronic")

	register_clcmd("say /RedBull","say_cmd_handle")

	cost_cvar = register_cvar("redbull_cost","1")
	lasts_cvar = register_cvar("RB_Lasts","21.0")
	speed_cvar = register_cvar("RB_Speed","900.0")

	register_event("CurWeapon","curweap","be")
	register_event("HLTV", "event_round_start", "a", "1=0", "2=0")
}

public event_round_start()
{
	new players[32],inum;
	static Uid;
	get_players(players,inum)
	for(new i;i<inum;i++) {
		Uid = players[i]
		auto[Uid] = true
	}
}

public curweap(id)
{
	if(is_user_alive(id) && has_rb[id])
	{
		client_cmd(id,"cl_forwardspeed 400;cl_backspeed 400;cl_sidespeed 400")
		set_user_maxspeed(id,get_pcvar_float(speed_cvar))
	}
}

public client_connect(id) has_rb[id]=false
public client_disconnect(id) has_rb[id]=false

public say_cmd_handle(id)
{
	if(!is_user_alive(id))
	{
		client_printc(id,"!t[ !gCSDuragi !t] !nOluyken nasil redbull icecen mal.")
	}
	else if(has_rb[id])
	{
		client_printc(id,"!t[ !gCSDuragi !t] !nRedbull etkisi zaten devam ediyor.")
	}
	else if(jb_get_user_packs(id)<get_pcvar_num(cost_cvar))
	{
		client_printc(id,"!t[ !gCSDuragi !t] !nParan yetmiyor.")
	}
	else
	{
		jb_set_user_packs(id,jb_get_user_packs(id) - get_pcvar_num(cost_cvar))
		has_rb[id]=true
		set_task(get_pcvar_float(lasts_cvar),"redbull_over",id)
		set_task(1.0,"plus_hp",id,"",0,"b")
		set_user_gravity(id,0.5)
		set_user_maxspeed(id,get_pcvar_float(speed_cvar))
		client_printc(id,"!t[ !gCSDuragi !t] !nRedbull kanatlandirir!! O_O")
	}
}

public plus_hp(id)
{
	if(has_rb[id]) set_user_health(id,get_user_health(id)+1)
}

public redbull_over(id)
{
	if(is_user_connected(id))
	{
		has_rb[id]=false
		if(is_user_alive(id)){
		client_printc(id,"!t[ !gXqN Reborn !t] !nRedbull'un bitti :/")
		}
		set_user_gravity(id,1.0)
		set_user_maxspeed(id,250.0)
		set_user_gravity(id,1.0)
		remove_task(id)
	}
}

stock client_printc(const id, const input[], any:...) 
{ 
	new count = 1, players[32]; 
	static msg[191]; 
	vformat(msg, 190, input, 3); 
	
	replace_all(msg, 190, "!n", "^x01");
	replace_all(msg, 190, "!g", "^x04"); 	
	replace_all(msg, 190, "!t", "^x03");
	
	if (id) players[0] = id; else get_players(players, count, "ch"); { 
		for (new i = 0; i < count; i++) 
		{ 
			if (is_user_connected(players[i])) 
			{ 
				message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i]); 
				write_byte(players[i]); 
				write_string(msg); 
				message_end(); 
			} 
		} 
	}
	return PLUGIN_CONTINUE
}
buyur bi dene eskiden kalma hata varsa söylersin.

(amx_cvar) redbull_cost "1" ( Kac paraya alinacagi. 1TL Varsayılan )
Hocam Redbull a baska çözüm buldum. Her el 1 kez redbull alma hakkı olsa daha iyi olur. Bilginiz varmı bu konuda?

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

noeldayi
Mesajlar: 3167
Kayıt: Prş Oca 19, 2017 6:57 pm
Konum: 213.238.173.35
Server Ip/DNS: 213.238.173.35
Clan İsmi: Moon Gaming
İletişim:

Redbull'u JB ile almak?

Mesaj gönderen noeldayi »

1 dk atıyorum hemen

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

noeldayi
Mesajlar: 3167
Kayıt: Prş Oca 19, 2017 6:57 pm
Konum: 213.238.173.35
Server Ip/DNS: 213.238.173.35
Clan İsmi: Moon Gaming
İletişim:

Redbull'u JB ile almak?

Mesaj gönderen noeldayi »

Kod: Tümünü seç

#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>

#define PLUGIN "Redbull"
#define VERSION "v1.0"
#define AUTHOR "CSDuragi"

#define Tag "CSDuragi"

new bool:has_rb[33]
new cost_cvar, lasts_cvar, speed_cvar
new csa_ayarsifir[33]
new csa_ayarbir[33]
new csa_ayariki[33]
new csa_ayaruc[33]
new g_hak[33]

public plugin_init()
{
	register_plugin(PLUGIN, VERSION, AUTHOR)
	
	register_clcmd("say /redbull","say_cmd_handle")
	register_clcmd("redbull","say_cmd_handle")
	register_logevent( "LogEvent_Round_Start", 2, "1=Round_Start" );
	
	cost_cvar = register_cvar("RB_Cost","-200")
	lasts_cvar = register_cvar("Csa_Redbull_Zamani","15.0")
	speed_cvar = register_cvar("Csa_Redbull_Kosma","650.0")
	
	register_event("CurWeapon","curweap","be")
	
	register_dictionary("GHW_Red_Bull.txt")
}
public LogEvent_Round_Start( )
{
	new players[ 32 ],inum;
	static id;
	get_players( players, inum )
	for( new i = 0;i < inum; i++ )
	{
		id = players[ i ]
		g_hak[id] = 0
	}
}


public curweap(id)
{
	if(is_user_alive(id) && has_rb[id])
	{
		client_cmd(id,"cl_forwardspeed 400;cl_backspeed 400;cl_sidespeed 400")
		set_user_maxspeed(id,get_pcvar_float(speed_cvar))
	}
}

public client_connect(id) has_rb[id]=false
public client_disconnect(id) has_rb[id]=false

public say_cmd_handle(id)
{
	if(!is_user_alive(id))
	{
		if(csa_ayariki[id] == 0)
		{
			renkli_yazi(id,"!g[ !n%s !g] !tOluyken Redbull Alamassin!n.",Tag,id,"MSG_NOBUY_DEAD")
		}
	}
	else if(g_hak[id] >= 1 )
	{
		renkli_yazi(id,"!g[!t- !n%s !t-!g] !tRedbull Kullanma Hakkiniz Bitti!n.",Tag)
		renkli_yazi(id,"!g[!t- !n%s !t-!g] !tHer El !g(1) !tDefa Basabilirsin!n!",Tag)
	}    
	else if(has_rb[id])
	{
		if(csa_ayariki[id] == 0)
		{
			renkli_yazi(id,"!g[!t- !n%s !t-!g] !tZaten, Su Anda RedBull'a sahipsin!n.",Tag)
		}
	}
	else if(cs_get_user_money(id)<get_pcvar_num(cost_cvar))
	{
		if(csa_ayariki[id] == 0)
		{
			client_print(id,print_chat,"!nYetersiz !gTL",id,"MSG_NOBUY_POOR",get_pcvar_num(cost_cvar))
		}
	}
	else
	{
		g_hak[id] += 1
		cs_set_user_money(id,cs_get_user_money(id) - get_pcvar_num(cost_cvar),1)
		has_rb[id]=true
		set_task(get_pcvar_float(lasts_cvar),"redbull_over",id)
		set_task(1.0,"plus_hp",id,"",0,"b")
		if(csa_ayarbir[id] == 0)
		{
			set_user_gravity(id,0.5)
		}
		if(csa_ayarsifir[id] == 0)
		{
			set_user_maxspeed(id,get_pcvar_float(speed_cvar))
		}
		if(csa_ayariki[id] == 0)
		{
			renkli_yazi(id,"!g[!t- !n%s !t-!g] !tRedBull Kanatlandirir!n!",Tag)
			renkli_yazi(id,"!g[!t- !n%s !t-!g] !tRedBull Performansi arttirir!n, !tOzellikle stres veya gergin iken!n.",Tag)
		}
		renkli_yazi(id,"!g[!t- !n%s !t-!g] !tKalan Redbull Basma Hakkiniz!n: !g(%d)",Tag , 1 - g_hak[id] )
	}
}

public plus_hp(id)
{
	if(csa_ayaruc[id] == 0)
	{
		if(has_rb[id]) set_user_health(id,get_user_health(id)+1)
	}
}

public redbull_over(id)
{
	if(is_user_connected(id))
	{
		new adnm[33]
		get_user_name(id,adnm,32)
		has_rb[id]=false
		if(csa_ayariki[id] == 0)
		{
			renkli_yazi(id,"!g[!t- !n%s !t-!g] !tRedBull'unuz !gBitti! !tTekrar Almak Icin !gZ !tTusuna Basiniz!n.",Tag)
		}
		set_user_gravity(id,1.0)
		
		set_user_maxspeed(id,320.0)
		
		remove_task(id)
	}
}
stock renkli_yazi(const id, const input[], any:...)
{
	new count = 1, players[32];
	static msg[191];
	vformat(msg, 190, input, 3);
	
	replace_all(msg, 190, "!n", "^x01"); // Default Renk(Sarı)
	replace_all(msg, 190, "!g", "^x04"); // Yeşil Renk
	replace_all(msg, 190, "!t", "^x03"); // Takım Renk( CT mavi , T kırmızı )
	
	if (id) players[0] = id; else get_players(players, count, "ch");
	for (new i = 0; i < count; i++)
	{
		if (is_user_connected(players[i]))
		{
			
			message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i]);
			write_byte(players[i]);
			write_string(msg);
			message_end();
		}
		
	}
}
buyrun

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Konu Sahibi
tamdemS
Yasaklı Üye
Yasaklı Üye
Mesajlar: 175
Kayıt: Prş Oca 11, 2018 5:50 pm
Konum: İstanbul
Server Ip/DNS: cs133.csduragi.com
Clan İsmi: melankoliaJB

Redbull'u JB ile almak?

Mesaj gönderen tamdemS »

noeldayi yazdı:

Kod: Tümünü seç

#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>

#define PLUGIN "Redbull"
#define VERSION "v1.0"
#define AUTHOR "CSDuragi"

#define Tag "CSDuragi"

new bool:has_rb[33]
new cost_cvar, lasts_cvar, speed_cvar
new csa_ayarsifir[33]
new csa_ayarbir[33]
new csa_ayariki[33]
new csa_ayaruc[33]
new g_hak[33]

public plugin_init()
{
	register_plugin(PLUGIN, VERSION, AUTHOR)
	
	register_clcmd("say /redbull","say_cmd_handle")
	register_clcmd("redbull","say_cmd_handle")
	register_logevent( "LogEvent_Round_Start", 2, "1=Round_Start" );
	
	cost_cvar = register_cvar("RB_Cost","-200")
	lasts_cvar = register_cvar("Csa_Redbull_Zamani","15.0")
	speed_cvar = register_cvar("Csa_Redbull_Kosma","650.0")
	
	register_event("CurWeapon","curweap","be")
	
	register_dictionary("GHW_Red_Bull.txt")
}
public LogEvent_Round_Start( )
{
	new players[ 32 ],inum;
	static id;
	get_players( players, inum )
	for( new i = 0;i < inum; i++ )
	{
		id = players[ i ]
		g_hak[id] = 0
	}
}


public curweap(id)
{
	if(is_user_alive(id) && has_rb[id])
	{
		client_cmd(id,"cl_forwardspeed 400;cl_backspeed 400;cl_sidespeed 400")
		set_user_maxspeed(id,get_pcvar_float(speed_cvar))
	}
}

public client_connect(id) has_rb[id]=false
public client_disconnect(id) has_rb[id]=false

public say_cmd_handle(id)
{
	if(!is_user_alive(id))
	{
		if(csa_ayariki[id] == 0)
		{
			renkli_yazi(id,"!g[ !n%s !g] !tOluyken Redbull Alamassin!n.",Tag,id,"MSG_NOBUY_DEAD")
		}
	}
	else if(g_hak[id] >= 1 )
	{
		renkli_yazi(id,"!g[!t- !n%s !t-!g] !tRedbull Kullanma Hakkiniz Bitti!n.",Tag)
		renkli_yazi(id,"!g[!t- !n%s !t-!g] !tHer El !g(1) !tDefa Basabilirsin!n!",Tag)
	}    
	else if(has_rb[id])
	{
		if(csa_ayariki[id] == 0)
		{
			renkli_yazi(id,"!g[!t- !n%s !t-!g] !tZaten, Su Anda RedBull'a sahipsin!n.",Tag)
		}
	}
	else if(cs_get_user_money(id)<get_pcvar_num(cost_cvar))
	{
		if(csa_ayariki[id] == 0)
		{
			client_print(id,print_chat,"!nYetersiz !gTL",id,"MSG_NOBUY_POOR",get_pcvar_num(cost_cvar))
		}
	}
	else
	{
		g_hak[id] += 1
		cs_set_user_money(id,cs_get_user_money(id) - get_pcvar_num(cost_cvar),1)
		has_rb[id]=true
		set_task(get_pcvar_float(lasts_cvar),"redbull_over",id)
		set_task(1.0,"plus_hp",id,"",0,"b")
		if(csa_ayarbir[id] == 0)
		{
			set_user_gravity(id,0.5)
		}
		if(csa_ayarsifir[id] == 0)
		{
			set_user_maxspeed(id,get_pcvar_float(speed_cvar))
		}
		if(csa_ayariki[id] == 0)
		{
			renkli_yazi(id,"!g[!t- !n%s !t-!g] !tRedBull Kanatlandirir!n!",Tag)
			renkli_yazi(id,"!g[!t- !n%s !t-!g] !tRedBull Performansi arttirir!n, !tOzellikle stres veya gergin iken!n.",Tag)
		}
		renkli_yazi(id,"!g[!t- !n%s !t-!g] !tKalan Redbull Basma Hakkiniz!n: !g(%d)",Tag , 1 - g_hak[id] )
	}
}

public plus_hp(id)
{
	if(csa_ayaruc[id] == 0)
	{
		if(has_rb[id]) set_user_health(id,get_user_health(id)+1)
	}
}

public redbull_over(id)
{
	if(is_user_connected(id))
	{
		new adnm[33]
		get_user_name(id,adnm,32)
		has_rb[id]=false
		if(csa_ayariki[id] == 0)
		{
			renkli_yazi(id,"!g[!t- !n%s !t-!g] !tRedBull'unuz !gBitti! !tTekrar Almak Icin !gZ !tTusuna Basiniz!n.",Tag)
		}
		set_user_gravity(id,1.0)
		
		set_user_maxspeed(id,320.0)
		
		remove_task(id)
	}
}
stock renkli_yazi(const id, const input[], any:...)
{
	new count = 1, players[32];
	static msg[191];
	vformat(msg, 190, input, 3);
	
	replace_all(msg, 190, "!n", "^x01"); // Default Renk(Sarı)
	replace_all(msg, 190, "!g", "^x04"); // Yeşil Renk
	replace_all(msg, 190, "!t", "^x03"); // Takım Renk( CT mavi , T kırmızı )
	
	if (id) players[0] = id; else get_players(players, count, "ch");
	for (new i = 0; i < count; i++)
	{
		if (is_user_connected(players[i]))
		{
			
			message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i]);
			write_byte(players[i]);
			write_string(msg);
			message_end();
		}
		
	}
}
buyrun
Teşekkürler hocam.

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Konu Sahibi
tamdemS
Yasaklı Üye
Yasaklı Üye
Mesajlar: 175
Kayıt: Prş Oca 11, 2018 5:50 pm
Konum: İstanbul
Server Ip/DNS: cs133.csduragi.com
Clan İsmi: melankoliaJB

Redbull'u JB ile almak?

Mesaj gönderen tamdemS »

Her el 1 kez redbull alabilme pluginini her el 3 kez almaya ayarlayabilecek varmı ?
Bu mesaja eklenen dosyaları görüntülemek için gerekli izinlere sahip değilsiniz.

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Konu Sahibi
tamdemS
Yasaklı Üye
Yasaklı Üye
Mesajlar: 175
Kayıt: Prş Oca 11, 2018 5:50 pm
Konum: İstanbul
Server Ip/DNS: cs133.csduragi.com
Clan İsmi: melankoliaJB

Redbull'u JB ile almak?

Mesaj gönderen tamdemS »

Her el 1 kez redbull alabilme pluginini her el 3 kez almaya ayarlayabilecek varmı ?

Link:
Linklerini gizle
Linki Kopyala
Cevapla