| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 613 online users. » 0 Member(s) | 610 Guest(s) Applebot, Baidu, Bing
|
| Latest Threads |
GOLDEN TIMES
Forum: Diskutime rreth eSportsKosova
Last Post: FidanSH
Yesterday, 02:40 AM
» Replies: 0
» Views: 15
|
Multi-Account Browser Saf...
Forum: Qendrat e lojërave
Last Post: omo-serviceSmuth
08-26-2026, 06:30 PM
» Replies: 0
» Views: 27
|
2captcha analog: OMOCaptc...
Forum: Qendrat e lojërave
Last Post: omocaptchaSmuth
08-23-2026, 10:10 AM
» Replies: 0
» Views: 35
|
Негабаритные перевозки по...
Forum: Qendrat e lojërave
Last Post: SamiSix
08-23-2026, 09:26 AM
» Replies: 0
» Views: 37
|
A smarter way to preview ...
Forum: Qendrat e lojërave
Last Post: zjohndrk6666
08-20-2026, 07:19 PM
» Replies: 0
» Views: 50
|
how to break ReCaptcha v....
Forum: Gjuhë Angleze
Last Post: MaryAxork6174
08-15-2026, 01:06 AM
» Replies: 0
» Views: 47
|
A jena Live me postu !
Forum: Diskutime rreth eSportsKosova
Last Post: PIONERI
08-12-2026, 05:12 PM
» Replies: 0
» Views: 69
|
Ilir 'washere' Amati - AI...
Forum: CS - Config. (CFG)
Last Post: alking1
06-08-2026, 09:35 AM
» Replies: 1
» Views: 259
|
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 656
|
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 678
|
|
|
| Kërko Plugins [Me Ngjyra] |
|
Posted by: ScrappeR - 10-06-2021, 08:43 AM - Forum: AMX - Plugin's
- Replies (157)
|
 |
