| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 1202 online users. » 0 Member(s) | 1199 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: 20
|
Multi-Account Browser Saf...
Forum: Qendrat e lojërave
Last Post: omo-serviceSmuth
08-26-2026, 06:30 PM
» Replies: 0
» Views: 32
|
2captcha analog: OMOCaptc...
Forum: Qendrat e lojërave
Last Post: omocaptchaSmuth
08-23-2026, 10:10 AM
» Replies: 0
» Views: 39
|
Негабаритные перевозки по...
Forum: Qendrat e lojërave
Last Post: SamiSix
08-23-2026, 09:26 AM
» Replies: 0
» Views: 44
|
A smarter way to preview ...
Forum: Qendrat e lojërave
Last Post: zjohndrk6666
08-20-2026, 07:19 PM
» Replies: 0
» Views: 55
|
how to break ReCaptcha v....
Forum: Gjuhë Angleze
Last Post: MaryAxork6174
08-15-2026, 01:06 AM
» Replies: 0
» Views: 50
|
A jena Live me postu !
Forum: Diskutime rreth eSportsKosova
Last Post: PIONERI
08-12-2026, 05:12 PM
» Replies: 0
» Views: 71
|
Ilir 'washere' Amati - AI...
Forum: CS - Config. (CFG)
Last Post: alking1
06-08-2026, 09:35 AM
» Replies: 1
» Views: 265
|
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 666
|
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 682
|
|
|
| MechWarrior Online |
|
Posted by: LongHorn - 05-29-2023, 03:35 PM - Forum: Lojërat për PC
- No Replies
|
 |
MechWarrior Online
Quote:MechWarrior Online puts you in command of your very own BattleMech. Customize your mech to your own playstyle with weapons, armor and other systems. Go head-to-head by yourself or with friends in various PvP modes like Conquest and Versus. Form your own mercenary group, or join an existing one to gain renown and power. Join one of the five great houses and fight for control of the Inner Sphere!
Publisher: Infinite Game Publishing
Playerbase: ??
Graphics: High
Type: MMORPG
EXP Rate: ??
PvP: Yes
Filesize: N/A
DOWNLOAD - KLIKO
[reklam][/reklam] https://mwomercs.com/signup
System Requirements
CPU: Core 2 Duo E6750 2.66GHz
GPU: GeForce 8800GT / Radeon HD 5600/5700
RAM: 4 GB
OS: Windows Vista 32-bit / 7 /8
DirectX: DX9
HDD Space: 4 GB
SCREENSHOT
GAME TRAILER
[video][/video]
<!-- m --><a class="postlink" href="http://www.youtube.com/watch?v=7kuVkAdeCbs" onclick="window.open(this.href);return false;">http://www.youtube.com/watch?v=7kuVkAdeCbs</a><!-- m -->
|
|
|
| [TUT] Si te krijojm nje Zombie Class te ri. |
|
Posted by: KIQ - 05-29-2023, 02:26 PM - Forum: CS - Tutorial's - Tip & Tricks
- Replies (7)
|
 |
