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 444 online users.
» 0 Member(s) | 442 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: 130
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 330
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 290
Rreth pyetjes "A krijoi Z...
Forum: Feja Islame
Last Post: SHTRIGA
06-06-2026, 08:40 PM
» Replies: 3
» Views: 260
Lule MOD |FUNNY|
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 07:56 PM
» Replies: 10
» Views: 1,070
Kërko Addons [+SHQIP]
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 05:09 PM
» Replies: 1,138
» Views: 89,637
[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,208
Ndihmë - Zombie Mod
Forum: Amx Mod X
Last Post: T.bo
06-05-2026, 08:09 PM
» Replies: 14
» Views: 679
Counter-Strike EG0-UCP (2...
Forum: Applications
Last Post: ValmirRamadani1
06-02-2026, 09:27 AM
» Replies: 4
» Views: 646

 
  GameOnline Tournament - ernest vs vTM
Posted by: stronk - 12-19-2023, 10:22 AM - Forum: Zbavitje - Replies (2)

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

Print this item

  Samsung lanson GALAXY S5 dhe gjeneraten GEAR
Posted by: 4LBBiG. - 12-18-2023, 07:45 PM - Forum: Hapesira per Mobile - Replies (26)

Gjiganti japonez SAMSUNG ka lansuar sot ne konferencen e mbajtur në Barcelonë, Spanjë telefonin më të ri te shumepriturin, GALAXY S5.
Foto:
[Image: dcmElp7.jpg]
[Image: 4wcTgsp.png]

Vecorite:
-Permbanë senzorin qe detekton rrahjet e zemres qe gjendet tek blici i kameres
[Image: Rn2jMSe.png]

-Autofocus te kameres ne 0.3 sekonda. Qe e bën kameren me te shpejte ne bote
[Image: 9lgdc2p.png]

-Ekrani 5.1" super amoled. Bateria 2,800 mAh
[Image: H1vKEQL.png]

-Permbane touchwizin e ri nga SAMSUNG
[Image: Yhvk98A.png]

-Rezistent nga uji dhe pluhuri
[Image: EtRgtZ1.png]

-Foto e prezantimit:
[Image: qlRa0yT.png]

-Video e pare:
[youtube]http://www.youtube.com/watch?v=uiySqktt6HU[/youtube]

Samsung gjithashtu lansoi edhe dy pajisje te gjenerates se orave te mencura GEAR: Samsung Gear 2 dhe Samsung Gear FIT
[Image: NwKyyut.png]

Samsung Galaxy S5 dhe gjenerata GEAR dalin ne shitje me 11 Prill 2014

Teksti i krijuar dhe pershtatur nga Albin Xhemaili
UPDATE~ cmimin e kto senet ma von

Print this item

  * Server Menu @ roxxanne v2014
Posted by: roxxanne. - 12-18-2023, 07:12 PM - Forum: AMX - Plugin's - Replies (7)

* Server Menu @ roxxanne v2014

* Pershkrimi : Shfaq Menujen ma kryesore te serverave , si p.sh : Top15 , Adminat ON , Rank , HP , ResetScore etj. (Nese doni diqka tjeter me shtu muni mem kallxu PM jav boj)

* Source Code
[spoiler]#include <amxmodx>

#define PLUGIN "servermenu"
#define VERSION "1.0"
#define AUTHOR "roxanne."

public plugin_init() {

register_clcmd("menu", "cmdMenu", ADMIN_ALL);
register_plugin(PLUGIN, VERSION, AUTHOR);
}

public cmdMenu(id) {
new i_Menu = menu_create("\rMenuja e Serverit", "menu_handler");
menu_additem(i_Menu, "\wTop15 Lojtaret", "1", 0);
menu_additem(i_Menu, "\wAdminat Online", "2", 0);
menu_additem(i_Menu, "\wRikthe Piket", "3", 0);
menu_additem(i_Menu, "\wVoteban Menu", "4", 0);
menu_additem(i_Menu, "\wRock the Vote", "5", 0);
menu_additem(i_Menu, "\wRank", "6", 0);
menu_additem(i_Menu, "\wShendeti", "7", 0);
menu_setprop(i_Menu, MPROP_NEXTNAME, "Tjera");
menu_setprop(i_Menu, MPROP_BACKNAME, "Kthehu");
menu_setprop(i_Menu, MPROP_EXITNAME, "Hiqe");

menu_display(id, i_Menu, 0)
}

public client_authorized(id)
{
client_cmd(id, "bind ^"F3^" ^"menu^"")
}

public menu_handler(id, menu, item) {
if( item < 0 ) return PLUGIN_CONTINUE;
new cmd[3], access, callback;
menu_item_getinfo(menu, item, access, cmd,2,_,_, callback);
new Choise = str_to_num(cmd)
switch (Choise) {
case 1: {
client_cmd(id, "say /top15")
}
case 2: {
client_cmd(id, "say /admin")
}
case 3: {
client_cmd(id, "say /rs")
}
case 4: {
client_cmd(id, "say /voteban")
}
case 5: {
client_cmd(id, "say /rtv")
}
case 6: {
client_cmd(id, "say /rank")
}
case 7: {
client_cmd(id, "say /hp")
}
}
return PLUGIN_HANDLED;
}[/spoiler]

* Bind :
[spoiler]"bind "F3"menu"
[/spoiler]

* Foto Gjat Lojes :
* [Image: ThoGKAC.jpg]

* Shtyp Top15 ,SHFAQET Top15 ;
[Image: SJ5ziTA.jpg]
* Shtyp Adminat Online SHFAQEN ADMINAT ON + Plugins @ RX ; Link
* Rikthe Piket (Resetscore) ; Link
[Image: oLkS3Z8.jpg]
* Shendeti / HP ;
[Image: fwuJA4d.jpg] etc...

* Mundesuar nga roxxanne.

*SHKARKO Mediafire, Link

Print this item

  abiz vs opt1cals @ Online Tournament 2014
Posted by: mynio - 12-18-2023, 06:37 PM - Forum: Zbavitje - Replies (2)

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

Print this item

  Armageddon Wallpaper
Posted by: guN- - 12-18-2023, 05:27 PM - Forum: Punimet - Replies (1)

[Image: qKL9BMZ.jpg]

Print this item

  Pytje & Përgjigje / Reply & Questions
Posted by: ScrappeR - 12-18-2023, 04:48 PM - Forum: HLDS Linux - Replies (15)

Këtu mund të bëni pytjet qe keni ne lidhje me Linux OS Servers, dhe merrni pergjigje ne ket sektor te gjitha në një. STICKY

Print this item

  Pytje & Përgjigje / Reply & Questions
Posted by: ScrappeR - 12-18-2023, 04:47 PM - Forum: HLDS Windows - No Replies

Këtu mund të bëni pytjet qe keni ne lidhje me Windows OS Servers, dhe merrni pergjigje ne ket sektor te gjitha në një. STICKY

Print this item

  kn1ght.x vs K5 @ Online Tournament 2014
Posted by: mynio - 12-18-2023, 04:04 PM - Forum: Zbavitje - No Replies

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

Print this item

  ClanWar Addons by GoldenSTAFF
Posted by: Privatex. - 12-18-2023, 12:54 PM - Forum: AMX - Addon's - No Replies

<!-- m --><a class="postlink" href="http://www.mediafire.com/download/tz9aqzoa9k8babd/ClanWar+addons+GoldenStaff.rar" onclick="window.open(this.href);return false;">http://www.mediafire.com/download/tz9aq ... nStaff.rar</a><!-- m -->"

Keto addons permbajn

ucp 8.1
amx_gag
antireklama v4.0
scm.amxx

Print this item

  GHOST GUi 2014 - eSK - psyman
Posted by: psyman - 12-18-2023, 12:10 PM - Forum: CS - GUI - Replies (5)

GHOST GUi 2014 - eSK - psyman

* Background CoD GHOSTS
* GUi by: psyman

Screenshots //


[Image: SW5XNMt.png]
[Image: gYvQ9Zm.png]
[Image: FwMC4ux.png]
[Image: O2AJ4WO.jpg]
[Image: yMPpNPT.jpg]

Download Link: https://www.mediafire.com/?ec9kcat4wk66cl0

Tutoriali si te vendosim GUI ne Counter-Strike 1.6 ( OLIMPIC ): http://kosovagamers.com/viewtopic.php?f=...8%20style=


[info]Recommended resolution: 800x600.[/info]

Print this item