Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Kërko Plugins [+SHQIP]
(03-27-2016, 02:55 PM)LoNNi33@ Wrote: Kerkoj Ni Plugins Per zombie 6.2
Kur Te vrasim ni Zombie mu ringjall apet a po kupton
FLM kush ma gjen Big Grin

kto e ki tek ZombiPlague.cfg aty tek configs. mundesh me e bo e ki 1 opsion.
futu tek FTP edhe shko tek configs. me dergo nje screenshot tkallxoj cila osht .
If i helped you on you'r topic, use +REP button.

[Image: wivcpk.gif]
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:
mir osht bracker thnx e ndreqa ehde ni plugins per goldenak47 kur pe shti ne srw spom del ne extraitem a ka mundis me ma gjet plugins edhe mem tregu qysh me shti
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:
provo qito goldenak47:
Code:
http://csblackdevil.com/forums/index.php?/topic/122918-plugin-golden-ak47/
If i helped you on you'r topic, use +REP button.

[Image: wivcpk.gif]
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:
A mundet dikush ket pluginsin [CT] Vs [T] met bardha si kps & kcw qe osht ?
- e S p o r t s . a L -
- xgamers -

[Image: aWJz8Dd.png]
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:
Jo spo del
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:
a munet dikush ni antireklam
kur po shkrujn qeshtu po munen me reklamu un po du sit shkrun me ju bo gag vet
http://prntscr.com/akukbb
mos me mujt aj me shkru reklama
NI BIG THANKS KUSH MA GJAN
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:
(03-27-2016, 11:04 PM)LoNNi33@ Wrote: a munet dikush ni antireklam
kur po shkrujn qeshtu po munen me reklamu un po du sit shkrun me ju bo gag vet
http://prntscr.com/akukbb
mos me mujt aj me shkru reklama
NI BIG THANKS KUSH MA GJAN

Qe me sma.

PHP Code:
#include < amxmodx >
#include < amxmisc >

new const g_szWordsList[ ] [ ]= {
    
"www.",
    
".ro",
    
".com",
    
".net",
    
".biz",
    
"connect",
    
":27015",
    
"/forum",
    
"***"
}

new 
cvar_oncvar_mode;

public 
plugin_init()
{
    
register_plugin("Auto Gag""1.0""dK^aLeX")
    
    
cvar_on register_cvar("amx_auto_gag""1")
    
cvar_mode register_cvar("amx_auto_gag_mode""1")

    
register_clcmd("say""Check")
    
register_clcmd("say_team""Check")
}

public 
Check(id)
{
    if(
get_pcvar_num(cvar_on) == 0)
    {
        
server_print("*****************************")
        
server_print(" Auto Gag v1.0 by dK^aLeX    ")
        
server_print("*****************************")
        
server_print(" Plugin Status: Stopped      ")
        
server_print("*****************************")
        return;
    }
    
    if(
get_pcvar_num(cvar_mode) == 1)
    {
        new 
szSay[192]
        
read_args(szSaysizeof(szSay) -1)
        
remove_quotes(szSay)
        
        for( new 
0sizeofg_szWordsList ); i++)
        {
            if(
contain(szSay"g_szWordsList[i]") != -1)
            {
                new 
szUserName[32]
                
get_user_name(idszUserName31)
                
server_cmd("amx_gag %s 4 reclama",szUserName)
            }
        }
    }
    
    if(
get_pcvar_num(cvar_mode) == 2)
    {
        new 
szSay[192]
        
read_args(szSaysizeof(szSay) -1)
        
remove_quotes(szSay)
        
        for( new 
0sizeofg_szWordsList ); i++)
        {
            if(
contain(szSay"g_szWordList[i]") != -1)
            {
                new 
szUserName[32]
                
get_user_name(idszUserName31)
                
server_cmd("amx_kick %s",szUserName)
            }
        }
    }
    
    if(
get_pcvar_num(cvar_mode) == 3)
    {
        new 
szSay[192]
        
read_args(szSaysizeof(szSay) -1)
        
remove_quotes(szSay)
        
        for ( new 
0sizeof(g_szWordsList); i++)
        {
            if(
contain(szSay"g_szWordsList[i]") != -1)
            {
                new 
szUserName[32]
                
get_user_name(idszUserName31)
                
server_cmd("amx_ban %s 0 reclama",szUserName)
            }
        }
    }


(03-27-2016, 04:29 PM)xgamers Wrote: A mundet dikush ket pluginsin [CT] Vs [T]  met bardha si kps & kcw qe osht ?

Ktu e ke sma. ndrysho bon compile per srv tondin.
PHP Code:
#include <amxmodx>
#include <engine>

enum _:TEAM 
{
 
   TERRORIST,
 
   ANTITERRORIST
}

new 
g_iScoreTEAM ],g_iHud,g_iSync;

public 
plugin_precache( )
{
 
   g_iHud create_entity"info_target" )
 
   
    entity_set_string
g_iHud,EV_SZ_classname,"HudThink" )
 
   
    entity_set_float
