Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Hosgeldin Plugini
#1
[Image: gx59g.jpg]


https://www.csplague.com/cozulmus-istekl...eisik.html

Aynı Buradaki[/URL] Gibi Ama Benim Kullandıgım Hosting Bu Eklentiyi Kaldırmıs Ben Bunun Pluginini İstiyorum...

Adminler Kırmızı Normaller Yeşil Ben amx superden biraz topladım devamını siz getirin Smile


/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"


public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_cvar("amx_xxx", VERSION, FCVAR_SERVER|FCVAR_EXTDLL|FCVAR_UNLOGGED|FCVAR_SPONLY)
register_dictionary("DS-Super.txt")

leavemessage_enable = register_cvar("amx_leavemessage_enable","1");
entermessage = register_cvar("amx_enter_message", "%name% Hos Geldin\n Siralaman %rankpos%\n Iyi Eglenceler Hilesiz Oyunlar (:");
leavemessage = register_cvar("amx_leave_message", "%name% Gule Gule\n Yine Bekleriz");
joinleave_message = register_cvar("amx_join_leave", "1");
}
public client_putinserver(id)
{


new param[1]

param[0] = id
g_name[id][0] = 0

get_user_name(id, g_name[id], 31)

set_task(2.0, "enter_msg", 0, param, 1)

badaim[id] = false
autoban[id] = false
check_bad_vault(id)


// -- CHECK IF LEFT TO DODGE GAG
// ------------------------------
new authid[32]

get_user_authid( id, authid, 31 )

g_gagged[id] = 0
for( new i = 0; i < 33; i++ )
{
if( equali( authid, g_wasgagged ) )
{
new temp[32]
switch( g_gagflags )
{
case 1: formatex( temp, 31, "a" )
case 2: formatex( temp, 31, "b" )
case 3: formatex( temp, 31, "ab" )
case 4: formatex( temp, 31, "c" )
case 5: formatex( temp, 31, "ac" )
case 6: formatex( temp, 31, "bc" )
case 7: formatex( temp, 31, "abc" )
}
new flags = read_flags( temp )

g_gagged[id] = flags
if( flags & 4 )
fm_set_speak( id, SPEAK_MUTED )

new name[32]

get_user_name( id, name, 31 )

client_print( 0, print_chat, "%L", LANG_PLAYER, AMX_SUPER_GAG_CONNECTED, name )

new ungagid[1]

ungagid[0] = id
g_wasgagged[0] = 0

set_task( DefaultGagTime , "task_ungag", id, ungagid, 1 )
break;
}
}




g_bot2[id] = is_user_bot(id)
if(g_bot2[id])
return
get_user_name(id, g_name2[id], 31)
get_user_authid(id, g_id2[id],31)
if(check_name(id) & check_id(id)){
new flags = read_flags("abc")
g_GagPlayers2[id] = flags
set_task(2.0, "block_gagged", id)
set_task(DefaultGagTime2,"task_UnGagPlayer",id)
}else{
return
}
return
}

public leave_msg(param[])
{
if (get_pcvar_num(joinleave_message) == 1 && get_pcvar_num(leavemessage_enable) == 1)
{
new id = param[0]

if(is_user_bot(id))
return PLUGIN_HANDLED

new message[192], _hostname[64]

get_pcvar_string(leavemessage, message, 191)
get_pcvar_string(hostname, _hostname, 63)

replace(message, 191, "%hostname%", _hostname)
replace(message, 191, "%name%", g_name[id])

replace_all(message, 191, "\n", "^n")

set_hudmessage(255, 0, 255, 0.10, 0.55, 0, 6.0, 6.0, 0.5, 0.15, 3)
show_hudmessage(0, message)
}

return PLUGIN_CONTINUE
}

