[Cerere]Restrictie Mesaje

Categoria cu cereri de pluginuri si nu numai.

Moderators: Moderatori ajutatori, Moderatori, Echipa eXtreamCS.com

Forum rules
Accesează link-ul pentru a putea vedea regulile forumului

Daca doriti sa vi se modifice un plugin, va rugam postati aici .
TrrrQ
Fost moderator
Fost moderator
Posts: 2594
Joined: 04 Feb 2013, 00:31
Detinator Steam: Da
Reputatie: Membru Club eXtreamCS (3 luni)
Restrictie moderator!
Unban achitat (x2)
Fost moderator
Fond eXtream: 8
Has thanked: 135 times
Been thanked: 67 times
Contact:

05 Apr 2013, 20:56

Un plugin care sa nu-ti dea voie sa trimiti mesaje pe server in primele 15 secunde si sa scrie in chat asa:
Culoare TEAM: Abia ai intrat pe server, asteapta 10,9,8... secunde pentru a putea scrie.
Iar atunci cand da voie sa scrie,sa poata trimite mesaje in chat o data la 2 secunde.Dupa ce a scris ceva in chat si a mai scris iar in primele 2 secunde sa i apara:
Culoare TEAM: Asteapta x secunde pentru a putea scrie din nou
Filme Online HD subtitrate fără reclame automate: https://filmeonline-hd.com
Prezentarea site-ului: https://www.youtube.com/watch?v=k4K3tgEkYjw
RoyalServer 2
TrrrQ
Fost moderator
Fost moderator
Posts: 2594
Joined: 04 Feb 2013, 00:31
Detinator Steam: Da
Reputatie: Membru Club eXtreamCS (3 luni)
Restrictie moderator!
Unban achitat (x2)
Fost moderator
Fond eXtream: 8
Has thanked: 135 times
Been thanked: 67 times
Contact:

06 Apr 2013, 16:32

upppp
Filme Online HD subtitrate fără reclame automate: https://filmeonline-hd.com
Prezentarea site-ului: https://www.youtube.com/watch?v=k4K3tgEkYjw
User avatar
tre3fla
Membru eXtream
Membru eXtream
Posts: 5317
Joined: 27 May 2012, 11:15
Detinator Steam: Da
CS Status: Allah Akbar !
Detinator server CS: Nu
SteamID: /id/tre3fla_xxx
Has thanked: 14 times
Been thanked: 129 times

06 Apr 2013, 20:13

| Afiseaza codul
#include <amxmodx>
#include <csx>

#define TALK_TIME 15

new bool:
    RemoveSpeak[33],
    Cronometru[33]

public plugin_init()
{	
	register_clcmd("say", "check_chat")
	register_clcmd("say_team", "check_chat")
}

public client_putinserver(id)
{
	Cronometru[id] = TALK_TIME - 1
	RemoveSpeak[id] = true
	set_task(15.0, "acces_speak", id)
}

public acces_speak(id)
{
    RemoveSpeak[id] = false
}

public check_chat(id)
{
    if(RemoveSpeak[id])
    {
        ColorChat(id, "^3Abia ai intrat pe server, asteapta %d secunde pentru a scrie!", Cronometru[id]--)
    }
}

stock ColorChat(const id, const input[], any:...) 
{
	new count = 1, players[32]
	static msg[191]
	vformat(msg, 190, input, 3)
 
	replace_all(msg, 190, "!x04", "^4")
	replace_all(msg, 190, "!x01", "^1")
	replace_all(msg, 190, "!x03", "^3")
 
	if(id) players[0] = id
	else get_players(players, count, "ch") 
	{
	    for(new i = 0; i < count; i++) 
		{
	        if(is_user_connected(players)) 
			{
	            message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players)
	            write_byte(players)
	            write_string(msg)
	            message_end()
	        }
	    }
	} 
}


Banuiesc ca ceva de genu ar functiona :-? ...
Cat despre chestia cu scrisu in chat odata la 2 secunde vezi ca te ajuta pluginul antiflood.amxx ...
doar citeste-i cvar-urile :)
TrrrQ
Fost moderator
Fost moderator
Posts: 2594
Joined: 04 Feb 2013, 00:31
Detinator Steam: Da
Reputatie: Membru Club eXtreamCS (3 luni)
Restrictie moderator!
Unban achitat (x2)
Fost moderator
Fond eXtream: 8
Has thanked: 135 times
Been thanked: 67 times
Contact:

