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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 70,855
» Latest member: zjohndrk6666
» Forum threads: 38,151
» Forum posts: 351,859

Full Statistics

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

Latest Threads
A smarter way to preview ...
Forum: Qendrat e lojërave
Last Post: zjohndrk6666
08-20-2026, 07:19 PM
» Replies: 0
» Views: 13
how to break ReCaptcha v....
Forum: Gjuhë Angleze
Last Post: MaryAxork6174
08-15-2026, 01:06 AM
» Replies: 0
» Views: 33
A jena Live me postu !
Forum: Diskutime rreth eSportsKosova
Last Post: PIONERI
08-12-2026, 05:12 PM
» Replies: 0
» Views: 49
Ilir 'washere' Amati - AI...
Forum: CS - Config. (CFG)
Last Post: alking1
06-08-2026, 09:35 AM
» Replies: 1
» Views: 226
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 584
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 580
Rreth pyetjes "A krijoi Z...
Forum: Feja Islame
Last Post: SHTRIGA
06-06-2026, 08:40 PM
» Replies: 3
» Views: 401
Lule MOD |FUNNY|
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 07:56 PM
» Replies: 10
» Views: 1,391
Kërko Addons [+SHQIP]
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 05:09 PM
» Replies: 1,138
» Views: 109,583
[Tutorial] Clean, Optimiz...
Forum: CS - Tutorial's - Tip & Tricks
Last Post: washere
06-06-2026, 11:56 AM
» Replies: 0
» Views: 170

 
  sCL Logo Flat
Posted by: sCL - 02-23-2024, 02:54 PM - Forum: Punimet - Replies (2)

Pershendetje

[Image: b69sB8v.jpg]

Print this item

  Disk Defragmenter - Si ta rregullojm
Posted by: daNz:) - 02-23-2024, 09:51 AM - Forum: PC - Tutoriale/Mesime - No Replies

Pershendetje !

Si ta rregullojm disk defragmenter has detected that chkdsk is scheduled to run on the volume C:
[Image: 1922250_277804065717094_617410189_n.jpg]

Ateher e rregullojm ne kete Menyr :

Shkojm start
Run
Shenojm cmd
Shkruajm shkronjen Y
Shtypim enter
Bejm restartpc-n
Presim Disa minutaderi sa te startonpc-ja dhe problemi do te rregullohet.

Regards
mojo*

Print this item

  Say /spec & Say /ct
Posted by: McBloodY* - 02-23-2024, 07:39 AM - Forum: AMX - Plugin's - Replies (5)

[Image: a.png]
* Plugins Name : mb_spec
* Plugins Autor : McBloodY
* Plugins Version : 2O14
Ky Plugins Shperben Per Te Dalur Ne Spectator Dhe Per Tu Rikthyer !
Sheno /spec Per Te Dalur Ne Spectator ! Sheno /ct Per Te Dalur CT !

[Image: 2.png]
* Instalimi
[spoiler]1. Fajllin mb_spec.amxx e dergojm tek addons/amxmodx/plugins !
2. Emrin e plugins e shenojm te addons/amxmodx/configs/plugins.ini ![/spoiler]

[Image: 32.png]
Foto Spata Ni Her E Kum Testu Po Kum Harru Me Fotografu E Qes 1 Dit !

SMA Code :
[spoiler]/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>

#define PLUGIN "Spec Switch"
#define VERSION "0.1.3"
#define AUTHOR "many"

new CsTeams:zTeam[33]
new zDeath[33]
new bool:type_spec[33] = false
new g_cvar

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
/* Cvar */
g_cvar = register_cvar("amx_specmode", "0") // 0 - enable use to all, 1 - enable use only ADMINs
/* Client Commands */
register_clcmd("say /spec", "cmdSpec", ADMIN_ALL, "- go to spectator")
register_clcmd("say_team /spec", "cmdSpec", ADMIN_ALL, "- go to spectator")
register_clcmd("say /back", "cmdBack", ADMIN_ALL, "- go back to your team")
register_clcmd("say_team /back", "cmdBack", ADMIN_ALL, "- go back to your team")
}