Nëse keni ndonjë plugins dhe doni që ta bëni me ngjyra atë'her duhet te qitni këtu filen coden e files dhe ne do e bëjmë.
Shembulli 1 për Resetscore si duket pa ngjyra!
![[Image: 85506612.png]](http://img705.imageshack.us/img705/904/85506612.png)
Shembulli 2 për Resetscore si duket me ngjyra!
![[Image: qqqkn.png]](http://img217.imageshack.us/img217/4546/qqqkn.png)
Pluginsin që e keni mund ta postoni ktu për ma shpejt me jav kthy kshtu që, postimi bohet me CODE si më posht:
Code: #include <amxmodx>
#include <amxmisc>
#define BLIND (1<<0)
new PlayerFlags[33]
new gmsgFade
public amx_blind(id, level, cid)
{
if(!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED
new arg[32]
read_argv(1, arg, 31)
new user = cmd_target(id, arg, 5)
if(!user)
return PLUGIN_HANDLED
new authid[16], name2[32], authid2[16], name[32]
get_user_authid(id, authid, 15)
get_user_name(id, name, 31)
get_user_authid(user, authid2, 15)
get_user_name(user, name2, 31)
if(PlayerFlags[user] & BLIND)
{
console_print(id, "Client ^"%s^" tani esht blind", name2)
return PLUGIN_HANDLED
}
else
{
new bIndex[2]
bIndex[0] = user
PlayerFlags[user] += BLIND
set_task(1.0, "delay_blind", 0, bIndex, 2)
message_begin(MSG_ONE, gmsgFade, {0,0,0}, user) // use the magic #1 for "one client"
write_short(1<<12) // fade lasts this long duration
write_short(1<<8) // fade lasts this long hold time
write_short(1<<0) // fade type IN
write_byte(0) // fade red
write_byte(0) // fade green
write_byte(0) // fade blue
write_byte(255) // fade alpha
message_end()
}
switch(get_cvar_num("amx_show_activity"))
{
case 2: client_print(0, 3, "ADMIN %s: blinded %s", name, name2)
case 1: client_print(0, 3, "ADMIN: blinded %s", name2)
}
console_print(id, "Client ^"%s^" blinded", name2)
return PLUGIN_HANDLED
}
public amx_unblind(id, level, cid)
{
if(!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED
new arg[32]
read_argv(1, arg, 31)
new user = cmd_target(id, arg, 5)
if(!user)
return PLUGIN_HANDLED
new authid[16], name2[32], authid2[16], name[32]
get_user_authid(id, authid, 15)
get_user_name(id, name, 31)
get_user_authid(user, authid2, 15)
get_user_name(user, name2, 31)
if(PlayerFlags[user] & BLIND)
{
new bIndex[2]
bIndex[0] = user
PlayerFlags[user] -= BLIND
message_begin(MSG_ONE, gmsgFade, {0,0,0}, user) // use the magic #1 for "one client"
write_short(1<<12) // fade lasts this long duration
write_short(1<<8) // fade lasts this long hold time
write_short(1<<1) // fade type OUT
write_byte(0) // fade red
write_byte(0) // fade green
write_byte(0) // fade blue
write_byte(255) // fade alpha
message_end()
}
else
{
console_print(id, "Client ^"%s^" is already unblind", name2)
return PLUGIN_HANDLED
}
switch(get_cvar_num("amx_show_activity"))
{
case 2: client_print(0, 3, "ADMIN %s: unblinded %s", name, name2)
case 1: client_print(0, 3, "ADMIN: unblinded %s", name2)
}
console_print(id, "Client ^"%s^" unblinded", name2)
return PLUGIN_HANDLED
}
public screen_fade(id)
{
new bIndex[2]
bIndex[0] = id
set_task(0.5, "delay_blind", 0, bIndex, 2)
return PLUGIN_CONTINUE
}
public delay_blind(bIndex[])
{
new id = bIndex[0]
if(PlayerFlags[id])
{
// Blind Bit
message_begin(MSG_ONE, gmsgFade, {0,0,0}, id) // use the magic #1 for "one client"
write_short(1<<0) // fade lasts this long duration
write_short(1<<0) // fade lasts this long hold time
write_short(1<<2) // fade type HOLD
write_byte(0) // fade red
write_byte(0) // fade green
write_byte(0) // fade blue
write_byte(255) // fade alpha
message_end()
}
return PLUGIN_CONTINUE
}
public plugin_init()
{
register_plugin("AMX Blind","v2.0","ScrappeR*|*")
gmsgFade = get_user_msgid("ScreenFade")
register_event("ScreenFade", "screen_fade", "b")
register_concmd("amx_blind","amx_blind", ADMIN_KICK, "<Steam ose Emrin>")
register_concmd("amx_unblind","amx_unblind", ADMIN_KICK, "<Steam ose Emrin>")
register_cvar("amx_show_activity","2")
return PLUGIN_CONTINUE
}
Regards
ScrappeR
|
|
|
| Si të fshehim ndonjë dosje në Fotografi?(Video) |
|
Posted by: uranglobal - 10-05-2021, 08:53 PM - Forum: PC - Tutoriale/Mesime
- No Replies
|
 |
Në këtë video mësim do të ju mësojm se si të fshehim ndonjë dosje, dokument, ose diçka tjetër në fotografi. Procesi eshte i thjesht , keni nevoj vetëm për programin e quajtur WinRar, dhe pak njohuri ne cmd. Për më shum shikoni edhe videon.
Burimi: itshqip.com
[youtube]http://www.youtube.com/watch?v=iWSd1qh7P1k[/youtube]
|
|
|
| Hakeret Shqiptar i Kunderpergjigjen Atyre Serbe ! |
|
Posted by: LiridonMurati - 10-05-2021, 08:32 PM - Forum: IT Zone
- Replies (6)
|
 |
Sulmet e fundit të bëra nga serbët në uebfaqen e Postes Shqiptare kanë nxitur hakeret shqiptarët që të ndërmarrin sulme.Grupet shqiptare që kanë sulmuar janë Albanian Cyber Army dhe Kosova Hacker’s Security dhe nje haker aktiv me nofken Th3 P0w3r.
Hakerët kishin sulmuar rreth 40 webfaqe serbe dhe anti shqiptare.Ne faqe kishin vendosur flamurin Shqiptar dhe mbishkrime Anti Serbe.
Faqet e Sulmuara :
<!-- m --><a class="postlink" href="http://www.acvacultura.com" onclick="window.open(this.href);return false;">http://www.acvacultura.com</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.ahead-image.com" onclick="window.open(this.href);return false;">http://www.ahead-image.com</a><!-- m -->
<!-- m --><a class="postlink" href="http://andreiruse.ro/" onclick="window.open(this.href);return false;">http://andreiruse.ro/</a><!-- m -->
<!-- m --><a class="postlink" href="http://dreamstravel.ro/" onclick="window.open(this.href);return false;">http://dreamstravel.ro/</a><!-- m -->
<!-- m --><a class="postlink" href="http://fdl.ro/" onclick="window.open(this.href);return false;">http://fdl.ro/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.grassy.eu/" onclick="window.open(this.href);return false;">http://www.grassy.eu/</a><!-- m -->
<!-- m --><a class="postlink" href="http://hyperliteratura.ro/" onclick="window.open(this.href);return false;">http://hyperliteratura.ro/</a><!-- m -->
<!-- m --><a class="postlink" href="http://noul-ierusalim.info/" onclick="window.open(this.href);return false;">http://noul-ierusalim.info/</a><!-- m -->
<!-- m --><a class="postlink" href="http://premiumfish.net/" onclick="window.open(this.href);return false;">http://premiumfish.net/</a><!-- m -->
<!-- m --><a class="postlink" href="http://roll-up-banner.net/" onclick="window.open(this.href);return false;">http://roll-up-banner.net/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.sejururi-circuite.com/" onclick="window.open(this.href);return false;">http://www.sejururi-circuite.com/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.silversturio.ro/" onclick="window.open(this.href);return false;">http://www.silversturio.ro/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.sister-salon.com/" onclick="window.open(this.href);return false;">http://www.sister-salon.com/</a><!-- m -->
<!-- m --><a class="postlink" href="http://autosbmw.co.rs/" onclick="window.open(this.href);return false;">http://autosbmw.co.rs/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.goasapiens.net/" onclick="window.open(this.href);return false;">http://www.goasapiens.net/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.wbc-vmnet.rs/" onclick="window.open(this.href);return false;">http://www.wbc-vmnet.rs/</a><!-- m -->
<!-- m --><a class="postlink" href="http://futuremedia.rs/" onclick="window.open(this.href);return false;">http://futuremedia.rs/</a><!-- m -->
<!-- m --><a class="postlink" href="http://duga.tv/" onclick="window.open(this.href);return false;">http://duga.tv/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.istmedia.rs/" onclick="window.open(this.href);return false;">http://www.istmedia.rs/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.poljvet-svil.edu.rs/" onclick="window.open(this.href);return false;">http://www.poljvet-svil.edu.rs/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.savezucitelja.com/" onclick="window.open(this.href);return false;">http://www.savezucitelja.com/</a><!-- m -->
<!-- m --><a class="postlink" href="http://projekatoblak.rs/" onclick="window.open(this.href);return false;">http://projekatoblak.rs/</a><!-- m -->
<!-- m --><a class="postlink" href="http://masterprinting.com.mk/" onclick="window.open(this.href);return false;">http://masterprinting.com.mk/</a><!-- m -->
<!-- m --><a class="postlink" href="http://icr.co.rs" onclick="window.open(this.href);return false;">http://icr.co.rs</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.veseliradio.com/" onclick="window.open(this.href);return false;">http://www.veseliradio.com/</a><!-- m --> <-Agjensi Lajmesh
<!-- m --><a class="postlink" href="http://www.gameinters.com/" onclick="window.open(this.href);return false;">http://www.gameinters.com/</a><!-- m -->
<!-- m --><a class="postlink" href="http://cez.biz" onclick="window.open(this.href);return false;">http://cez.biz</a><!-- m -->
<!-- m --><a class="postlink" href="http://businessmarketingeurope.com" onclick="window.open(this.href);return false;">http://businessmarketingeurope.com</a><!-- m -->
<!-- m --><a class="postlink" href="http://androidshit.com" onclick="window.open(this.href);return false;">http://androidshit.com</a><!-- m -->
<!-- m --><a class="postlink" href="http://dirdn.com/" onclick="window.open(this.href);return false;">http://dirdn.com/</a><!-- m -->
<!-- m --><a class="postlink" href="http://expatexpress.co.uk" onclick="window.open(this.href);return false;">http://expatexpress.co.uk</a><!-- m -->
<!-- m --><a class="postlink" href="http://laboxe.fr" onclick="window.open(this.href);return false;">http://laboxe.fr</a><!-- m -->
<!-- m --><a class="postlink" href="http://marketpro-ltd.com" onclick="window.open(this.href);return false;">http://marketpro-ltd.com</a><!-- m -->
<!-- m --><a class="postlink" href="http://eurozone.ltd.uk" onclick="window.open(this.href);return false;">http://eurozone.ltd.uk</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.windmotors.co.za/" onclick="window.open(this.href);return false;">http://www.windmotors.co.za/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.mgcrackforum.com" onclick="window.open(this.href);return false;">http://www.mgcrackforum.com</a><!-- m -->
<!-- m --><a class="postlink" href="http://propertyshop.rs" onclick="window.open(this.href);return false;">http://propertyshop.rs</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.gsa.rs" onclick="window.open(this.href);return false;">http://www.gsa.rs</a><!-- m -->
<!-- m --><a class="postlink" href="http://jumbo.rs" onclick="window.open(this.href);return false;">http://jumbo.rs</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.zcarandjelovac.org.rs" onclick="window.open(this.href);return false;">http://www.zcarandjelovac.org.rs</a><!-- m -->
Sipas një njoftimi prej grupit te hakerëve ata paralajmrojn
qe do te ketë edhe sulme të tjera ne ditet e ardhshme.
/LajmetAL/
|
|
|
| Keni parë propozim si ky? (VIDEO) |
|
Posted by: uranglobal - 10-05-2021, 08:29 PM - Forum: Kuriozitete
- Replies (2)
|
 |
Asnjëherë më parë nuk ishte parë një parashikim i motit si në kanalin amerikan të lajmeve “WJBF”, pjesë e rrjetit gjigant “ABC”.
Ndërsa vajza e parashikimit të motit u shfaq në televizion për të bërë parashikimin e zakonshëm, i dashuri i saj doli përpara kamerave, u ul në gjunjë dhe i kërkoi të martoheshin në mënyrë tërësisht të papritur, shkruan tabloidi britanik "Mirror".
E shtangur, prezantuesja Jenna Lee Thomas mundi të thonte vetëm “të dua” dhe u puth përpara miliona shikuesve, duke pranuar kështu të bënte hapin madhor në jetë.
Ndërkohë, në faqen e internetit të kanalit televiziv, shikuesit të zbavitur komentonin: “Moti për nesër? Pa re aq sa të sheh syri”, ndërsa të tjerë vlerësonin guximin e partnerit, që rrezikoi duke bërë propozimin live, pasi në rast se do të ishte refuzuar, do të ishte bërë një “turp kombëtar”. /albeu.com/
[youtube]http://www.youtube.com/watch?v=E5fEIQU8rOM[/youtube]
|
|
|
| Hakerat shqiptar sulmojnë faqe serbe (VIDEO) |
|
Posted by: uranglobal - 10-05-2021, 08:25 PM - Forum: IT Zone
- Replies (2)
|
 |
Lufta ka kaluar në një dimension tjetër në një kohë kur politikisht vendet po sillen në mënyrë të moderuar. Bëhet fjalë për luftën në internet mes hakerave serb dhe atyre shqiptarë.
Sulmet e fundit të bëra nga serbët në ueb faqen e Postës Shqiptare kanë nxitur hakerët shqiptarë që të ndërmarrin kundërsulme. Grupet shqiptare që kanë sulmuar janë Albanian Cyber Army dhe Kosova Hacker’s Security dhe një haker aktiv me nofkën Th3 P0ë3r.
Hakerët kanë sulmuar rreth 40 ueb faqe serbe dhe antishqiptare ku në këto faqe kanë vendosur flamurin shqiptar dhe mbishkrime antiserbe. /albeu.com/
[youtube]http://www.youtube.com/watch?v=6WeHeoWB6pc[/youtube]
|
|
|
| Letra e nje ushtari shqiptar per te dashuren ne vitin 1935 |
|
Posted by: BENN,k - 10-05-2021, 02:08 PM - Forum: Kuriozitete
- Replies (11)
|
 |
Jom tuj nejt te mullaret e Kurtit te Zymes e jom tuj dredh i cinare dahon.Tina dro se je tu bo koqen e gjumit e hic s'je m'hall per mu te shkretin qi jom tu mshi lotet me monget e xhumlekut.Tina nuk e din e imon qe e gjetsh prej dushmonit jarabi.Un t'cova per shkes Lemen e Cufit e tina i kishe thone asajta per mu se un qekshem plak e ku qekshem plak mi lavire un hala s'i kom mudh 50 vjet,kur t'hy hona e mevludit i mush.
Keshtu ka thone ende Laja e Bonit qi ka pjell pri her me ijen teme.Tina kishe thone asajta per mu qi Xhemoli s'ka i derhem shkolle,un kam bo dy mejtepe e gjys medreseje e per i her me Cufin e Lemes mi! une e di taljonsen flur,e kom msu kur erdhen taljont te kanoqet e mia,po nuk zune bese m'nigjo si kom me t'fol per la tua amore,io sono tutto hazer me bo i duel me aslllon tjeter e me e kap per la qafa e me e perplas si klysh qeni per la terra,ah mi kuore mu kan kput komcat e xhymlekut e non njeri me mi nit.La mia shpina e tutto zhul e non ce njeri me ma ferku.La leveret e mia mi ka vllai qi me la dice perher perce non martohesh me Xhemole?kaq kisha me t'thon Kumrije,nashi ndac merr ment e mi ndac maj tujt.
Kush din me perkthy le te perkthen se un smujta me perkthy.
|
|
|
| Samsung Series 5 Ultra |
|
Posted by: FidanSH - 10-04-2021, 10:03 PM - Forum: IT Zone
- No Replies
|
 |
![[Image: 9o0o-460.jpg]](http://media.gdgt.com/img/products/451/9o0o/9o0o-460.jpg)
Samsung paraqiti linjën e ultrabookëve Series 5 Ultra. Për momentin janë në dispozicion dy modele, njëri me diagonale të ekranit prej 13, dhe i dyti me 14 inç, që të dy kanë shtëpizë nga alumini.
Derisa modeli më i vogël me trashësi të shtëpizës prej 15 mm dhe peshën prej 1.4 kg parimisht hyn në definicionin e ultrabookut, e njëjta nuk mund të thuhet edhe për modelin më të madh shtëpiza e të cilit mat trashësinë prej 21 mm, ndërsa peshon 1.81 kg. Me modelin më të vogël mund të porositet disku prej 500-gigabajt, e me modelin më të madh ai prej një terabajt, por portativët mund të blihen edhe SSD-në prej 128-gigabajt. Kompjuterët shiten me procesorët Core i5, me 8 GB RAM, e me modelin më të madh mund të zgjidhet edhe sistemi optik, dhe grafika Radeon HD 7550M.
Dërgesat në tregun e Koresë fillojnë kah fundi i muajit. Çmimet e përllogaritura të modelit 13-inçësh do të shkojnë prej 1,100 deri në 1,300 dollarë. Modeli më i madh 15-inçësh do të shitet prej 1,170 deri në 1,350 dollarë. Shitja ndërkombëtare për momentin nuk është paralajmëruar. /Telegrafi/
|
|
|
| Edhe nje rekord i ri |
|
Posted by: Kaspersky. - 10-04-2021, 09:19 PM - Forum: Të rejat & Info
- Replies (41)
|
 |
12.12.2011
eSportsKosova thyen serish rekordin e vizitave gjate dites kesaj here me 2167 vizitore.
![[Image: 33kbvbq.png]](http://i42.tinypic.com/33kbvbq.png)
FIX
![[Image: 1t62ba.png]](http://i42.tinypic.com/1t62ba.png)
Ne i falenderojme antart ku permes tyre arritem edhe nje rekord dhe shpresojme te arrijme shume me shume , se bashku me juve.
eSportsKosova STAFF
|
|
|
|