06 Apr 2013, 20:39

Multumesc Frumos.
O sa revin cu edit dupa ce il pun!


edit
nu merge
l-am pus pe server si cand intru merge sa scriu si apare ca mai ai de asteptat 0 secunde
Filme Online HD subtitrate fără reclame automate: https://filmeonline-hd.com
Prezentarea site-ului: https://www.youtube.com/watch?v=k4K3tgEkYjw
User avatar
Ulquiorra
Fost moderator
Fost moderator
Posts: 2053
Joined: 25 Jul 2010, 17:29
Detinator Steam: Da
CS Status: A mai trecut o zi asteptand una mai buna
Detinator server CS: Retras.
SteamID: STEAM_0:1:318247XX
Reputatie: Fost Scripter eXtreamCS
Fost Moderator ajutator
Nick anterior: Askhanar
Location: Braila, Romania.
Has thanked: 215 times
Been thanked: 1132 times

07 Apr 2013, 00:04

Code: Select all

#include <amxmodx>
#include <csx>

#define TALK_TIME 15

new bool:
    RemoveSpeak[33],
    Cronometru[33]

public plugin_init()
{	
	register_clcmd("say", "check_chat")
	register_clcmd("say_team", "check_chat")
}

public client_putinserver(id)
{
	Cronometru[id] = TALK_TIME - 1
	RemoveSpeak[id] = true
	set_task(15.0, "acces_speak", id)
}

public acces_speak(id)
{
    RemoveSpeak[id] = false
}

public check_chat(id)
{
    if(RemoveSpeak[id])
    {
        ColorChat(id, "^3Abia ai intrat pe server, asteapta %d secunde pentru a scrie!", Cronometru[id]--)
    }
}

stock ColorChat(const id, const input[], any:...) 
{
	new count = 1, players[32]
	static msg[191]
	vformat(msg, 190, input, 3)
 
	replace_all(msg, 190, "!x04", "^4")
	replace_all(msg, 190, "!x01", "^1")
	replace_all(msg, 190, "!x03", "^3")
 
	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()
	        }
	    }
	} 
}
-->

Code: Select all

#include <amxmodx>
#include <csx>

#define TALK_TIME 15

new bool:
    RemoveSpeak[33],
    Cronometru[33]

public plugin_init()
{	
	register_clcmd("say", "check_chat")
	register_clcmd("say_team", "check_chat")
}

public client_putinserver(id)
{
	Cronometru[id] = TALK_TIME - 1
	RemoveSpeak[id] = true
	set_task(15.0, "acces_speak", id)
}

public acces_speak(id)
{
    RemoveSpeak[id] = false
}

public check_chat(id)
{
    if(RemoveSpeak[id])
    {
        ColorChat(id, "^3Abia ai intrat pe server, asteapta %d secunde pentru a scrie!", Cronometru[id]--)
        return PLUGIN_HANDLED_MAIN;
    }
}

stock ColorChat(const id, const input[], any:...) 
{
	new count = 1, players[32]
	static msg[191]
	vformat(msg, 190, input, 3)
 
	replace_all(msg, 190, "!x04", "^4")
	replace_all(msg, 190, "!x01", "^1")
	replace_all(msg, 190, "!x03", "^3")
 
	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()
	        }
	    }
	} 
}
btw it ispun de acum ca mesajul nu o sa apara corect.. adica chiar daca mai ai 5 secunde de scris. .el nu o sa arate corect.

o sa il modific mai tarziu putin, sa citesc si retu de cereri
Caut o persoana dedicata care se pricepe si stie ce face.
Vreau sa creeze si sa se ocupe de administrarea unui server de MU, da e vorba de vechiul joc..ma gandesc undeva la un season 3 ep1/2.