public cmdSpec(id)
{
if(!get_pcvar_num(g_cvar)) Spec(id)
else if( get_pcvar_num(g_cvar) && (get_user_flags(id) & ADMIN_KICK)) Spec(id)
else if( get_pcvar_num(g_cvar) && !(get_user_flags(id) & ADMIN_KICK)) PrintUserNotAdmin(id)
}

public cmdBack(id)
{
if (type_spec[id] && cs_get_user_team(id) == CS_TEAM_SPECTATOR && zTeam[id] != CS_TEAM_SPECTATOR ) Back(id)
else if( get_pcvar_num(g_cvar) && !(get_user_flags(id) & ADMIN_KICK) ) PrintUserNotAdmin(id)
}

public Spec(id)
{
zDeath[id] = cs_get_user_deaths(id)
if (cs_get_user_team(id) == CS_TEAM_SPECTATOR)
return
else{
type_spec[id] = true
zTeam[id] = cs_get_user_team(id)
cs_set_user_team(id, CS_TEAM_SPECTATOR)
user_silentkill(id)
client_print(id,print_chat,"Type /back to return from Spectator")
}
return
}

public Back(id)
{
cs_set_user_team(id, zTeam[id])
cs_set_user_deaths(id, zDeath[id])
set_task(0.5,"FirstRespawn",id)
set_task(0.8,"SecondRespawn",id)
}

public FirstRespawn(id)
{
cs_user_spawn(id)
}

public SecondRespawn(id)
{
cs_user_spawn(id)
if (cs_get_user_team(id) == CS_TEAM_T){
give_item(id,"weapon_knife")
give_item(id,"weapon_glock18")
give_item(id,"ammo_9mm")
}
if (cs_get_user_team(id) == CS_TEAM_CT){
give_item(id,"weapon_knife")
give_item(id,"weapon_usp")
give_item(id,"ammo_45acp")
give_item(id,"ammo_45acp")
}
}

PrintUserNotAdmin(id)
{
client_print(id,print_chat,"Only Admins can use /spec, /back command")
}

public PrintRule(id)
{
if ( is_user_connected(id) && !is_user_bot(id) && !is_user_hltv(id) ){
client_print(id,print_chat,"Type /spec if you want to go Spectator")
client_print(id,print_chat,"Type /back to return from Spectator")
}
}

public client_putinserver(id)
{
if(!get_pcvar_num(g_cvar)) Rule(id)
else if( get_pcvar_num(g_cvar) && (get_user_flags(id) & ADMIN_KICK)) Rule(id)
}

public client_disconnect(id) type_spec[id] = false
public client_connect(id) type_spec[id] = false
public Rule(id) set_task(20.0, "PrintRule", id)

/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ ansicpg1252\\ deff0{\\ fonttbl{\\ f0\\ fnil\\ fcharset0 Tahoma;}}\n{\\ colortbl ;\\ red0\\ green0\\ blue0;}\n\\ viewkind4\\ uc1\\ pard\\ cf1\\ lang1033\\ b\\ f0\\ fs16 \n\\ par }
*/[/spoiler]
[Image: 1.png]

Code:
http://www.mediafire.com/download/t9jni0e2e7ay50t/mb_spec.zip

Print this item

  Method Man / Vexel
Posted by: blazin - 02-23-2024, 06:43 AM - Forum: Punimet - Replies (3)

[Image: 57b1be3ec0730742c91580c2174612d3.jpg]

Behance:

Code:
https://www.behance.net/gallery/16441497/Method-Man-

P.S em ka dal LQ per arsye qe e kom marr prej FB-s foton

Print this item

  CD /COVER/
Posted by: blazin - 02-23-2024, 06:40 AM - Forum: Punimet - No Replies

CHAMBEH - album coming soon...
[Image: 7d9977fa4f6b2e34013c86f8f6dcf577.jpg]

Watch on behance :

Code:
https://www.behance.net/gallery/16441309/Chambeh-CD-Cover