g_iHud,EV_FL_nextthink,get_gametime( ) + 20.0 )
}
public 
plugin_init( )
{
 
   register_plugin"Team Scores","1.0","Twiister" );

 
   register_event"TeamScore","ev_TeamScore","a" );
 
   
    register_think
"HudThink","fw_HudThink" )
 
   
    g_iSync 
CreateHudSyncObj( )
}

public 
ev_TeamScore( )
{
 
   static sTeam];read_data1,sTeam, 
    switch
sTeam] )
 
   {
 
       case 'T'g_iScoreTERRORIST ]= read_data);
 
       case 'C'g_iScoreANTITERRORIST ]= read_data);
 
   }
}

public 
fw_HudThinkiEnt )
{
 
   if( !is_valid_entiEnt ) )
 
       return PLUGIN_HANDLED;
 
   
    set_hudmessage
(200200200, -1.00.000.0600.00.00.01)
 
   ShowSyncHudMsg(0,g_iSync,"Terrorist: %d | Counter-Terrorist: %d ]",g_iScore [TERRORIST],g_iScoreANTITERRORIST ])
 
   
    entity_set_float
iEnt,EV_FL_nextthink,5.2 )
 
   
    return PLUGIN_HANDLED
;

Facebook ● Zombie Plague 6.2
KosovaZM ® ▪ 164.132.14.245:27015 ▪ Only inspiration

Download: Zombie Plague 6.2
▪ Skype: elbasan.f 
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:
(03-28-2016, 10:05 AM)ScrappeR Wrote:
(03-27-2016, 11:04 PM)LoNNi33@ Wrote: a munet dikush ni antireklam
kur po shkrujn qeshtu po munen me reklamu un po du sit shkrun me ju bo gag vet
http://prntscr.com/akukbb
mos me mujt aj me shkru reklama
NI BIG THANKS KUSH MA GJAN

Qe me sma.

PHP Code:
#include < amxmodx >
#include < amxmisc >

new const g_szWordsList[ ] [ ]= {
    
"www.",
    
".ro",
    
".com",
    
".net",
    
".biz",
    
"connect",
    
":27015",
    
"/forum",
    
"***"
}

new 
cvar_oncvar_mode;

public 
plugin_init()
{
    
register_plugin("Auto Gag""1.0""dK^aLeX")
    
    
cvar_on register_cvar("amx_auto_gag""1")
    
cvar_mode register_cvar("amx_auto_gag_mode""1")

    
register_clcmd("say""Check")
    
register_clcmd("say_team""Check")
}

public 
Check(id)
{
    if(
get_pcvar_num(cvar_on) == 0)
    {
        
server_print("*****************************")
        
server_print(" Auto Gag v1.0 by dK^aLeX    ")
        
server_print("*****************************")
        
server_print(" Plugin Status: Stopped      ")
        
server_print("*****************************")
        return;
    }
    
    if(
get_pcvar_num(cvar_mode) == 1)
    {
        new 
szSay[192]
        
read_args(szSaysizeof(szSay) -1)
        
remove_quotes(szSay)
        
        for( new 
0sizeofg_szWordsList ); i++)
        {
            if(
contain(szSay"g_szWordsList[i]") != -1)
            {
                new 
szUserName[32]
                
get_user_name(idszUserName31)
                
server_cmd("amx_gag %s 4 reclama",szUserName)
            }
        }
    }
    
    if(
get_pcvar_num(cvar_mode) == 2)
    {
        new 
szSay[192]
        
read_args(szSaysizeof(szSay) -1)
        
remove_quotes(szSay)
        
        for( new 
0sizeofg_szWordsList ); i++)
        {
            if(
contain(szSay"g_szWordList[i]") != -1)
            {
                new 
szUserName[32]
                
get_user_name(idszUserName31)
                
server_cmd("amx_kick %s",szUserName)
            }
        }
    }
    
    if(
get_pcvar_num(cvar_mode) == 3)
    {
        new 
szSay[192]
        
read_args(szSaysizeof(szSay) -1)
        
remove_quotes(szSay)
        
        for ( new 
0sizeof(g_szWordsList); i++)
        {
            if(
contain(szSay"g_szWordsList[i]") != -1)
            {
                new 
szUserName[32]
                
get_user_name(idszUserName31)
                
server_cmd("amx_ban %s 0 reclama",szUserName)
            }
        }
    }


scrapper ku me shti kta pa plugins ?
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:
Djema kerkoj dy pluginsa per furien
1 - Per Credits
2 - V.I.P Fr33???

(03-28-2016, 10:41 AM)Lem Rehat Wrote: Djema kerkoj dy pluginsa per furien
1 - Per Credits
2 - V.I.P Fr33???
3 - Shop per furien
[kujdes]Të gjitha të drejtat janë të rezervuara.
E drejta e autorit i përket © Lem Rehat
Është rreptësisht e ndaluar të kopjohet, rishpërndahet, ri-publikohet ose modifikohet çdo material që ndodhet në
Krijimet e Lem Rehat ose të përdoret pa miratimin e Lem Rehat.[/kujdes]
[Image: 1zfh309.gif]
Reply }}}}
Thanks given by:
Thanks given by:
Thanks given by:


Forum Jump:


Users browsing this thread: 1 Guest(s)