O sa achizitionez un domeniu .ro.
Totodata sponsorizez absolut orice este necesar.
Ma puteti contacta prin: http://solo.to/stfrzv
TrrrQ
Fost moderator
Fost moderator
Posts: 2594
Joined: 04 Feb 2013, 00:31
Detinator Steam: Da
Reputatie: Membru Club eXtreamCS (3 luni)
Restrictie moderator!
Unban achitat (x2)
Fost moderator
Fond eXtream: 8
Has thanked: 135 times
Been thanked: 67 times
Contact:

07 Apr 2013, 00:39

eroarea asta:

Image

dar lasa ca il pun dupa ce il termini :)
Filme Online HD subtitrate fără reclame automate: https://filmeonline-hd.com
Prezentarea site-ului: https://www.youtube.com/watch?v=k4K3tgEkYjw
User avatar
Ulquiorra
Fost moderator
Fost moderator
Posts: 2053
Joined: 25 Jul 2010, 17:29
Detinator Steam: Da
CS Status: A mai trecut o zi asteptand una mai buna
Detinator server CS: Retras.
SteamID: STEAM_0:1:318247XX
Reputatie: Fost Scripter eXtreamCS
Fost Moderator ajutator
Nick anterior: Askhanar
Location: Braila, Romania.
Has thanked: 215 times
Been thanked: 1132 times

07 Apr 2013, 01:40

@TrrrQ: era doar un warning.
btw si plugin`ul lui trefla mergea.

incearca:
| Afiseaza codul
/* Plugin generated by AMXX-Studio */

#include <amxmodx>

#define PLUGIN "Block Chat"
#define VERSION "1.0"


// --| CC_ColorChat.
enum Color
{
	NORMAL = 1, 		// Culoarea care o are jucatorul setata in cvar-ul scr_concolor.
	GREEN, 			// Culoare Verde.
	TEAM_COLOR, 		// Culoare Rosu, Albastru, Gri.
	GREY, 			// Culoarea Gri.
	RED, 			// Culoarea Rosu.
	BLUE, 			// Culoarea Albastru.
};

new TeamName[  ][  ] = 
{
	"",
	"TERRORIST",
	"CT",
	"SPECTATOR"
};
// --| CC_ColorChat.

// --| Tag-ul mesajului din chat.
new const g_szTag[ ] = "[Tag Mesaj]";
// --| ---------------------------------

// --| Cate secunde este blocat chat`ul.
new Float:g_fBlockedSeconds = 15.0;
// --| ---------------------------------

// --| De aici e treaba mea :D.
new Float:g_fGameTime[ 33 ];

public plugin_init( )
{
	register_plugin( PLUGIN, VERSION, "Askhanar" );
	
	register_clcmd( "say","ClCmdSayOrSayTeam" );
	register_clcmd( "say_team","ClCmdSayOrSayTeam" );
	
	// Add your code here...
}

public client_connect( id )	g_fGameTime[ id ] = get_gametime( ) + g_fBlockedSeconds;

public ClCmdSayOrSayTeam( id )
{
	static Float:fGameTime;
	fGameTime = get_gametime( );
	
	if( g_fGameTime[ id ] > fGameTime )
	{
		
		ColorChat( id, RED, "^x04%s^x01 Doar ce te-ai conectat pe server, asteapta^x03 %.1f^x01 secunde !", g_szTag, g_fGameTime[ id ] - fGameTime );
		return PLUGIN_HANDLED_MAIN;
	}
	
	return PLUGIN_CONTINUE;
	
}

// --| CC_ColorChat.
ColorChat(  id, Color:iType, const msg[  ], { Float, Sql, Result, _}:...  )
{
	
	// Daca nu se afla nici un jucator pe server oprim TOT. Altfel dam de erori..
	if( !get_playersnum( ) ) return;
	
	new szMessage[ 256 ];

	switch( iType )
	{
		 // Culoarea care o are jucatorul setata in cvar-ul scr_concolor.
		case NORMAL:	szMessage[ 0 ] = 0x01;
		
		// Culoare Verde.
		case GREEN:	szMessage[ 0 ] = 0x04;
		
		// Alb, Rosu, Albastru.
		default: 	szMessage[ 0 ] = 0x03;
	}

	vformat(  szMessage[ 1 ], 251, msg, 4  );

	// Ne asiguram ca mesajul nu este mai lung de 192 de caractere.Altfel pica server-ul.
	szMessage[ 192 ] = '^0';
	

	new iTeam, iColorChange, iPlayerIndex, MSG_Type;
	
	if( id )
	{
		MSG_Type  =  MSG_ONE_UNRELIABLE;
		iPlayerIndex  =  id;
	}
	else
	{
		iPlayerIndex  =  CC_FindPlayer(  );
		MSG_Type = MSG_ALL;
	}
	
	iTeam  =  get_user_team( iPlayerIndex );
	iColorChange  =  CC_ColorSelection(  iPlayerIndex,  MSG_Type, iType);

	CC_ShowColorMessage(  iPlayerIndex, MSG_Type, szMessage  );
		
	if(  iColorChange  )	CC_Team_Info(  iPlayerIndex, MSG_Type,  TeamName[ iTeam ]  );

}