public enter_msg(param[])
{
if (get_pcvar_num(joinleave_message) == 1)
{
new id = param[0]

if(is_user_bot(id))
return PLUGIN_HANDLED

new message[192], _hostname[64]

get_pcvar_string(entermessage, message, 191)

get_pcvar_string(hostname, _hostname, 63)
replace(message,191, "%hostname%", _hostname)

if (cvar_exists("csstats_reset"))
{
new data[8], rankpos[8], pos

pos = get_user_stats(id, data, data)

num_to_str(pos, rankpos, 7)

replace(message, 191, "%rankpos%", rankpos)
replace(message, 191, "%name%", g_name[id])

replace_all(message, 191, "\n", "^n")

if (get_user_flags(id) & ADMIN_RESERVATION) {

set_hudmessage(255, 0, 0, 0.10, 0.55, 0, 6.0, 6.0, 0.5, 0.15, 3)
show_hudmessage(0, message)

client_cmd(0,"spk buttons/blip1.wav")
return PLUGIN_HANDLED

}
else
{

set_hudmessage(0, 255, 0, 0.10, 0.55, 0, 6.0, 6.0, 0.5, 0.15, 3)
show_hudmessage(0, message)
}
}
}

return PLUGIN_CONTINUE
}


---------- Alttaki Mesaj Zamani 09:50 ---------- Önceki Mesaj Zamani 09:50 ----------

Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"


public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR)
    register_cvar("amx_xxx", VERSION, FCVAR_SERVER|FCVAR_EXTDLL|FCVAR_UNLOGGED|FCVAR_SPONLY)
    register_dictionary("DS-Super.txt")

    leavemessage_enable = register_cvar("amx_leavemessage_enable","1");
    entermessage = register_cvar("amx_enter_message", "%name% Hos Geldin\n Siralaman %rankpos%\n Iyi Eglenceler Hilesiz Oyunlar (:");
    leavemessage = register_cvar("amx_leave_message", "%name% Gule Gule\n Yine Bekleriz");
    joinleave_message = register_cvar("amx_join_leave", "1");
}
    public client_putinserver(id)
{
    

    new param[1]

    param[0] = id
    g_name[0] = 0

    get_user_name(id, g_name, 31)

    set_task(2.0, "enter_msg", 0, param, 1)
    
    badaim = false
    autoban = false
    check_bad_vault(id)


    // -- CHECK IF LEFT TO DODGE GAG
    // ------------------------------
    new authid[32]

    get_user_authid( id, authid, 31 )

    g_gagged = 0
    for( new i = 0; i < 33; i++ )
    {
        if( equali( authid, g_wasgagged ) )
        {
            new temp[32]
            switch( g_gagflags )
            {
                case 1: formatex( temp, 31, "a" )
                case 2: formatex( temp, 31, "b" )
                case 3: formatex( temp, 31, "ab" )
                case 4: formatex( temp, 31, "c" )
                case 5: formatex( temp, 31, "ac" )
                case 6: formatex( temp, 31, "bc" )
                case 7: formatex( temp, 31, "abc" )
            }
            new flags = read_flags( temp )

            g_gagged = flags
            if( flags & 4 )
                fm_set_speak( id, SPEAK_MUTED )

            new name[32]

            get_user_name( id, name, 31 )

            client_print( 0, print_chat, "%L", LANG_PLAYER, AMX_SUPER_GAG_CONNECTED, name )

            new ungagid[1]

            ungagid[0] = id
            g_wasgagged[0] = 0

            set_task( DefaultGagTime , "task_ungag", id, ungagid, 1 )
            break;
        }
    }
    
    
    
    
    g_bot2 = is_user_bot(id)
    if(g_bot2)
        return
    get_user_name(id, g_name2, 31)
    get_user_authid(id, g_id2,31)
    if(check_name(id) & check_id(id)){
        new flags = read_flags("abc")
        g_GagPlayers2 = flags
        set_task(2.0, "block_gagged", id)
        set_task(DefaultGagTime2,"task_UnGagPlayer",id)
        }else{
        return
    }
    return
}  

