|
发表于 2006-6-14 16:45:09
|
显示全部楼层
来自 中国–广东–深圳–南山区
回复: 已修改的multilingual,使玩家的默认语言与服务器一致
能不能把这个也修改下?下面这个插件,不管是第1个自杀还是第1个杀人都是默然为第1个杀人奖励,我郁闷。。。这下没钱的只要自杀一次就拥有3000块了。:sweat:
[PHP]#include <amxmodx>
#include <cstrike>
new g_round
public plugin_init(){
register_plugin("First Shot","1.0","ahcat")
register_event("DeathMsg", "hook_death", "a")
register_logevent("hook_roundstart",2,"0=World triggered","1=Round_Start")
g_round = 0
}
public hook_death(){
if (g_round!=0)
return PLUGIN_HANDLED
new Killer = read_data(1)
cs_set_user_money(Killer,cs_get_user_money (Killer)+30000)
new p_name[32]
get_user_name(Killer,p_name,31)
set_hudmessage(255, 255, 255, -1.0, 0.5, 0, 0.1, 0.1, 0.1, 6.0, 1)
show_hudmessage(0, "%s 第一个杀人 奖励30000",p_name)
g_round = 1
return PLUGIN_HANDLED
}
public hook_roundstart(){
g_round = 0
} [/PHP] |
|