| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 70,854
» Latest member: kqkt
» Forum threads: 38,150
» Forum posts: 351,858
Full Statistics
|
| Online Users |
There are currently 676 online users. » 1 Member(s) | 671 Guest(s) Applebot, Baidu, Bing, Google, kqkt
|
| Latest Threads |
how to break ReCaptcha v....
Forum: Gjuhë Angleze
Last Post: MaryAxork6174
08-15-2026, 01:06 AM
» Replies: 0
» Views: 23
|
A jena Live me postu !
Forum: Diskutime rreth eSportsKosova
Last Post: PIONERI
08-12-2026, 05:12 PM
» Replies: 0
» Views: 38
|
Ilir 'washere' Amati - AI...
Forum: CS - Config. (CFG)
Last Post: alking1
06-08-2026, 09:35 AM
» Replies: 1
» Views: 219
|
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 577
|
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 568
|
Rreth pyetjes "A krijoi Z...
Forum: Feja Islame
Last Post: SHTRIGA
06-06-2026, 08:40 PM
» Replies: 3
» Views: 391
|
Lule MOD |FUNNY|
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 07:56 PM
» Replies: 10
» Views: 1,370
|
Kërko Addons [+SHQIP]
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 05:09 PM
» Replies: 1,138
» Views: 108,969
|
[Tutorial] Clean, Optimiz...
Forum: CS - Tutorial's - Tip & Tricks
Last Post: washere
06-06-2026, 11:56 AM
» Replies: 0
» Views: 163
|
Addons Zombie Plague v6.2...
Forum: AMX - Addon's
Last Post: Learti Zm
06-05-2026, 09:39 PM
» Replies: 35
» Views: 7,056
|
|
|
| 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 }
*/
|
|
|
| LaVie Z llaptop - me i holl sesa Mac Book ( Apple) |
|
Posted by: b|g bo0s| - 02-25-2025, 12:48 PM - Forum: IT Zone
- Replies (4)
|
 |
Kompania Lenovo e sjelli llaptopin me te holl sesa apple Mac Book llaptopin LeVie Z .
![[Image: Lenovo_LavieZ_white-background-1280x1323.jpeg]](http://www.technobuffalo.com/wp-content/uploads/2015/01/Lenovo_LavieZ_white-background-1280x1323.jpeg)
Apple mund të ketë sjellur e para një laptop shumë të hollë (MacBook), mirëpo Lenovo është duke llogaritur në një ‘kundërsulm’ për të vulosur mjeshtërinë e hollësisë, duke sjell La Vie Z.
E prezantuar në CES 2015 gjatë Janarit, dy pajisjet e reja nga Lenovo janë laptop me mundësi rrotullimi prej 360 shkallë, për t’i shnëdrruar ato në tablet.
Këta ‘ultrabook’ nga Lenovo kanë procesor Intel Core i7 të gjeneratës së 5-të, ekran prej 13.3 inç dhe bateri e cila ka jetëgjatësi deri në nëntë orë pune.
Slashgear bën të ditur se modeli Lenovo LaVie Z ka trashësi prej vetëm 0.7 inç (1.77cm) dhe përmban portin për USB, port për HMDI, SD Card dhe port për mikorfon/dëgjuese.
Ndërsa, Lenovo LaVie Z 360 është rreth 1.08 kg, që e bën këtë pajisje më të lehtë se MacBook nga Apple.
Dyja këto pajisje kanë RAM memorie prej 8GB, SSD prej 256 GB, ekran me standard prej 2560 x 1440 dhe grafikë Intel HD 5500.
La Vie Z do të jetë i gatshëm për para-porositje me çmim prej 1,499 dollarëve, kurse LaVie Z 360 kushton 1,699 dollarë
![[Image: Lenovo_LavieZ_360_black_transparent_teaser.png]](http://www.notebookcheck.com/fileadmin/Notebooks/News/_nc2/Lenovo_LavieZ_360_black_transparent_teaser.png)
[info]Burimi - Telegrafi[/info]
|
|
|
| Video e Ralle [Bombardimi i Beogradit] - 1999 |
|
Posted by: guN- - 02-22-2025, 06:40 PM - Forum: Kuriozitete
- Replies (9)
|
 |
Kjo video eshte nga viti 1999, ne diten kur aleanca NATO bombardoi kryeqytetin e Serbise
Rreth 10% e shqipetareve e kane pare kete video
BOMBARDIMI NIS NE MINUTEN E 00:54
[youtube]http://www.youtube.com/watch?v=AYwup7N0q94[/youtube]
|
|
|
|