public leave_msg(param[])
{
    if (get_pcvar_num(joinleave_message) == 1 && get_pcvar_num(leavemessage_enable) == 1)
    {
        new id = param[0]

        if(is_user_bot(id))
        return PLUGIN_HANDLED

        new message[192], _hostname[64]

        get_pcvar_string(leavemessage, message, 191)  
        get_pcvar_string(hostname, _hostname, 63)  
    
        replace(message, 191, "%hostname%", _hostname)
        replace(message, 191, "%name%", g_name)

        replace_all(message, 191, "\n", "^n")

        set_hudmessage(255, 0, 255, 0.10, 0.55, 0, 6.0, 6.0, 0.5, 0.15, 3)
        show_hudmessage(0, message)
    }
    
    return PLUGIN_CONTINUE
}

public enter_msg(param[])
{
    if (get_pcvar_num(joinleave_message) == 1)
    {
        new id = param[0]

        if(is_user_bot(id))
        return PLUGIN_HANDLED
        
        new message[192], _hostname[64]
        
        get_pcvar_string(entermessage, message, 191)
        
        get_pcvar_string(hostname, _hostname, 63)  
        replace(message,191, "%hostname%", _hostname)
        
        if (cvar_exists("csstats_reset"))
        {
            new data[8], rankpos[8], pos

            pos = get_user_stats(id, data, data)
            
            num_to_str(pos, rankpos, 7)
            
            replace(message, 191, "%rankpos%", rankpos)
            replace(message, 191, "%name%", g_name)
            
            replace_all(message, 191, "\n", "^n")
            
            if (get_user_flags(id) & ADMIN_RESERVATION) {
                
                set_hudmessage(255, 0, 0, 0.10, 0.55, 0, 6.0, 6.0, 0.5, 0.15, 3)
                show_hudmessage(0, message)
                
                client_cmd(0,"spk buttons/blip1.wav")
                return PLUGIN_HANDLED
                
            }
            else
            {
                
                set_hudmessage(0, 255, 0, 0.10, 0.55, 0, 6.0, 6.0, 0.5, 0.15, 3)
                show_hudmessage(0, message)
            }
        }
    }
    
    return PLUGIN_CONTINUE
}
[/i][/i]
`~[S]- Es-Es' # Surf-Gaming ~
İP : 95.173.173.87

Sevgiler Yok Olsada Sevgin Hep Var Olucak
Ediz Bahtiyaroğlu
Reply
#2
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <csstats>

#define PLUGIN "Giris Mesaji"
#define VERSION "1.0"
#define AUTHOR "akcaliberkk"


public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
}
public 
client_putinserver(id) {
    
set_task(2.0,"ShowEnterMsg",id)
}
public 
ShowEnterMsg(id) {
    new 
name[32],data[8],rank;
    
get_user_name(id,name,31)
    
rank get_user_stats(id,data,data)
    if(
get_user_flags(id) & ADMIN_RESERVATION) {
        
set_hudmessage(255000.100.5506.06.00.50.153)
    }
    else {
        
set_hudmessage(025500.100.5506.06.00.50.153
    }
    if(
cvar_exists("csstats_reset")) {
        
show_hudmessage(0,"%s oyuna katildi !^niyi oyunlar^nMevcut Rank: %d",name,rank)
        
client_print(0,print_chat,"hdm1")
    }
    else {
        
show_hudmessage(0,"%s oyuna katildi !^niyi oyunlar",name)
    }



CS:GO ve CS 1.6 için ücretli eklenti yapılır.
Plugin yazmak isteyenlere yardımcı olabilirim.
Skype adresimden ulaşabilirsiniz:
destek_596
Steam: http://steamcommunity.com/id/ca-nemesis/

Reply
#3
Cok teşekkür ederim çalıstı birde
bunun çıkınca güle güle diye yazarmsın ? aynı plugine
`~[S]- Es-Es' # Surf-Gaming ~
İP : 95.173.173.87

Sevgiler Yok Olsada Sevgin Hep Var Olucak
Ediz Bahtiyaroğlu
Reply
#4
Buyur ;

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

