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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 70,858
» Latest member: omo-serviceSmuth
» Forum threads: 38,155
» Forum posts: 351,863

Full Statistics

Online Users
There are currently 618 online users.
» 0 Member(s) | 615 Guest(s)
Applebot, Baidu, Bing

Latest Threads
GOLDEN TIMES
Forum: Diskutime rreth eSportsKosova
Last Post: FidanSH
08-28-2026, 02:40 AM
» Replies: 0
» Views: 32
Multi-Account Browser Saf...
Forum: Qendrat e lojërave
Last Post: omo-serviceSmuth
08-26-2026, 06:30 PM
» Replies: 0
» Views: 44
2captcha analog: OMOCaptc...
Forum: Qendrat e lojërave
Last Post: omocaptchaSmuth
08-23-2026, 10:10 AM
» Replies: 0
» Views: 52
Негабаритные перевозки по...
Forum: Qendrat e lojërave
Last Post: SamiSix
08-23-2026, 09:26 AM
» Replies: 0
» Views: 55
A smarter way to preview ...
Forum: Qendrat e lojërave
Last Post: zjohndrk6666
08-20-2026, 07:19 PM
» Replies: 0
» Views: 64
how to break ReCaptcha v....
Forum: Gjuhë Angleze
Last Post: MaryAxork6174
08-15-2026, 01:06 AM
» Replies: 0
» Views: 60
A jena Live me postu !
Forum: Diskutime rreth eSportsKosova
Last Post: PIONERI
08-12-2026, 05:12 PM
» Replies: 0
» Views: 78
Ilir 'washere' Amati - AI...
Forum: CS - Config. (CFG)
Last Post: alking1
06-08-2026, 09:35 AM
» Replies: 1
» Views: 270
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 701
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 703

 
  funky nice shots and 3k vs NOMERCY
Posted by: f u n k y - 10-21-2022, 08:06 PM - Forum: Zbavitje - Replies (5)

funky nice shots in esk torunament and 3k vs NOMERCY

[youtube]http://www.youtube.com/watch?v=2GZyE_st1XA[/youtube]

Print this item

  Bibita//Cover//-barron
Posted by: barronz - 10-21-2022, 07:58 PM - Forum: Punimet - Replies (1)

for mah bro itouch


[Image: 1UXkN.png]

Print this item

  Celulari më i hollë në botë nga ZTE
Posted by: LND. - 10-21-2022, 05:36 PM - Forum: IT Zone - Replies (2)

[Image: ZTE-Grand-S-collage-13.jpg]
Kompania kineze e telekomunikacionit ZTE planifikon të thyejë disa rekorde në CES 2013, ku në mesin e tyre është celulari më i hollë në botë nga ekranet 5 inç (12.7 cm).

ZTE Grand S ka një ekran 5 inç, rezolucion 1920 x1080 pikselë dhe një kamerë 13 megapikselë, duke pasur një trashësi vetëm 6.9 mm.

Specifikimet e tjera nuk janë zyrtarizuar ende, por Unwired View raporton se pajisja do të ketë një procesor 1.5 GHz quad-core Qualcomm Snapdragon S4 procesor, 2GB RAM dhe një bateri 2,500 mAh.

Çmimi thuhet se do të jetë rreth $449, por saktësisht do të zbulohet në CES 2013, që do të mbahet nga data 8-11 Janar në Las Vegas./krokodili

Print this item

  BCD HUDTiMER PLUGiN
Posted by: LND. - 10-21-2022, 05:32 PM - Forum: AMX - Plugin's - No Replies

Hello

shumica nga ju e dini per pluginin ne fjal
per ata qe nuk e din:
me ket plugin ti mund te shohesh kohen e shperthimit te c4 me nje HUD MESSAGE,si ne foto

[Image: attachment.php?attachmentid=13913&d=1171654283]
[Image: attachment.php?attachmentid=13914&d=1171654289]

Source Code