ULM - Split It Out (Official Video) coming soon...
[Image: 6836d6f08108fd6cb3cf31af172f1066.jpg]

Watch on behance :
Code:
https://www.behance.net/gallery/16503397/ULM-COVER

Print this item

  * Regullat v2.0 - NEW
Posted by: roxxanne. - 02-22-2024, 09:08 PM - Forum: AMX - Plugin's - Replies (6)

[Image: yms1xXy.png]

* NEW Regullat - ne Serverin TUAJ , nje menyr shum e mir per ti paraqit regullat tuaja ne server ..

[Image: Zvv6mYT.png]

* Emri: * Regullat v2.0 - NEW
* Autor: roxxanne.
* Versioni: v2.0


[Image: URZPRsc.png]

* Instalimi
[spoiler]1. Fajllin rx_EMRI-PLUGINS.amxx e dergojm tek addons/amxmodx/plugins !
2. Emrin e plugins e shenojm te addons/amxmodx/configs/plugins.ini ![/spoiler]

* Komandat ne chat :
* Sheno /regullat , qe ti shfaqes regullat tuaja ne server .


[Image: pMHo7vA.png]

* 1
[Image: qVxsAVO.jpg]

[Image: iaZVuHf.png]
Regullat v2.0 - NEW 2.44KB

+ Si ti ndryshoni REGULLAT , qe jan te shenuara si ne foto ?
* Klikoni me Mouse 2 ne regullat.html , dhe hape me NotePad - ose WordPad , dhe mund ti ndryshoni regullat , si ju pelqen juve ne Server
* 1
[Image: zAkl6Rj.png]
* 2
[Image: kjKaUvR.png]

* Thanks..

Print this item

  Driver Controller 2.00
Posted by: daNz:) - 02-22-2024, 07:34 PM - Forum: Programet - No Replies

Quote:Driver Controller 2.00 Eshte nje program i ri. Me Driver Controller 2.00 muind te kontrolloni driverat,folderat te ndrroni ikona dhe shum te tjera

Size : 966KB
Release Date : 2014-05-01
Submit Date : 2014-05-01
OS : Windows XP/Vista/7/8 (32-Bit/64-Bit)
Downloads : 17

Screenshot
[Image: drivecontroller.jpg]

*Download
Driver Controller 2.00

Regards
mojo*

Print this item

  Esk 3d
Posted by: durajetz. - 02-22-2024, 05:42 PM - Forum: Punimet - Replies (2)

[Image: cc3398323988830.jpg]

Smile

Print this item

  My 3D Works in Living Room // And Free 3D
Posted by: Phoenix Al - 02-22-2024, 05:01 PM - Forum: Punimet - Replies (6)

Pershendetje ktu do ti paraqes punimet e mija ne 3D

[Image: VV6RXPp.jpg]

[Image: 2n4Eqf8.jpg]

[Image: uChnH5H.jpg]

[Image: WfObu8g.jpg]

[Image: IXkL9mW.jpg]

[Image: Beqeq1b.jpg]

[Image: O6A04pJ.jpg]

[Image: lb09jqx.jpg]

[Image: hKqFkS8.jpg]

[Image: r0XtYdj.jpg]

[Image: Tgjvxwn.jpg]



Sado nje koment i vogel faliminderit shum <3

Print this item

  Si te RRegullojm problemin sw.dll kur shfaqet ne cs
Posted by: k1llzz - 02-22-2024, 01:09 PM - Forum: CS - Tutorial's - Tip & Tricks - No Replies

Nese juve iu shfaqet problemi sw.dll kur hapni cs ju duhet te veproni keshtu me ndjekni ..
Se pari shkojm Start>tek search programs and files e shenojm REGEDIT>Hapim filen>pasi te hapet ne klikojm tek e 2-ta :HKEY_CURRENT_USER!>Na shfaqet njetabel tjeter tek ajo tabel qe eshte shfaqur shkojm pak me posht dhe klikojm "Software" pasi klikojm aty e shtyjm me posht ku shenon "valve" ate file e fshijm Dhe ne fund e provojm CS-n ..Funksionon Smile

Print this item