CC_ShowColorMessage(  id, const iType, const szMessage[  ]  )
{
	
	static bool:bSayTextUsed;
	static iMsgSayText;
	
	if(  !bSayTextUsed  )
	{
		iMsgSayText  =  get_user_msgid( "SayText" );
		bSayTextUsed  =  true;
	}
	
	message_begin( iType, iMsgSayText, _, id  );
	write_byte(  id  );		
	write_string(  szMessage  );
	message_end(  );
}

CC_Team_Info( id, const iType, const szTeam[  ] )
{
	static bool:bTeamInfoUsed;
	static iMsgTeamInfo;
	if(  !bTeamInfoUsed  )
	{
		iMsgTeamInfo  =  get_user_msgid( "TeamInfo" );
		bTeamInfoUsed  =  true;
	}
	
	message_begin( iType, iMsgTeamInfo, _, id  );
	write_byte(  id  );
	write_string(  szTeam  );
	message_end(  );

	return 1;
}

CC_ColorSelection(  id, const iType, Color:iColorType)
{
	switch(  iColorType  )
	{
		
		case RED:	return CC_Team_Info(  id, iType, TeamName[ 1 ]  );
		case BLUE:	return CC_Team_Info(  id, iType, TeamName[ 2 ]  );
		case GREY:	return CC_Team_Info(  id, iType, TeamName[ 0 ]  );

	}

	return 0;
}

CC_FindPlayer(  )
{
	new iMaxPlayers  =  get_maxplayers(  );
	
	for( new i = 1; i <= iMaxPlayers; i++ )
		if(  is_user_connected( i )  )
			return i;
	
	return -1;
}
// --| CC_ColorChat.

@tr3fla: ce faceai cu #include <csx> ?? :D
Caut o persoana dedicata care se pricepe si stie ce face.
Vreau sa creeze si sa se ocupe de administrarea unui server de MU, da e vorba de vechiul joc..ma gandesc undeva la un season 3 ep1/2.

O sa achizitionez un domeniu .ro.
Totodata sponsorizez absolut orice este necesar.
Ma puteti contacta prin: http://solo.to/stfrzv
TrrrQ
Fost moderator
Fost moderator
Posts: 2594
Joined: 04 Feb 2013, 00:31
Detinator Steam: Da
Reputatie: Membru Club eXtreamCS (3 luni)
Restrictie moderator!
Unban achitat (x2)
Fost moderator
Fond eXtream: 8
Has thanked: 135 times
Been thanked: 67 times
Contact:

07 Apr 2013, 01:46

l-am pus dar uite apare mesaju

Image
Filme Online HD subtitrate fără reclame automate: https://filmeonline-hd.com
Prezentarea site-ului: https://www.youtube.com/watch?v=k4K3tgEkYjw
User avatar
Ulquiorra
Fost moderator
Fost moderator
Posts: 2053
Joined: 25 Jul 2010, 17:29
Detinator Steam: Da
CS Status: A mai trecut o zi asteptand una mai buna
Detinator server CS: Retras.
SteamID: STEAM_0:1:318247XX
Reputatie: Fost Scripter eXtreamCS
Fost Moderator ajutator
Nick anterior: Askhanar
Location: Braila, Romania.
Has thanked: 215 times
Been thanked: 1132 times

07 Apr 2013, 02:25

am pus HANDLED_MAIN in loc de HANDLED.

incearca cum.
| Afiseaza codul
/* Plugin generated by AMXX-Studio */

#include <amxmodx>

