|
发表于 2005-9-26 15:56:29
|
显示全部楼层
|阅读模式
来自 中国–广东–深圳–南山区
我用了你写的key_bind插件,我用UE打开有些是乱码的,请问要用什么打开才不乱码呢,我想做些修改,这个插件是不是有些键绑不了,因为我把F1 -- F12都绑了,在游戏了输入/keyhelp里面只有F1 - F3有用。 :burn:
/*
* AMX MOD X
*
* auth:nwb13
* last edit:2004.11.9
*
*/
#include <amxmodx>
#include <amxmisc>
#define MAX_BINDS 10 //缁瀹伴?
new bind_key[MAX_BINDS][16]
new bind_cmd[MAX_BINDS][32]
new bind_usage[MAX_BINDS][128]
new g_kNum
public plugin_init() {
register_plugin( "client key bind", "0.31", "nwb13" )
register_clcmd("say /keyhelp","client_help",0,"- displays server help") //╁惰?keyhelp寮甯
new configsDir[64]
get_configsdir(configsDir, 63)
format(configsDir, 63, "%s/key_bind.ini", configsDir)
loadSettings(configsDir)
}
loadSettings(szFilename[]) {
if (!file_exists(szFilename))
return 0
new temp[256]
new a, pos = 0
while ( g_kNum < MAX_BINDS && read_file(szFilename,pos++,temp,255,a) ) {
if ( temp[0] == ';' )
continue
if (parse(temp, bind_key[ g_kNum ] ,15, bind_cmd[ g_kNum ], 31, bind_usage[ g_kNum ],127 )<2)
continue
//server_print("key: %s ;cmd: %s",bind_key[g_kNum],bind_cmd[g_kNum] )
++g_kNum
}
server_print("[AMXX] Load %d key to bind for client.",g_kNum )
return 1
}
public client_putinserver(id){
new ids[2]
ids[0]=id
set_task(5.0,"bind_keys",id,ids,2)
set_task(20.0,"help_note",id,ids,2)
}
public bind_keys(ids[]){
new id = ids[0]
for (new i=0; i<g_kNum; ++i){
client_cmd(id,"bind ^"%s^" ^"%s^"",bind_key,bind_cmd)
//client_print(id,print_chat,"bind ^"%s^" ^"%s^"",bind_key,bind_cmd)
}
}
public help_note(ids[]){
new id =ids[0]
client_print(id,print_chat,"* ″ㄧ浣缁瀹浜涓浜? 璇锋 Y 杈 /keyhelp ユョ?) //绀虹╁惰?help
}
public client_help(id) { //褰╁惰/keyhelp剧ず瀹
new pos = 0 ,temp[512]
pos = format(temp,511,"<html><head><style type=^"text/css^">pre{color:#FFB000;}body{background:#000000;margin-left:8px;margin-top:0px;}</style></head><pre><body>")
pos += format(temp[pos],511-pos,"欢迎来到该服务器, 朋友!^n服务器为了使你玩的方便, 绑定了一些有用的键位, 功能如下:^n")
for (new i=0; i<g_kNum; ++i)
pos += format(temp[pos],511-pos,"按键 %s 为 %s ^n",bind_key,bind_usage)
pos += format(temp[pos],511-pos,"好了! 祝你在游戏里玩得愉快!^n")
format(temp[pos],511-pos,"</pre></body></html>")
show_motd(id,temp,"″ㄦ甯?)
} |
|