Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 70,850
» Latest member: blablahldc
» Forum threads: 38,148
» Forum posts: 351,856

Full Statistics

Online Users
There are currently 441 online users.
» 0 Member(s) | 438 Guest(s)
Applebot, Bing, Google

Latest Threads
Ilir 'washere' Amati - AI...
Forum: CS - Config. (CFG)
Last Post: alking1
06-08-2026, 09:35 AM
» Replies: 1
» Views: 132
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 334
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 294
Rreth pyetjes "A krijoi Z...
Forum: Feja Islame
Last Post: SHTRIGA
06-06-2026, 08:40 PM
» Replies: 3
» Views: 265
Lule MOD |FUNNY|
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 07:56 PM
» Replies: 10
» Views: 1,072
Kërko Addons [+SHQIP]
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 05:09 PM
» Replies: 1,138
» Views: 89,663
[Tutorial] Clean, Optimiz...
Forum: CS - Tutorial's - Tip & Tricks
Last Post: washere
06-06-2026, 11:56 AM
» Replies: 0
» Views: 87
Addons Zombie Plague v6.2...
Forum: AMX - Addon's
Last Post: Learti Zm
06-05-2026, 09:39 PM
» Replies: 35
» Views: 6,214
Ndihmë - Zombie Mod
Forum: Amx Mod X
Last Post: T.bo
06-05-2026, 08:09 PM
» Replies: 14
» Views: 683
Counter-Strike EG0-UCP (2...
Forum: Applications
Last Post: ValmirRamadani1
06-02-2026, 09:27 AM
» Replies: 4
» Views: 649

 
  Upgrades Mod 2.0 [B I O]
Posted by: KIQ - 06-16-2023, 02:58 PM - Forum: AMX - Plugin's - Replies (2)

PERSHKRIMI:
Ky eshte nje plugins i ber vetem per zm biohazard i cili ka shum efekte tmira ne loj Wink

Cfar permban upgrade ?
• Health - Rrit Gjakun
• Armor - Rrit Pancirin
• Speed - Rrit Shpejtsin
• Gravity - Zvoglon Gravitetin
• Stealth - Jek Gjurmet/Hapat S'Degjohen

Sendet qe gjenden ne ket plugins:
• Battle Aura
• Bunny Hop
• Climbing Gear
• Crowbar
• E.S.P
• Hp Regen
• Long Jump
• No Recoil
• Perfect Aim
• Scout Auto Fire
• Stealth Shoes
• Sun Glasses
• True Armor
• Unlimited Ammo
• Fall Protection
• Grenade Trap
• Laser Mine
• Bulls Eye
• Bullet Proof Vest
• Super Shotgun
• Multi Jump

CVAR:
um_enable - (0/1 ndal dhe leshon modin)
um_autosavexp - (0/1 ruan xp kur jeket lojtari nga loja dhe futet)
um_itemsremoved - (0/1 Jek senet pasi i blen)

KOMANDAT E ADMINIT:
um_addxp - <@all/t/ct>/<name><xp> Jep XP te lojtari
um_setlevel - <name><level> Qet lojtarin ne tjeter nivel.

KOMANDAT:
say /ummenu - Menuja
say /upgrade - Menuja pasive
say /itemshop - Shopi/dyqani i itemsav/senev
say /myitem - Sendet/items e mi
say /itemlist - Tregon Sendet/Item me pershkrim/description
say /umhelp - Menyja e ndihmes
say /dropitems - Jek sendet/item


[legend=SHKARKO:]upgrades_mod_version_1.0.2.zip
upgrades.amxx
upgrades.sma[/legend]

kichz
<!-- m --><a class="postlink" href="http://www.newzm.org" onclick="window.open(this.href);return false;">http://www.newzm.org</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.artanrexha.com" onclick="window.open(this.href);return false;">http://www.artanrexha.com</a><!-- m -->

kk kaloni mir Wink

PS: mfalni nese skeni kuptu najsen po do sene skishin perkthin nshqip qe u duft mja pershtat diqysh :S , tregoni qa skuptoni.

Print this item

  Respawn Zombie [BIO]
Posted by: KIQ - 06-16-2023, 02:37 PM - Forum: AMX - Plugin's - Replies (1)

PERSHKRIMI:
Ky eshte nje plugins i cili ringjall/respawn zombien ne biohazard pasi qe aj vdes.

CVAR:
bh_time_respawn 10 - Pas 10 sekondav ringjallet

INSTALIMI:
Pasi boni compiler sman, e futni ne /cstrike/addons/amxmodx/plugins/
Dhe pastaj e vendosni emrin e plguginsit ne /cstrike/addons/amxmodx/configs/plugins.ini

SMA:

Code:
#include <amxmodx> #include <biohazard> #include <hamsandwich> #define TASK_RESPAWN 123543 new cvar_respawn, cvar_timerespawn public plugin_init() { register_plugin("[Bio] Addon: Zombie Spawn", "1.0", "Dias") register_event("DeathMsg", "event_death", "a") register_event("HLTV", "event_newround", "a", "1=0", "2=0") cvar_respawn = register_cvar("bh_zombie_respawn", "1") cvar_timerespawn = register_cvar("bh_time_respawn", "10.0") } public event_death() { new victim = read_data(2) if(is_user_zombie(victim) && get_pcvar_num(cvar_respawn)) { set_task(get_pcvar_float(cvar_timerespawn), "do_respawn", victim+TASK_RESPAWN) message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("BarTime"), _, victim) write_short(get_pcvar_num(cvar_timerespawn)) message_end() client_print(victim, print_center, "You will be respawned after: %i seconds", get_pcvar_num(cvar_timerespawn)) } } public event_newround(id) { if(task_exists(id+TASK_RESPAWN)) { remove_task(id+TASK_RESPAWN) message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("BarTime"), _, id) write_short(0) message_end() } } public do_respawn(taskid) { static id id = taskid - TASK_RESPAWN if(is_user_zombie(id)) { ExecuteHam(Ham_CS_RoundRespawn, id) client_print(id, print_center, "You have been respawned") } }

kichz
<!-- m --><a class="postlink" href="http://www.newzm.org" onclick="window.open(this.href);return false;">http://www.newzm.org</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.artanrexha.com" onclick="window.open(this.href);return false;">http://www.artanrexha.com</a><!-- m -->

kk kaloni mir Wink

Print this item

  ESK Background X'X Version (FSH)
Posted by: FidanSH - 06-16-2023, 02:05 PM - Forum: CS - Background - Replies (1)

ESK Background X'X Version (FSH)

SCREENSHOT
[Image: 2u8hs10.png]

SHKARKO - KLIKO POSHT
[reklam][/reklam]
ESK BACKGROUND - DOWNLOAD

Version X'X - ESK Background
Counter Strike 1.6 Background
Nice Background
Dedicated : Esportskosova
Creator : FidanSH

Resolution :
640x480
800x600
1024x768

TUTORIAL, si te vendosim nje Background ne CS Tone
http://esportskosova.com/forum/viewtopic...21&t=46128

Print this item

  ESK Wallpaper ;FSH;
Posted by: FidanSH - 06-16-2023, 01:57 PM - Forum: Punimet - Replies (6)

[Image: smzu4m.jpg]

Name of Wallpaper : ESK
Creator : FidanSH
Editor : FidanSH
Photoshop version CC
Brush , Text.

Size : 1366 x 768

Print this item

  FIX - Updates are disabled by the administrator !
Posted by: KIQ - 06-16-2023, 12:27 PM - Forum: PC - Tutoriale/Mesime - No Replies

Kush e ka kit problem - Updates are disabled by the administrator ne chrome (me bo update) , zgjidhja eshte shum e leht Wink

1: Hapim cmd shkruajm: regedit

2: Shkojme: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\

3: Klikojme dy her ne UpdateDefault ose DefaultUpdate

4: Vendosim nga 0 ne 1

5: Jekne regeditin dhe shkoni nbrowser boni update Wink

Link:
chrome://chrome/

Print this item

  Moviemaking Pack by miproduction
Posted by: stronk - 06-16-2023, 12:04 PM - Forum: Applications - Replies (12)

Moviemaking pack by miproduction

Nuk osht moviemaking pack by me po osht ai qe un e perdori ,
p.s ma kan kerku shum njerz edhe thash ta postoj ktu


Ky moviemaking pack permban
  • *HLAE
    *Virtual Dub
    *SonyVegas 10.0
    *Hud Remover
    *Colors(effects)
    *Lens Flares
    *Sounds
    *Fonts
    *New Blue FX
    *Light Footages
    *Magic Bullets Looks


Hud_Remover - Screenshot

[Image: AZgMvgo.jpg]
Hud_Remover sherben per mos dukjen e saytext, radar, hp, money, roundtime etj

Gjithashtu kto moviemaking pack jan ne kualitetin HD, dmth mundeson kualitetin me te mir gjat editimit



Download Link:

Code:
http://uploading.com/files/21f41em2/MovieMaking%2BPACK.rar/

Print this item

  [Lojëtar] strongi
Posted by: stronk - 06-16-2023, 11:27 AM - Forum: ESK Rekrutimi - Replies (2)

Emri : Solid Hyseni
Nick : strongi
Mosha : 14
LAN/ONLINE : 2jat
Vendi : Lipjan
Demo : CoomingSoon~

Print this item

  LOCK
Posted by: rroNy - 06-16-2023, 11:16 AM - Forum: ESK Rekrutimi - Replies (9)

LOCK

Print this item

  ADDONS CLANWAR 8.0 by : rroni2h
Posted by: rroNy - 06-16-2023, 10:22 AM - Forum: AMX - Addon's - Replies (13)

Kto ADDONS Jan ne versioni e UCP 8.0 Kto jon addons fenomenale nuk kan llag as ping Smile

Shkarko Addonsat


Kto Addons permbajn :
[spoiler]; AMX Mod X plugins

; Admin Base - Always one has to be activated
admin.amxx ; admin base (required for any admin-related)
;admin_sql.amxx ; admin base - SQL version (comment admin.amxx)

; Basic
admincmd.amxx ; basic admin console commands
adminhelp.amxx ; help command for admin console commands
adminslots.amxx ; slot reservation
multilingual.amxx ; Multi-Lingual management

; Menus
menufront.amxx ; front-end for admin menus
cmdmenu.amxx ; command menu (speech, settings)
plmenu.amxx ; players menu (kick, ban, client cmds.)
;telemenu.amxx ; teleport menu (Fun Module required!)
mapsmenu.amxx ; maps menu (vote, changelevel)
pluginmenu.amxx ; Menus for commands/cvars organized by plugin

; Chat / Messages
adminchat.amxx ; console chat commands
antiflood.amxx ; prevent clients from chat-flooding the server
scrollmsg.amxx ; displays a scrolling message
imessage.amxx ; displays information messages
adminvote.amxx ; vote commands

; Map related
;nextmap.amxx ; displays next map in mapcycle
;mapchooser.amxx ; allows to vote for next map
;timeleft.amxx ; displays time left on map

; Configuration
pausecfg.amxx ; allows to pause and unpause some plugins
statscfg.amxx ; allows to manage stats plugins via menu and commands

; Counter-Strike
restmenu.amxx ; restrict weapons menu
statsx.amxx ; stats on death or round end (CSX Module required!)
miscstats.amxx ; bunch of events announcement for Counter-Strike
;stats_logging.amxx ; weapons stats logging (CSX Module required!)

; Enable to use AMX Mod plugins
;amxmod_compat.amxx ; AMX Mod backwards compatibility layer

; Custom - Added by rroni2h

Map_Spawns_Editor.amxx ;Mapat i krijon spawn-at dmth 32 vs 32
show_ip.amxx ;Tregon ip-n e playerave
amx_gag.amxx ;Ndalon playerat me shkru me say dhe teamsay
loading_banner.amxx ;eSportsKosova.com Loading Banner
fixcrash.amxx ;Nuk lejo qe serveri te crashirat nga exploitet.
ad_manager.amxx ;Autoresponder / Adversment
autorr.amxx ;AMX Lo3 (live on three)
mesazh.amxx ;mesazh Visit
ucp.amxx
ucp_menu.amxx[/spoiler]

Print this item

  Si Ta Zvoglojm Counter Strike 1.6
Posted by: rroNy - 06-16-2023, 08:39 AM - Forum: CS - Tutorial's - Tip & Tricks - No Replies

Pershendetje Sot Do Tju Tregoj Si Ta Zvoglojm Counter Strike 1.6 shikojeni ne foto
[Image: 6MzP0uE.jpg]

Ndiqni Hapat e Mi Smile

Hapim Counter Strike 1.6
[Image: HURvUlW.png]

Shkojm Options
[Image: Ydg40WM.png]

Shkojm Video
[Image: JuID1hN.png]

Pastaj Klikojm te Run in a Windos
[Image: pIL62Ve.png]

Pastaj Zgjedhim Resolution psh nese e bojm 800 x 600 osht qaq e madhe Smile
[Image: d02HUFh.png]

Nese ju kom ndihmu boneni +1 thanks

Print this item