Quote:/*
Bomb Countdown HUD Timer v0.2 by SAMURAI

* Plugin Details
With this plugin enabled, you can see an colored Hud Message with the c4 time left, until explode
Remeber : if until explode remains less than 8 seconds, hudmessage color will be red, if > 7 will be yellow and > 13 will be green.

* Required Modules:
- CSX

* Credits:
- Emp` for various indicates
- Alka for full tests

* Changelog
- Fixed Events problems
- Pcvars
- Fixed any bug on plugin

*/


#include <amxmodx>
#include <csx>

#define PLUGIN "Bomb Countdown HUD Timer"
#define VERSION "0.2"
#define AUTHOR "SAMURAI"

new g_c4timer, pointnum;
new bool:b_planted = false;

new g_msgsync;


public plugin_init()
{
register_plugin(PLUGIN,VERSION,AUTHOR);

pointnum = get_cvar_pointer("mp_c4timer");

register_logevent("newRound", 2, "1=Round_Start");
register_logevent("endRound", 2, "1=Round_End");
register_logevent("endRound", 2, "1&Restart_Round_");

g_msgsync = CreateHudSyncObj();
}

public newRound()
{
g_c4timer = -1;
remove_task(652450);
b_planted = false;
}

public endRound()
{
g_c4timer = -1;
remove_task(652450);
}

public bomb_planted()
{
b_planted = true;
g_c4timer = get_pcvar_num(pointnum);
dispTime()
set_task(1.0, "dispTime", 652450, "", 0, "b");
}

public bomb_defused()
{
if(b_planted)
{
remove_task(652450);
b_planted = false;
}

}

public bomb_explode()
{
if(b_planted)
{
remove_task(652450);
b_planted = false;
}

}

public dispTime()
{
if(!b_planted)
{
remove_task(652450);
return;
}


if(g_c4timer >= 0)
{
if(g_c4timer > 13) set_hudmessage(0, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 7) set_hudmessage(150, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
else set_hudmessage(150, 0, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);

ShowSyncHudMsg(0, g_msgsync, "C4: %d", g_c4timer);

--g_c4timer;
}

}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1033\\ f0\\ fs16 \n\\ par }
*/



Shkarko Ketu

Print this item

  Startup Control Panel #Freeware#
Posted by: LiridonMurati - 10-21-2022, 04:38 PM - Forum: Programet - Replies (3)

[Image: ?di=WZTS]
Startup Control Panel eshte nje panel kontrollimi notifikues qe ju mundeson shume lehte te konfiguroni programet qe deshironi te startojn se bashku me kompjuterin. Eshte i lehte per perdorim, shume i vogel ne madhesi qe nuk do e ngarkoj sistemin tuaj. Nje vegel me vlere per administrimin e sistemit.

Code:
http://www.mlin.net/StartupCPL.shtml
Direct Link

Print this item

  EsportsKosova/signature/with snow/new year
Posted by: roxxanne. - 10-21-2022, 02:43 PM - Forum: Punimet - Replies (2)

eSportsKosova
[Image: jasin32.jpg]
+1 cHeesY.
[Image: esk3.jpg]

Smile

Print this item

  IEM6 GC Kiev: zneel vs SK Gaming
Posted by: Fatbardh M. - 10-21-2022, 02:13 PM - Forum: Zbavitje - No Replies

[youtube]http://www.youtube.com/watch?v=_K0EWaDyd1Y[/youtube]

Print this item

  LioNet 2011: XLN7 vs aftermAth
Posted by: kn1ght.x - 10-21-2022, 01:11 PM - Forum: Zbavitje - No Replies

[youtube]http://www.youtube.com/watch?v=LwtvXm5mU8c[/youtube]

Print this item

  UNiTED LOGO
Posted by: destro - 10-21-2022, 11:13 AM - Forum: Punimet - Replies (3)

UNiTED TEAM
LOGO
BYBig Grin.BERISHA

[Image: mZOw9.png]
[Image: ri95V.png]

Print this item

  New Year 2013: klay vs MyRush
Posted by: kn1ght.x - 10-20-2022, 09:29 PM - Forum: Zbavitje - Replies (2)

[youtube]http://www.youtube.com/watch?v=44agdvovLRg[/youtube]

Print this item