| 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 496 online users. » 0 Member(s) | 492 Guest(s) Applebot, Baidu, 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: 263
|
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,656
|
[Tutorial] Clean, Optimiz...
Forum: CS - Tutorial's - Tip & Tricks
Last Post: washere
06-06-2026, 11:56 AM
» Replies: 0
» Views: 86
|
Addons Zombie Plague v6.2...
Forum: AMX - Addon's
Last Post: Learti Zm
06-05-2026, 09:39 PM
» Replies: 35
» Views: 6,213
|
Ndihmë - Zombie Mod
Forum: Amx Mod X
Last Post: T.bo
06-05-2026, 08:09 PM
» Replies: 14
» Views: 682
|
Counter-Strike EG0-UCP (2...
Forum: Applications
Last Post: ValmirRamadani1
06-02-2026, 09:27 AM
» Replies: 4
» Views: 649
|
|
|
| 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]
|
|
|
|