| 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 435 online users. » 0 Member(s) | 431 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: 129
|
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 322
|
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 287
|
Rreth pyetjes "A krijoi Z...
Forum: Feja Islame
Last Post: SHTRIGA
06-06-2026, 08:40 PM
» Replies: 3
» Views: 254
|
Lule MOD |FUNNY|
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 07:56 PM
» Replies: 10
» Views: 1,069
|
Kërko Addons [+SHQIP]
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 05:09 PM
» Replies: 1,138
» Views: 89,370
|
[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,198
|
Ndihmë - Zombie Mod
Forum: Amx Mod X
Last Post: T.bo
06-05-2026, 08:09 PM
» Replies: 14
» Views: 677
|
Counter-Strike EG0-UCP (2...
Forum: Applications
Last Post: ValmirRamadani1
06-02-2026, 09:27 AM
» Replies: 4
» Views: 645
|
|
|
| Ndihm per steam |
|
Posted by: Slumerican - 02-28-2025, 09:15 PM - Forum: Shporta
- Replies (5)
|
 |
Pershendetje, nuk pom muna me bo Add a friend poma qet "steam your account does not meet the requirements to use this feature" a ka naj menyr per me ndreq?
|
|
|
| UPDATE Driver BOOST 2015 + Licenca |
|
Posted by: ProEviL1 - 02-28-2025, 12:10 PM - Forum: Programet
- Replies (12)
|
 |
Titulli i Temes:UPDATE Driver BOOST 2015 + Licenca
![[Image: OYIFmcv.png]](http://i.imgur.com/OYIFmcv.png)
Ky Program nqs e merrni ju ofron ti beni krejt Driverat ne Compjuterin Tuaj UPDATE FREE
Kit Program e kam ble une 39,99 € me Licenc !
-Licenca
Code: 22080-6E439-3F686-618B2
![[Image: YamMKgu.png]](http://i.imgur.com/YamMKgu.png)
![[Image: ac65d7b9b87750491ab521f485b84d42.png?itok=GA5OHa5d]](http://cdn2-b.examiner.com/sites/default/files/styles/image_content_width/hash/ac/65/ac65d7b9b87750491ab521f485b84d42.png?itok=GA5OHa5d)
![[Image: dzysCv0.png]](http://i.imgur.com/dzysCv0.png)
Code: http://www.mediafire.com/download/0oo9yxl2dkc5353/driver_booster_pro_setup.exe
|
|
|
| Scripting |
|
Posted by: Dinnii - 02-27-2025, 05:37 PM - Forum: Amx Mod X
- Replies (2)
|
 |
Djem une e hapa ket tem qe krejt ju me i qit naj script qka e keni , ju lutna sa ma pak spamm !!!
Ju tjeret ju propozoj keto script me i bo compile tek amx.freakz.ro
1. Reset Score Code: #include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>
#define adtime 600.0 //Default of 10 minuites
new pcvar_Advertise
new pcvar_Display
public plugin_init()
{
register_plugin("Reset Score", "1.0", "Silenttt")
//You may type /resetscore or /restartscore
register_clcmd("say /resetscore", "reset_score")
register_clcmd("say /restartscore", "reset_score")
register_clcmd("say /rs", "reset_score")
//This command by default will be set at 0
//Change it to 1 in server.cfg if you want
//A message to be shown to advertise this.
pcvar_Advertise = register_cvar("sv_rsadvertise", "0")
//This command by default is also 0
//Change it to 1 in server.cfg if you want
//It to show who reset their scores when they do it
pcvar_Display = register_cvar("sv_rsdisplay", "0")
if(get_cvar_num("sv_rsadvertise") == 1)
{
set_task(adtime, "advertise", _, _, _, "b")
}
}
public reset_score(id)
{
//These both NEED to be done twice, otherwise your frags wont
//until the next round
cs_set_user_deaths(id, 0)
set_user_frags(id, 0)
cs_set_user_deaths(id, 0)
set_user_frags(id, 0)
if(get_pcvar_num(pcvar_Display) == 1)
{
new name[33]
get_user_name(id, name, 32)
client_print(0, print_chat, "%s sapo ka restartuar scoren e tije", name)
}
else
{
client_print(id, print_chat, "Ju sapo keni ristartuar scoren tuaj")
}
return PLUGIN_HANDLED
}
public advertise()
{
set_hudmessage(255, 0, 0, -1.0, 0.20, 0, 0.2, 12.0)
show_hudmessage(0, "Shkruaj /rs ne chat per ta kthyer rezultatin ne 0")
}
public client_putinserver(id)
{
if(get_pcvar_num(pcvar_Advertise) == 1)
{
set_task(10.0, "connectmessage", id, _, _, "a", 1)
}
}
public connectmessage(id)
{
if(is_user_connected(id))
{
client_print(id, print_chat, "Shkruaj /rs ne chat per ta kthyer rezultatin ne 0")
}
}
2. Anti Reklama Code: #include <amxmodx>
#include <amxmisc>
#include <regex>
new Regex:re, ret;
public plugin_init() {
register_plugin("Anti-Reklama", "0.1", "eSK");
register_clcmd("say", "CheckMessage");
register_clcmd("say_team", "CheckMessage");
new err[32];
re = regex_compile("(?:\w+\.[a-z]{2,4}\b|(?:\s*\d+\s*\.){3})", ret, err, 31, "i");
if (re!=REGEX_OK) server_print("Error: %s (%d)", err, ret);
}
public CheckMessage(id) {
if (id > 0 && id < 33 && !is_user_admin(id)) {
new text[64];
read_args(text,63);
if (strlen(text) > 4) {
new match = regex_match_c(text, re, ret);
if (match > 0) {
client_print(id, print_chat, "Ndalohet reklamimi ne server!");
return PLUGIN_HANDLED;
}
}
}
return PLUGIN_CONTINUE;
}
public plugin_end() {
regex_free(re);
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang3079\\ f0\\ fs16 \n\\ par }
*/
|
|
|
|