#define PLUGIN "Block Chat"
#define VERSION "1.0"


// --| CC_ColorChat.
enum Color
{
	NORMAL = 1, 		// Culoarea care o are jucatorul setata in cvar-ul scr_concolor.
	GREEN, 			// Culoare Verde.
	TEAM_COLOR, 		// Culoare Rosu, Albastru, Gri.
	GREY, 			// Culoarea Gri.
	RED, 			// Culoarea Rosu.
	BLUE, 			// Culoarea Albastru.
};

new TeamName[  ][  ] = 
{
	"",
	"TERRORIST",
	"CT",
	"SPECTATOR"
};
// --| CC_ColorChat.

// --| Tag-ul mesajului din chat.
new const g_szTag[ ] = "[Tag Mesaj]";
// --| ---------------------------------

// --| Cate secunde este blocat chat`ul.
new Float:g_fBlockedSeconds = 15.0;
// --| ---------------------------------

// --| De aici e treaba mea :D.
new Float:g_fGameTime[ 33 ];

public plugin_init( )
{
	register_plugin( PLUGIN, VERSION, "Askhanar" );
	
	register_clcmd( "say","ClCmdSayOrSayTeam" );
	register_clcmd( "say_team","ClCmdSayOrSayTeam" );
	
	// Add your code here...
}

public client_connect( id )	g_fGameTime[ id ] = get_gametime( ) + g_fBlockedSeconds;

public ClCmdSayOrSayTeam( id )
{
	static Float:fGameTime;
	fGameTime = get_gametime( );
	
	if( g_fGameTime[ id ] > fGameTime )
	{
		
		ColorChat( id, RED, "^x04%s^x01 Doar ce te-ai conectat pe server, asteapta^x03 %.1f^x01 secunde !", g_szTag, g_fGameTime[ id ] - fGameTime );
		return PLUGIN_HANDLED;
	}
	
	return PLUGIN_CONTINUE;
	
}

// --| CC_ColorChat.
ColorChat(  id, Color:iType, const msg[  ], { Float, Sql, Result, _}:...  )
{
	
	// Daca nu se afla nici un jucator pe server oprim TOT. Altfel dam de erori..
	if( !get_playersnum( ) ) return;
	
	new szMessage[ 256 ];

	switch( iType )
	{
		 // Culoarea care o are jucatorul setata in cvar-ul scr_concolor.
		case NORMAL:	szMessage[ 0 ] = 0x01;
		
		// Culoare Verde.
		case GREEN:	szMessage[ 0 ] = 0x04;
		
		// Alb, Rosu, Albastru.
		default: 	szMessage[ 0 ] = 0x03;
	}

	vformat(  szMessage[ 1 ], 251, msg, 4  );

	// Ne asiguram ca mesajul nu este mai lung de 192 de caractere.Altfel pica server-ul.
	szMessage[ 192 ] = '^0';
	

	new iTeam, iColorChange, iPlayerIndex, MSG_Type;
	
	if( id )
	{
		MSG_Type  =  MSG_ONE_UNRELIABLE;
		iPlayerIndex  =  id;
	}
	else
	{
		iPlayerIndex  =  CC_FindPlayer(  );
		MSG_Type = MSG_ALL;
	}
	
	iTeam  =  get_user_team( iPlayerIndex );
	iColorChange  =  CC_ColorSelection(  iPlayerIndex,  MSG_Type, iType);

	CC_ShowColorMessage(  iPlayerIndex, MSG_Type, szMessage  );
		
	if(  iColorChange  )	CC_Team_Info(  iPlayerIndex, MSG_Type,  TeamName[ iTeam ]  );

}

CC_ShowColorMessage(  id, const iType, const szMessage[  ]  )
{
	
	static bool:bSayTextUsed;
	static iMsgSayText;
	
	if(  !bSayTextUsed  )
	{
		iMsgSayText  =  get_user_msgid( "SayText" );
		bSayTextUsed  =  true;
	}
	
	message_begin( iType, iMsgSayText, _, id  );
	write_byte(  id  );		
	write_string(  szMessage  );
	message_end(  );
}