Hapi i 1: perfshirja..
Code: #include <amxmodx>
#include <zombieplague>
Hapi 2: Krijimi i bazes
Code: // Zombie Attributes
new const zclass_name[] = { "Gravity Zombie" } // name
new const zclass_info[] = { "Low grav -HP" } // description
new const zclass_model[] = { "zombie_Source" } // model
new const zclass_clawmodel[] = { "v_knife_zombie.mdl" } // claw model
const zclass_health = 800 // health
const zclass_speed = 200 // speed
const Float:zclass_gravity = 0.4 // gravity
const Float:zclass_knockback = 0.6 // knockback
Hapi 3: Hyrjet
Code: // Class IDs
new g_zclassid1
Hapi 4: Regjistroni zombien , un e bera ket:
Code: // Zombie Classes MUST be registered on plugin_precache
public plugin_precache()
{
register_plugin("[ZP] Zombie Class: Gravity Zombie", "1.0", "Zombiezzz")
// Register the new class and store ID for reference
g_zclassid1 = zp_register_zombie_class(zclass_name, zclass_info, zclass_model, zclass_clawmodel, zclass_health, zclass_speed, zclass_gravity, zclass_knockback)
}
Hapi 5: Kur te zgjedh zombien me ja qit tekstin posht..
Code: public zp_user_infected_post ( id, infector )
{
if (zp_get_user_zombie_class(id) == g_zclassid1)
{
client_print(id, print_chat, "[ZP] You Have Choosen Gravity Zombie")
}
}
Tash i bashkojm codet dhe e kompletojm.. duket si kjo.
Quote:/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <zombieplague>
// Zombie Attributes
new const zclass_name[] = { "Gravity Zombie" } // name
new const zclass_info[] = { "Low Grav -HP" } // description
new const zclass_model[] = { "zombie_source" } // model
new const zclass_clawmodel[] = { "v_knife_zombie.mdl" } // claw model
const zclass_health = 800 // health
const zclass_speed = 200 // speed
const Float:zclass_gravity = 0.5 // gravity
const Float:zclass_knockback = 0.6 // knockback
// Class IDs
new g_zclassid1
// Zombie Classes MUST be registered on plugin_precache
public plugin_precache()
{
register_plugin("[ZP] Zombie Class: Gravity Zombie", "1.0", "Zombiezzz")
// Register the new class and store ID for reference
g_zclassid1 = zp_register_zombie_class(zclass_name, zclass_info, zclass_model, zclass_clawmodel, zclass_health, zclass_speed, zclass_gravity, zclass_knockback)
}
public zp_user_infected_post ( id, infector )
{
if (zp_get_user_zombie_class(id) == g_zclassid1)
{
client_print(id, print_chat, "[ZP] You Have Choosen Gravity Zombie")
|
|
|
| Counter Strike 1.6 FULL v44 |
|
Posted by: KIQ - 05-29-2023, 11:11 AM - Forum: Applications
- Replies (15)
|
 |
Eshte nje cs i vjeter nga gt.rs dhe shum i mir, qe tash so kerkun :/
- Setupi permban vetem 250MB.
- Permban 2 protokollat: (48 + 47).
- Pershtatet ne sistemin e fundit te sXe anticheat.
- Lojtart mund te luajn ne LAN apo Internet.
- Mund te perdoret edhe si portable.
DOWNLOAD - SHKARKOJE - KLIKO ME POSHT
[reklam][/reklam]
COUNTER-STRIKE 1.6 V44
SCREENSHOT
![[Image: screenshot_294.jpg]](http://s13.postimg.org/5i8a455cn/screenshot_294.jpg)
Nje thanks to cp, <3
|
|
|
| RobbaN |
|
Posted by: Bigger1 - 05-29-2023, 07:48 AM - Forum: CS - Config. (CFG)
- No Replies
|
 |
Robert 'RobbaN' Dahlström
Ketu i keni CFG e Robert 'RobbaN' Dahlström per Counter Strike 1.6.
![[Image: zu5942.jpg]](http://i40.tinypic.com/zu5942.jpg)
Code: http://www.mediafire.com/download/5kotpoomfa8dx2l/RobbaN.zip
Code: // This file is overwritten whenever you change your user settings in the game.
// Add custom configurations to the file "userconfig.cfg".
unbindall
bind "TAB" "+showscores;timeleft"
bind "ENTER" "+attack"
bind "ESCAPE" "cancelselect"
bind "SPACE" "+jump"
bind "'" "+moveup"
bind "*" "secammo"
bind "+" "sizeup"
bind "," "buyammo1"
bind "-" "sizedown"
bind "." "buyammo2"
bind "/" "+movedown"
bind "0" "slot10"
bind "1" "slot1"
bind "2" "slot2"
bind "3" "slot3"
bind "4" "slot4"
bind "5" "slot5"
bind "6" "slot6"
bind "7" "slot7"
bind "8" "slot8"
bind "9" "slot9"
bind ";" "+mlook"
bind "=" "sizeup"
bind "[" "invprev"
bind "]" "invnext"
bind "`" "toggleconsole"
bind "a" "+moveleft"
bind "b" "buyammo2"
bind "c" "radio3"
bind "d" "+moveright"
bind "e" "+use"
bind "f" "impulse 100"
bind "g" "drop"
bind "h" "+commandmenu"
bind "j" "buyequip"
bind "k" "+voicerecord"
bind "l" "say Tja! Spela? Sista?"
bind "m" "buy"
bind "n" "buyammo1"
bind "q" "lastinv"
bind "r" "+reload"
bind "s" "+back"
bind "t" "impulse 201"
bind "v" "+moveup"
bind "w" "+forward"
bind "x" "radio2"
bind "z" "radio1"
bind "~" "toggleconsole"
bind "UPARROW" "+forward"
bind "DOWNARROW" "+back"
bind "LEFTARROW" "+left"
bind "RIGHTARROW" "+right"
bind "ALT" "+strafe"
bind "CTRL" "+duck"
bind "SHIFT" "+speed"
bind "F1" "autobuy"
bind "F2" "rebuy"
bind "F5" "snapshot"
bind "F9" "rhlgIKCG"
bind "F10" "host_framerate 0"
bind "F11" "host_framerate 0.05"
bind "F12" "chooseteam"
bind "INS" "rhlgIKCG"
bind "DEL" "messagemode"
bind "PGDN" "messagemode2"
bind "PGUP" "+lookup"
bind "HOME" "rhlgIKCG"
bind "END" "rhlgIKCG"
bind "KP_HOME" "flash"
bind "KP_UPARROW" "hegren"
bind "KP_PGUP" "sgren"
bind "KP_LEFTARROW" "tg_m4ak"
bind "KP_5" "deagle"
bind "KP_RIGHTARROW" "awp"
bind "KP_PGDN" "tg_famgal"
bind "KP_ENTER" "defuser"
bind "KP_SLASH" "primammo"
bind "KP_MINUS" "vest"
bind "KP_PLUS" "rze_helm"
bind "MWHEELDOWN" "invnext"
bind "MWHEELUP" "invprev"
bind "MOUSE1" "+attack"
bind "MOUSE2" "+attack2"
bind "PAUSE" "pause"
_cl_autowepswitch "0"
_snd_mixahead "0.1"
ati_npatch "0"
ati_subdiv "0"
bgmvolume "1.000000"
bottomcolor "0"
brightness "2"
cl_allowdownload "1"
cl_allowupload "1"
cl_backspeed "400"
cl_cmdbackup "2"
cl_cmdrate "101"
cl_corpsestay "180.000000"
cl_crosshair_color "50 250 50"
cl_crosshair_size "3"
cl_crosshair_translucent "0"
cl_dlmax "128"
cl_download_ingame "1"
cl_dynamiccrosshair "0"
cl_forwardspeed "400"
cl_himodels "0"
cl_idealpitchscale "0.8"
cl_lc "1"
cl_logocolor "#Valve_Red"
cl_logofile "skull"
cl_lw "1"
cl_minmodels "0"
cl_radartype "1"
cl_righthand "1"
cl_shadows "1"
cl_timeout "60"
cl_updaterate "101"
cl_vsmoothing "0.05"
cl_weather "0"
con_color "150 22 255"
console "0.000000"
crosshair "1.000000"
fastsprites "0"
fps_max "101.000000"
fps_modem "0.0"
gamma "3"
gl_dither "1"
gl_flipmatrix "0"
gl_fog "1"
gl_monolights "0"
gl_overbright "0"
gl_polyoffset "4"
hisound "1"
hpk_maxsize "4"
hud_capturemouse "1"
hud_centerid "1"
hud_draw "1"
hud_fastswitch "1"
hud_saytext_internal "1"
hud_takesshots "0"
joystick "0"
lookspring "0.000000"
lookstrafe "0.000000"
m_filter "0"
m_forward "1"
m_pitch "0.022"
m_side "0.8"
m_yaw "0.022"
model "arctic"
MP3FadeTime "2.0"
MP3Volume "0.110000"
mp_decals "300.000000"
name "Leif"
net_graph "0"
net_graphpos "1"
net_scale "5"
r_bmodelhighfrac "5.0"
r_detailtextures "0"
s_a3d "0"
s_automax_distance "30.0"
s_automin_distance "2.0"
s_bloat "2.0"
s_distance "60"
s_doppler "0.0"
s_eax "0"
s_leafnum "0"
s_max_distance "1000.0"
s_min_distance "8.0"
s_numpolys "200"
s_polykeep "1000000000"
s_polysize "10000000"
s_refdelay "4"
s_refgain "0.4"
s_rolloff "1.0"
s_verbwet "0.25"
sensitivity "2.3"
skin ""
spec_autodirector_internal "1"
spec_drawcone_internal "1"
spec_drawnames_internal "1"
spec_drawstatus_internal "1"
spec_mode_internal "3"
spec_pip "0"
suitvolume "0.25"
sv_aim "0"
sv_voiceenable "1"
team ""
topcolor "0"
viewsize "110"
voice_enable "1"
voice_forcemicrecord "1"
voice_modenable "1"
voice_scale "2"
volume "0.41"
setinfo "_ah" "0"
setinfo "_vgui_menus" "0"
setinfo "translit" "1"
+mlook
+jlook
exec userconfig.cfg
|
|
|
| Addons Pb Linux by: fen!x! |
|
Posted by: bishhasys - 05-29-2023, 03:26 AM - Forum: AMX - Addon's
- Replies (4)
|
 |
Addons Pb Linux by: fen!x!
Përmbajtja:
Amxmodx
Metamod
Dproto
Pluginsat:
Code: ; AMX Mod X plugins
; Admin Base - Always one has to be activated
admin.amxx ; admin base (required for any admin-related)
;admin_sql.amxx ; admin base - SQL version (comment admin.amxx)
; Basic
admincmd.amxx ; basic admin console commands
adminhelp.amxx ; help command for admin console commands
adminslots.amxx ; slot reservation
multilingual.amxx ; Multi-Lingual management
; Menus
menufront.amxx ; front-end for admin menus
cmdmenu.amxx ; command menu (speech, settings)
plmenu.amxx ; players menu (kick, ban, client cmds.)
;telemenu.amxx ; teleport menu (Fun Module required!)
mapsmenu.amxx ; maps menu (vote, changelevel)
pluginmenu.amxx ; Menus for commands/cvars organized by plugin
; Chat / Messages
;adminchat.amxx ; console chat commands
antiflood.amxx ; prevent clients from chat-flooding the server
scrollmsg.amxx ; displays a scrolling message
imessage.amxx ; displays information messages
adminvote.amxx ; vote commands
; Map related
nextmap.amxx ; displays next map in mapcycle
;mapchooser.amxx ; allows to vote for next map
timeleft.amxx ; displays time left on map
; Configuration
pausecfg.amxx ; allows to pause and unpause some plugins
statscfg.amxx ; allows to manage stats plugins via menu and commands
; Counter-Strike
restmenu.amxx ; restrict weapons menu
statsx.amxx ; stats on death or round end (CSX Module required!)
miscstats.amxx ; bunch of events announcement for Counter-Strike
;stats_logging.amxx ; weapons stats logging (CSX Module required!)
; Enable to use AMX Mod plugins
;amxmod_compat.amxx ; AMX Mod backwards compatibility layer
; Custom - Added by fen!x!.syS & B!$H@.syS
Map_Spawns_Editor.amxx ;Mapat i krijon spawn-at dmth 32 vs 32
std_admin_color_chat.amxx
bcd_hudtimer.amxx ;Sekondat e c4 me ngjyr te gjelbert
amx_ejl_adminchat.amxx
task_scheduler.amxx ;Bon leshimin e configave si warmup.cfg
show_ip.amxx ;Tregon ip-n e playerave
Slaylosers_lite.amxx ;Ben slay playerat qe nuk mujn me perfundu misionin
amx_gag.amxx ;Ndalon playerat me shkru me say dhe teamsay
admin_freelook2.amxx ;Adminat mujn mi pa terorat dhe konterat
see_no_team_flash.amxx ;Mos me ja fllesh lojtarit ton
antidoss.amxx
pingfaker.amxx ;Ping i rrejshem per Playera
fixcrash.amxx ;Nuk lejo qe serveri te crashirat nga exploitet.
ad_manager.amxx ;Autoresponder / Adversment
c4_management.amxx ;Percakton C4 kur ka pak veta ne server
amx_quit.amxx
Kodecheats.amxx
round_chat_msg.amxx
kill_chat_msg.amxx
afkbombtransfer.amxx
Fshije.amxx
fenbish.amxx ;Kur ti vret 3 lojtar ti mundesh me degju me sound multikiller...
ptb.amx ;Transferon lojtarin ne ekipin tjeter kur ne ekip ka 2 ose me shum lojtar te fort
slottimer.amxx ;Shkrun /online edhe tregon sa or ke lujt ne srw
aitf.amxx ;ADD IP TO FAVORITES
team_semiclip.amxx ;Lojtaret hije
weapon_icon.amxx ;Tregon iconat e armeve
forcaplumbit.amxx ;Tregon HP kur i gjun lojtarit
fragcounter.amxx ;Ma posht se defuser del sa i ke myt me ni loj
anti_reklama.amxx ;Mos me reklamu No-Chat Display
antireklama.amxx ;Mos me reklamu No-Chat Display
nextmapblock.amxx ;Deri sat kryhet roundi nuk ndrrohet mapi :)
granadedrop.amxx ;Kur lojtari vdes len pas granatat
music.amxx ;e shenon /music per te degjuar muzik
bet.amxx ;Ver bast per ekipin qe do fitoj
Download Link
Code: http://www.mediafire.com/?1gb5ms8fh58bs6g
|
|
|
| MYSTIC kunder Myrush ne finale. |
|
Posted by: vili - 05-28-2023, 11:41 PM - Forum: Skena vendore
- Replies (3)
|
 |
Finalja e madhe e ESK LEAGUE 2 jane bere te ditur finalistet.
Pas tre jave ndeshje te shumta, ndeshje qe te benin me emocione, adrenaline dihen finalistet e ESK League Seasons 2.
MYSTIC dhe Myrush jane finalistet qe e ESK League Seasons 2, te cilat do te ndeshen neser per cmimin e pare.
Myrush te udhehqur nga Kujtim "KujtR" Rexhepi a don te arrijn ti mposhtin MYSTIC-at e udhhequr nga Arlind "nett" Kusari.
MYSTIC ne historin e kaluar ka me shum fitore ndaj myrush, qe mund te jete nje perparsi qe ata perseri te fitojn.
Mystic apo Myrush? Cili do te jete kampioni i ESK LEAGUE Seasons 2 mbetet te shihet neser.
|
|
|
|