| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 70,850
» Latest member: blablahldc
» Forum threads: 38,148
» Forum posts: 351,856
Full Statistics
|
| Online Users |
There are currently 440 online users. » 0 Member(s) | 438 Guest(s) Applebot, Google
|
| Latest Threads |
Ilir 'washere' Amati - AI...
Forum: CS - Config. (CFG)
Last Post: alking1
06-08-2026, 09:35 AM
» Replies: 1
» Views: 129
|
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 322
|
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 287
|
Rreth pyetjes "A krijoi Z...
Forum: Feja Islame
Last Post: SHTRIGA
06-06-2026, 08:40 PM
» Replies: 3
» Views: 254
|
Lule MOD |FUNNY|
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 07:56 PM
» Replies: 10
» Views: 1,069
|
Kërko Addons [+SHQIP]
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 05:09 PM
» Replies: 1,138
» Views: 89,593
|
[Tutorial] Clean, Optimiz...
Forum: CS - Tutorial's - Tip & Tricks
Last Post: washere
06-06-2026, 11:56 AM
» Replies: 0
» Views: 85
|
Addons Zombie Plague v6.2...
Forum: AMX - Addon's
Last Post: Learti Zm
06-05-2026, 09:39 PM
» Replies: 35
» Views: 6,198
|
Ndihmë - Zombie Mod
Forum: Amx Mod X
Last Post: T.bo
06-05-2026, 08:09 PM
» Replies: 14
» Views: 677
|
Counter-Strike EG0-UCP (2...
Forum: Applications
Last Post: ValmirRamadani1
06-02-2026, 09:27 AM
» Replies: 4
» Views: 645
|
|
|
| [Tuturial] Admin Prefix |
|
Posted by: ProTeXx; - 12-18-2024, 12:38 AM - Forum: CS - Tutorial's - Tip & Tricks
- Replies (10)
|
 |
Prsh Djem Sot Do Tju Tregoj Si Me Editu Admin Prefix !Dmth Muni Me Bo [KRYESOR] [HEAD] [ADMIN] Etj Me Ndiqni Me Vemendje !
Hapi 1. E Merni Codin .SMa ! Dhe Klikojm Ne Programin AMX Mod X Studio
- Per Ato Qe Sekan Ne Pc Programin Amx Mod X1.8.1 Shkarko Poshte
Shkarko AMX MOD X1.8.1
Admin Prefix .SMA Copy e Bon
Code: /* Plugin generated by AMXX-Studio */
#include < amxmodx >
#define PLUGIN "Rang Admin Chat Fixed"
#define VERSION "1.0.0"
#pragma semicolon 1
#define MAX_GROUPS 15
// --| 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.
enum CsTeams
{
CS_TEAM_UNASSIGNED = 0,
CS_TEAM_T = 1,
CS_TEAM_CT = 2,
CS_TEAM_SPECTATOR = 3
};
new g_szGroups[ MAX_GROUPS ][ ] =
{
"Detinator",
"Owner",
"Owner V.I.P.",
"Co-Owner",
"Co-Owner V.I.P.",
"GoD",
"GoD V.I.P.",
"Moderator",
"Moderator V.I.P.",
"Administrator",
"Administrator V.I.P.",
"Helper",
"Helper V.I.P.",
"Slot",
"Slot V.I.P."
};
new g_szGroupsFlags[ MAX_GROUPS ][ ] =
{
"abcdefghijklmnopqrstu",
"abcdefijkosnwy",
"abcdefijkosntwy",
"abcdefijkoswy",
"abcdefijkostwy",
"bcdefijkswy",
"bcdefijkstwy",
"bcdefijkwy",
"bcdefijktwy",
"bcdefijky",
"bcdefijkty",
"bcdefij",
"bcdefijt",
"bi",
"bit"
};
new g_iGroupsFlagsValues[ MAX_GROUPS ];
public plugin_init( )
{
//Plugin original creat de Ex3cuTioN ( pluginuri-extream/rangadminchat-t81702.html )!
register_plugin( PLUGIN, VERSION, "Askhanar" );
register_clcmd("say","HookClCmdSay");
register_clcmd("say_team","HookClCmdSayTeam");
for( new i = 0; i < MAX_GROUPS; i++ )
g_iGroupsFlagsValues[ i ] = read_flags( g_szGroupsFlags[ i ] );
// Add your code here...
}
public HookClCmdSay( id )
{
if( is_user_bot( id ) )
return PLUGIN_CONTINUE;
static szChat[ 192 ];
read_args( szChat, sizeof( szChat ) - 1 );
remove_quotes( szChat );
if( equali( szChat,"" ) )
return PLUGIN_CONTINUE;
static szName[ 32 ];
get_user_name( id, szName, sizeof ( szName ) -1 );
if( is_user_admin( id ) )
{
static i; i = 0;
for( i = 0; i < MAX_GROUPS; i++ )
{
if( get_user_flags( id ) == g_iGroupsFlagsValues[ i ] )
{
switch( get_user_team( id ) )
{
case CS_TEAM_T: ColorChat( 0, RED,"^x04[%s]^x03%s^x01:%s", g_szGroups[ i ], szName, szChat );
case CS_TEAM_CT: ColorChat( 0, BLUE,"^x04[%s]^x03%s^x01:%s", g_szGroups[ i ], szName, szChat );
case CS_TEAM_SPECTATOR: ColorChat( 0, GREY,"^x04[%s]^x03%s^x01:%s", g_szGroups[ i ], szName, szChat );
}
break;
}
}
}
else
{
switch( get_user_team( id ) )
{
case CS_TEAM_T: ColorChat( 0, RED,"^x03%s%s^x01:%s", is_user_alive( id ) ? "" : "*Mort* ", szName, szChat );
case CS_TEAM_CT: ColorChat( 0, BLUE,"^x03%s%s^x01:%s", is_user_alive( id ) ? "" : "*Mort* ", szName, szChat );
case CS_TEAM_SPECTATOR: ColorChat( 0, GREY,"^x03%s^x01:%s", szName, szChat );
}
}
return PLUGIN_HANDLED_MAIN;
}
public HookClCmdSayTeam( id )
{
if( is_user_bot( id ) )
return PLUGIN_CONTINUE;
static szChat[ 192 ];
read_args( szChat, sizeof( szChat ) - 1 );
remove_quotes( szChat );
if( equali( szChat,"" ) )
return PLUGIN_CONTINUE;
static szName[ 32 ];
get_user_name( id, szName, sizeof ( szName ) -1 );
static iPlayers[ 32 ];
static iPlayersNum;
get_players( iPlayers, iPlayersNum, "ch" );
if( !iPlayersNum )
return PLUGIN_CONTINUE;
static iPlayer, i;
if( is_user_admin( id ) )
{
static x; x = 0;
for( x = 0; x < MAX_GROUPS; i++ )
{
if( get_user_flags( id ) == g_iGroupsFlagsValues[ x ] )
{
for( i = 0; i < iPlayersNum; i++ )
{
iPlayer = iPlayers[ i ];
if( get_user_team( id ) == get_user_team( iPlayer ) )
{
switch( get_user_team( id ) )
{
case CS_TEAM_T: ColorChat( iPlayer, RED, "^x04[%s]^x03(Terrorist) %s^x01:%s", g_szGroups[ x ], szName, szChat );
case CS_TEAM_CT: ColorChat( iPlayer, BLUE, "^x04[%s]^x03(Counter-Terrorist) %s^x01:%s", g_szGroups[ x ], szName, szChat );
case CS_TEAM_SPECTATOR: ColorChat( iPlayer, GREY, "^x04[%s]^x03(Spectator) %s^x01:%s", g_szGroups[ x ], szName, szChat );
}
}
}
break;
}
}
}
else
{
for( i = 0; i < iPlayersNum; i++ )
{
iPlayer = iPlayers[ i ];
if( get_user_team( id ) == get_user_team( iPlayer ) )
{
switch( get_user_team( id ) )
{
case CS_TEAM_T: ColorChat( iPlayer, RED, "^x03(Terrorist)%s%s^x01:%s", is_user_alive( id ) ? "" : "*Mort* ", szName, szChat );
case CS_TEAM_CT: ColorChat( iPlayer, BLUE, "^x03(Counter-Terrorist)%s%s^x01:%s", is_user_alive( id ) ? "" : "*Mort* ", szName, szChat );
case CS_TEAM_SPECTATOR: ColorChat( iPlayer, GREY, "^x03(Spectator) %s^x01:%s", szName, szChat );
}
}
}
}
return PLUGIN_HANDLED_MAIN;
}
// From amxmisc.inc
stock is_user_admin( id )
{
new __flags=get_user_flags(id);
return (__flags>0 && !(__flags&ADMIN_USER));
}
// -----------------------
// --| 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.
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ ansicpg1252\\ deff0\\ deflang1033{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ f0\\ fs16 \n\\ par }
*/
Shkojm Ne AMX MOd Studio e Bejm Paste Shiko Foton ?
![[Image: dA4H71C.png]](http://i.imgur.com/dA4H71C.png)
Tash Si Te Editojm Te Bejm KRYESOR ADMIN ETJ
![[Image: G65CH5O.png]](http://i.imgur.com/G65CH5O.png)
I Bejm Kreiit Gati Tash Si Me Bo Compile Prej .SMA Ne Ammx
E Bejm Save Filen
![[Image: ZJwIDnn.png]](http://i.imgur.com/ZJwIDnn.png)
Tash Ne Desktop e Keni Folderin Addons hym Ati Shkojm /amxmodx / scripting / Ketu e Keni 1 Program Qe Quhet amxxpc
E Kapni Filen Qe e Keni Bo Gati Me EmriAdminPreFIX.Sma Dhe e Qojni Mbi Te amxxpc Shiko Foton Me Vemendje !
![[Image: pjyhICQ.png]](http://i.imgur.com/pjyhICQ.png)
Dhe Tani Automatikisht Do Tju Dale Amxx File Ne Desktop
|
|
|
| runA~ CFG |
|
Posted by: MeeLOsGashi - 12-17-2024, 06:41 PM - Forum: CS - Config. (CFG)
- Replies (1)
|
 |
Code: Keto CFG Mkan Kryjtur Pun :D
Mendoj se edhe juve do ju kryente
Code: unbindall
bind "TAB" "+showscores; timeleft"
bind "ENTER" "+attack"
bind "ESCAPE" "cancelselect"
bind "SPACE" "+jump"
bind "'" "+moveup"
bind "+" "sizeup"
bind "," "buyammo1"
bind "-" "sizedown"
bind "." "buyammo2"
bind "/" "+movedown"
bind "0" "slot10"
bind "1" "slot1"
bind "2" "slot2"
bind "3" "slot3"
bind "4" "slot4"
bind "5" "slot5"
bind "6" "slot6"
bind "7" "slot7"
bind "8" "slot8"
bind "9" "slot9"
bind ";" "+mlook"
bind "=" "sizeup"
bind "[" "invprev"
bind "]" "invnext"
bind "`" "toggleconsole"
bind "a" "+moveleft"
bind "b" "buy"
bind "c" "radio3"
bind "d" "+moveright"
bind "e" "+use"
bind "f" "weapon_flashbang"
bind "g" "drop"
bind "j" "cheer"
bind "l" "showbriefing"
bind "m" "chooseteam"
bind "n" "nightvision"
bind "o" "buyequip"
bind "q" "lastinv"
bind "r" "+reload"
bind "s" "+back"
bind "t" "impulse 201"
bind "u" "messagemode2"
bind "w" "+forward"
bind "x" "radio2"
bind "y" "messagemode"
bind "z" "radio1"
bind "~" "toggleconsole"
bind "UPARROW" "+forward"
bind "DOWNARROW" "+back"
bind "LEFTARROW" "+left"
bind "RIGHTARROW" "+right"
bind "ALT" "+strafe"
bind "CTRL" "+duck"
bind "SHIFT" "+speed"
bind "F1" "autobuy"
bind "F2" "rebuy"
bind "F5" "snapshot"
bind "F6" "save quick"
bind "F7" "load quick"
bind "F8" "+showscores"
bind "F9" "host_framerate 0.00000000001"
bind "F10" "host_framerate 0.001"
bind "F11" "host_framerate 0.05"
bind "F12" "host_framerate 0"
bind "INS" "say_team It's time to kick ass and chew bubble gum. And I'm all out of gum"
bind "DEL" "say (arn0ld script) g0Od lUcK aNd hAvE fuN (arn0ld script)"
bind "PGDN" "say FLASHMAN!!!!! DIDIDIDUDU DUDUDIDUDIDI DUDUDIDI"
bind "PGUP" "say (KOM IGEN DA SCRIPT) !!!!! SISTA !!!!! (KOM IGEN DA SCRIPT)"
bind "HOME" "say (arn0ld script) wHinE dEteCtEd (arn0ld script)"
bind "END" "say . . . _[._. ]/ PIU PIU PIU !!"
bind "KP_INS" "say_team Flash. FLAAASH!"
bind "KP_DEL" "say_team -> REMEMBER <- COMMUNICATION IS THE KEY TO SUCCESS -> REMEMBER <-"
bind "MWHEELDOWN" "+jump"
bind "MOUSE1" "+attack"
bind "MOUSE2" "+attack2"
bind "MOUSE3" "buyequip"
bind "MOUSE4" "weapon_smokegrenade"
bind "PAUSE" "pause"
_cl_autowepswitch "0"
_snd_mixahead "0.1"
ati_npatch "0"
ati_subdiv "0"
bgmvolume "1.000000"
bottomcolor "0"
brightness "2"
cl_allowdownload "0"
cl_allowupload "1"
cl_backspeed "400"
cl_cmdbackup "2"
cl_cmdrate "101"
cl_corpsestay "180"
cl_crosshair_color "50 250 50"
cl_crosshair_size "large"
cl_crosshair_translucent "0"
cl_dlmax "128"
cl_download_ingame "1"
cl_dynamiccrosshair "0"
cl_forwardspeed "400"
cl_himodels "0"
cl_idealpitchscale "0.8"
cl_lc "1"
cl_logocolor "#Valve_Red"
cl_logofile "skull"
cl_lw "1"
cl_minmodels "0"
cl_radartype "0"
cl_righthand "1"
cl_shadows "1"
cl_timeout "60"
cl_updaterate "101"
cl_vsmoothing "0.05"
cl_weather "0"
con_color "255 180 30"
console "0.000000"
crosshair "1.000000"
fastsprites "0"
fps_max "101"
fps_modem "0.0"
gamma "3"
gl_dither "1"
gl_flipmatrix "0"
gl_fog "1"
gl_monolights "0"
gl_overbright "0"
gl_polyoffset "0.100000"
hisound "1"
hpk_maxsize "4"
hud_capturemouse "1"
hud_centerid "1"
hud_draw "1"
hud_fastswitch "1"
hud_saytext_internal "1"
hud_takesshots "0"
joystick "0"
lookspring "0.000000"
lookstrafe "0.000000"
m_filter "0"
m_forward "1"
m_pitch "0.022"
m_side "0.8"
m_yaw "0.022"
model "arctic"
MP3FadeTime "2.0"
MP3Volume "0.110000"
mp_decals "300"
name "runA~"
net_graph "3"
net_graphpos "1"
net_scale "5"
r_bmodelhighfrac "5.0"
r_detailtextures "0"
s_a3d "0.0"
s_automax_distance "30.0"
s_automin_distance "2.0"
s_bloat "2.0"
s_distance "60"
s_doppler "0.0"
s_eax "0.0"
s_leafnum "0"
s_max_distance "1000.0"
s_min_distance "8.0"
s_numpolys "200"
s_polykeep "1000000000"
s_polysize "10000000"
s_refdelay "4"
s_refgain "0.4"
s_rolloff "1.0"
s_verbwet "0.25"
sensitivity "2.4"
skin ""
spec_autodirector_internal "1"
spec_drawcone_internal "1"
spec_drawnames_internal "1"
spec_drawstatus_internal "1"
spec_mode_internal "4"
spec_pip "0"
suitvolume "0.25"
sv_aim "0"
sv_voiceenable "1"
team ""
topcolor "0"
viewsize "110"
voice_enable "1"
voice_forcemicrecord "1"
voice_modenable "1"
voice_scale "1"
volume "0.15"
setinfo "_ah" "0"
setinfo "_vgui_menus" "0"
+mlook
+jlook
exec userconfig.cfg
http://www.mediafire.com/download/5awkg1...allexd.rar[/quote]
|
|
|
| Basebuilder Addons 2014 [VIP + New Classes + Shop |
|
Posted by: joni.h - 12-17-2024, 05:29 PM - Forum: AMX - Addon's
- Replies (9)
|
 |
Sod Vendosa Mi qit Do addonsa BaseBulider Shqip
![[Image: OYIFmcv.png]](http://i.imgur.com/OYIFmcv.png)
- Përshkrimi: Ad-dons shum te mira per serverin tuaj "BaseBulider" , per me shum ndiqni me posht informacionet.
- Modat Aktive
- Moda I AmxModX
- Moda II Metamod
- Moda III Dproto
- Për: Linux
![[Image: orQLgii.png]](http://i.imgur.com/orQLgii.png)
- Autori i Addonsav: Alphaa
- Version: 6.5
- Falenderojm: Alphaa.
![[Image: YamMKgu.png]](http://i.imgur.com/YamMKgu.png)
![[Image: BlRZVVi.png]](http://i.imgur.com/BlRZVVi.png)
![[Image: Wb7qA47.png]](http://i.imgur.com/Wb7qA47.png)
Lista E Pluginsave-
Code: bb_classes65.amxx debug ;/ ;/ ;/
bb_shop_shqip.amxx debug
bb_vip_new.amxx debug ;/
; Alte Pluginuri:
weapon.amxx ; -
stuck.amxx ; -
nademodes.amxx ; -
customsky.amxx ; -
amx_lights.amxx ; -
connect_exec.amxx ; -
ultimate_who.amxx ;
amx_gore_ultimate.amxx ; -
camera.amxx ; -
lasermine_023.amxx ; -
give_money.amxx ; -
resetscore.amxx ; -
amx_t_ct_spec.amxx ; -
frostnades.amxx ; -
allchat.amxx ; -
AMXX-Booster.amxx ; -
last_maps.amxx ; -
team_join.amxx ; -
advanced_gag.amxx ; -
multifastdl.amxx
eskinfo.amxx
rx_round_hud.amxx
JoReklam.amxx
multifastdl.amxx
parasuta.amxx debug
stuck.amxx
RD.amxx
v_race_human_bb.amxx
adminhook.amxx
Unlimited_Clip_Ammo. amxx
Addonsat Kan Fast Dl Vet
![[Image: dzysCv0.png]](http://i.imgur.com/dzysCv0.png)
Code: Addons http://www.mediafire.com/download/9jkjn4hlljxoxer/addons.zip
Code: Sound http://www.mediafire.com/download/y6rupqkd6ad1pir/sound.zip
[info]Falenderojm Alphaa[/info]
|
|
|
| Ja se çfarë do të thotë emri ‘Samsung’ |
|
Posted by: WesternNighT - 12-17-2024, 03:41 PM - Forum: IT Zone
- Replies (4)
|
 |
![[Image: N6f83J1.jpg]](http://i.imgur.com/N6f83J1.jpg)
Samsung është kompania që krijon telefonat e mençur më të famshëm me platformë mobile Android në botë dhe derisa ajo është duke luftuar të mbajë përfitimet në nivelin më të lartë, e gjithë vëmendja e konsumatorëve të kompanisë është tek Galaxy S6 dhe Galaxy S6 Edge, telefona që mund të ndryshojnë drejtimin e kompanisë.
Por, a e dini se çfarë do të thotë në të vërtetë ‘Samsung’? Pasi që nuk e dimë gjuhën koreane, sigurisht që edhe kuptimi i emrit të brendit Samsung është i paqartë.
Nëse e përkthejmë fjalën Samsung në gjuhën shqipe do të thotë ‘tre yje’, emër i vendosur nga themeluesi i kompanisë Samsung, Lee Byung, i cili qysh në fillim të hapjes së kompanisë ka pasur si qëllim që kompania një ditë të bëhet e fuqishme dhe e qëndrueshme sikur yjet në qiell, transmeton itshqip.com.
Por pse pikërisht tre yje, çfarë ka të bëjë numri ‘tre’ me suksesin, pse jo dy apo katër? Arsyeja e kësaj duket të jetë e fshehur në gjuhën koreane ku numri ‘tre’ është përdorur si simbol që përfaqëson diçka të madhe dhe të fuqishme.
Pra, dëshira për tu bërë një kompani e madhe dhe e fuqishme është arritur nga Samsung brenda viteve të fundit. Megjithatë, për tu bërë një ‘bishë’ vërtetë edhe më madhështore duke arritur kulminacionin, telefonat e mençur Galaxy S6 dhe Galaxy S6 Edge mund të jenë ata që do të vendosin për fatin e kompanisë
[spoiler]Burimi : Itshqip.[/spoiler]
|
|
|
|