CC_Team_Info( id, const iType, const szTeam[  ] )
{
	static bool:bTeamInfoUsed;
	static iMsgTeamInfo;
	if(  !bTeamInfoUsed  )
	{
		iMsgTeamInfo  =  get_user_msgid( "TeamInfo" );
		bTeamInfoUsed  =  true;
	}
	
	message_begin( iType, iMsgTeamInfo, _, id  );
	write_byte(  id  );
	write_string(  szTeam  );
	message_end(  );

	return 1;
}

CC_ColorSelection(  id, const iType, Color:iColorType)
{
	switch(  iColorType  )
	{
		
		case RED:	return CC_Team_Info(  id, iType, TeamName[ 1 ]  );
		case BLUE:	return CC_Team_Info(  id, iType, TeamName[ 2 ]  );
		case GREY:	return CC_Team_Info(  id, iType, TeamName[ 0 ]  );

	}

	return 0;
}

CC_FindPlayer(  )
{
	new iMaxPlayers  =  get_maxplayers(  );
	
	for( new i = 1; i <= iMaxPlayers; i++ )
		if(  is_user_connected( i )  )
			return i;
	
	return -1;
}
// --| CC_ColorChat.
Caut o persoana dedicata care se pricepe si stie ce face.
Vreau sa creeze si sa se ocupe de administrarea unui server de MU, da e vorba de vechiul joc..ma gandesc undeva la un season 3 ep1/2.

O sa achizitionez un domeniu .ro.
Totodata sponsorizez absolut orice este necesar.
Ma puteti contacta prin: http://solo.to/stfrzv
TrrrQ
Fost moderator
Fost moderator
Posts: 2594
Joined: 04 Feb 2013, 00:31
Detinator Steam: Da
Reputatie: Membru Club eXtreamCS (3 luni)
Restrictie moderator!
Unban achitat (x2)
Fost moderator
Fond eXtream: 8
Has thanked: 135 times
Been thanked: 67 times
Contact:

07 Apr 2013, 02:35

imediat cand intru pe server si scriu apare 9.0..
poate se calculeaza timpu cand dai connect
Filme Online HD subtitrate fără reclame automate: https://filmeonline-hd.com
Prezentarea site-ului: https://www.youtube.com/watch?v=k4K3tgEkYjw
User avatar
Ulquiorra
Fost moderator
Fost moderator
Posts: 2053
Joined: 25 Jul 2010, 17:29
Detinator Steam: Da
CS Status: A mai trecut o zi asteptand una mai buna
Detinator server CS: Retras.
SteamID: STEAM_0:1:318247XX
Reputatie: Fost Scripter eXtreamCS
Fost Moderator ajutator
Nick anterior: Askhanar
Location: Braila, Romania.
Has thanked: 215 times
Been thanked: 1132 times

07 Apr 2013, 02:37

Code: Select all

// --| Cate secunde este blocat chat`ul.
new Float:g_fBlockedSeconds = 15.0;
// --| ---------------------------------
-->

Code: Select all

// --| Cate secunde este blocat chat`ul.
new Float:g_fBlockedSeconds = 21.0;
// --| ---------------------------------
se pare ca se duc 6 secunde pana apuci sa intrii pe sv si de aceea apare 9.
Caut o persoana dedicata care se pricepe si stie ce face.
Vreau sa creeze si sa se ocupe de administrarea unui server de MU, da e vorba de vechiul joc..ma gandesc undeva la un season 3 ep1/2.

O sa achizitionez un domeniu .ro.
Totodata sponsorizez absolut orice este necesar.
Ma puteti contacta prin: http://solo.to/stfrzv
TrrrQ
Fost moderator
Fost moderator
Posts: 2594
Joined: 04 Feb 2013, 00:31
Detinator Steam: Da
Reputatie: Membru Club eXtreamCS (3 luni)
Restrictie moderator!
Unban achitat (x2)
Fost moderator
Fond eXtream: 8
Has thanked: 135 times
Been thanked: 67 times
Contact:

07 Apr 2013, 02:40

da..asa m-am gandit si eu
Multumesc!
Filme Online HD subtitrate fără reclame automate: https://filmeonline-hd.com
Prezentarea site-ului: https://www.youtube.com/watch?v=k4K3tgEkYjw
Post Reply

Return to “Cereri”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 19 guests