Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
el basi tus bindleme
#6
PHP Code:
//Client Autoexec Commands on Connect
//by Torch
//Automatically executes commands on client when they join your server.
//Sort of like an automated client_exec plugin.
//Useful to block cl_pitchspeed etc as soon as they join.
//Create a file "client_autoexec.ini" in your configs folder
//and place all the console commands to be executed on clients in it.
//Maximum number of commands is defined as 100 below.

#include <amxmodx>
#include <amxmisc>

#define MAX_CMDS    100

public plugin_init() { 
    
register_plugin("Client Autoexec on Connect","1.0","Torch"
    
    
register_logevent("EventNewRound",2,"1=Round_Start")
    return 
PLUGIN_CONTINUE 


new 
configsdir[200]
new 
cmdfile[200]
new 
cmd[MAX_CMDS][200]

public 
client_connect(id) {

    
get_configsdir(configsdir,199)
    
format(cmdfile,199,"%s/client_autoexec.ini",configsdir)

    new 
txtLen
    
new result
    
for(new i=0;i<MAX_CMDS;i++)
    {
        
result read_file(cmdfile,i,cmd[i],199,txtLen)
        if(
result != 0)
        {
            
client_cmd(id,cmd)
        }
    }
}
public 
EventNewRound() {
    
get_configsdir(configsdir,199)
    
format(cmdfile,199,"%s/client_autoexec.ini",configsdir)

    new 
txtLen
    
new result
    
for(new i=0;i<MAX_CMDS;i++)
    {
        
result read_file(cmdfile,i,cmd,199,txtLen)
        if(
result != 0)
        {    
            
client_cmd(0,cmd)
        }
    }


Her el başı istediğin kodları uygular.[/i][/i][/i][/i]
Reply


Messages In This Thread
el basi tus bindleme - by fantasty1992 - 20-08-12, 20:00
Cevap: el basi tus bindleme - by ByGece - 20-08-12, 23:07
Cevap: el basi tus bindleme - by akcaliberkk - 21-08-12, 16:00

Possibly Related Threads…
Thread Author Replies Views Last Post
  El Başı Koruma + Surf Buy Koruma LifeOfCs 14 11,980 11-08-18, 10:51
Last Post: caner5706
  El başı silah HijyeniK 2 4,685 10-02-18, 17:18
Last Post: Grafter
  [JB] El Başı Müzilk emre113 18 9,056 23-08-14, 16:19
Last Post: buracat
  Koruma düzenlenme El başı byby1 12 7,462 26-07-14, 22:26
Last Post: Osmanolu12
  el başı bilgi yarısması plugini wolf5094 10 4,673 11-06-14, 13:01
Last Post: djefsane
  El Bası Admine Can CemBaBa 6 2,861 24-02-14, 16:24
Last Post: JDM
  El Başı Karanlık Hava Eklentisi ve CT Silah Eklentisi 41aaa41 6 4,757 14-08-13, 18:46
Last Post: akcaliberkk
  El Başı hg sg flash armor b2kdeli 5 4,485 10-06-13, 13:38
Last Post: b2kdeli
  El Bası &quot;Zırh&quot; Yerine &quot;Zırh ve Kask&quot; vermesini İstiyorum Msltr48 5 4,799 27-03-13, 20:58
Last Post: akcaliberkk
  El başı silah gelme. qrazma 3 3,379 29-01-13, 16:06
Last Post: akcaliberkk

Foruma Atla:


Users browsing this thread: 1 Guest(s)