#define PLUGIN "Giris Mesaji"
#define VERSION "1.0"
#define AUTHOR "akcaliberkk"


public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
}
public 
client_putinserver(id) {
    
set_task(2.0,"ShowEnterMsg",id)
}
public 
client_disconnect(id) {
    
set_task(2.0,"ShowDiscMsg",id)
}
public 
ShowEnterMsg(id) {
    new 
name[32],data[8],rank;
    
get_user_name(id,name,31)
    
rank get_user_stats(id,data,data)
    if(
get_user_flags(id) & ADMIN_RESERVATION) {
        
set_hudmessage(255000.100.5506.06.00.50.153)
    }
    else {
        
set_hudmessage(025500.100.5506.06.00.50.153
    }
    if(
cvar_exists("csstats_reset")) {
        
show_hudmessage(0,"%s oyuna katildi !^niyi oyunlar^nMevcut Rank: %d",name,rank)
    }
    else {
        
show_hudmessage(0,"%s oyuna katildi !^niyi oyunlar",name)
    }
}  
public 
ShowDiscMsg(id) {
    new 
name[32],data[8],rank;
    
get_user_name(id,name,31)
    
rank get_user_stats(id,data,data)
    if(
get_user_flags(id) & ADMIN_RESERVATION) {
        
set_hudmessage(255000.100.5506.06.00.50.153)
    }
    else {
        
set_hudmessage(025500.100.5506.06.00.50.153
    }
    if(
cvar_exists("csstats_reset")) {
        
show_hudmessage(0,"%s Oyundan Ayrildi !^nGule Gule Yeniden Bekleriz^nMevcut Rank: %d",name,rank)
    }
    else {
        
show_hudmessage(0,"%s Oyundan Ayrildi !^nGule Gule Yeniden Bekleriz",name)
    }

Coder İmza
PHP Code:
İletişim => cebinihat@hotmail.com 

Model İmza
PHP Code:
İletişim => cebinihat@hotmail.com 

CSP Signatür
PHP Code:
İletişim => cebinihat@hotmail.com 


En İyi Konularım:
Leqend Shop | Furkan Dize Shop |

Reply
#5
Hocam bu attıgınız kodları nasıl sma ve amx e cevirecegiz ?
Reply
#6
Hocam bu attıgınız kodları nasıl sma ve amx e cevirecegiz ?
Reply
#7
sagol
Reply
#8
Sağolasın Kardeşim Smile
Reply
#9
dsasad

- - - - - - - - - -

dsasda

- - - - - - - - - -

sdasda
Reply
#10
hahahaa
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Mapa Göre Cvar plugini melof 8 9,375 16-11-20, 02:00
Last Post: es_Dark_Es
  Time 15 Plugini fenerbahce07 24 12,121 23-09-18, 03:19
Last Post: qalatas06
  toplantı plugini bihterr 22 10,674 08-10-17, 14:21
Last Post: kronossbey
  Jailbreak Banka Plugini sefatokgoz 8 8,131 03-09-17, 18:06
Last Post: tahayasin
  [İSTEK]Jb Verme Plugini (/mg) NorDan 8 12,910 03-09-17, 18:06
Last Post: tahayasin
  250 Hp Plugini Sadece R Yetkisinde Olsun GurkanCounter 8 10,871 03-09-17, 18:04
Last Post: tahayasin
  [JB] CT Özel Hook Grab Rope Plugini Nobb 21 10,710 03-09-17, 18:03
Last Post: tahayasin
  Admin Zombie Model plugini satknun1997 3 3,805 01-01-17, 12:47
Last Post: RuLeT
  (JB) Can Revmenu plugini Furkan Dize 9 6,448 04-10-16, 23:35
Last Post: frozenbaba
  Map oylaması plugini MeTeTR 11 7,638 27-08-16, 15:37
Last Post: cengizb26

Foruma Atla:


Users browsing this thread: 1 Guest(s)