Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
el basi tus bindleme
#4
al usta bunun her el bası tekrarlanmasını istiyorum oyun icinde unbindall yapınca gidiyo retry cekmem gerekiyo ama her el bası olursa oyuncuların retry cekmesine gerek kalmaz.

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")
    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,199,txtLen)
        if(result != 0)
        {
            client_cmd(id,cmd)
        }
    }
}
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 fantasty1992 - 21-08-12, 13:20

Possibly Related Threads…
Thread Author Replies Views Last Post
  El Başı Koruma + Surf Buy Koruma LifeOfCs 14 11,989 11-08-18, 10:51
Last Post: caner5706
  El başı silah HijyeniK 2 4,688 10-02-18, 17:18
Last Post: Grafter
  [JB] El Başı Müzilk emre113 18 9,066 23-08-14, 16:19
Last Post: buracat
  Koruma düzenlenme El başı byby1 12 7,463 26-07-14, 22:26
Last Post: Osmanolu12
  el başı bilgi yarısması plugini wolf5094 10 4,680 11-06-14, 13:01
Last Post: djefsane
  El Bası Admine Can CemBaBa 6 2,867 24-02-14, 16:24
Last Post: JDM
  El Başı Karanlık Hava Eklentisi ve CT Silah Eklentisi 41aaa41 6 4,763 14-08-13, 18:46
Last Post: akcaliberkk
  El Başı hg sg flash armor b2kdeli 5 4,489 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,803 27-03-13, 20:58
Last Post: akcaliberkk
  El başı silah gelme. qrazma 3 3,380 29-01-13, 16:06
Last Post: akcaliberkk

Foruma Atla:


Users browsing this thread: 1 Guest(s)