|
发表于 2007-6-23 19:23:22
|
显示全部楼层
来自 中国–山东–烟台
回复: 关于匕首的两个问题
public client_PreThink(id)
{
new ammo, clip
new curewpn = get_user_weapon(id, clip, ammo)
new button = entity_get_int(id, EV_INT_button)
if (button & IN_ATTACK2 && curewpn == CSW_KNIFE) {
client_print(id,print_chat,"你抡起大刀挥向敌人的脑袋...")
}
if (button & IN_ATTACK1 && curewpn == CSW_KNIFE) {
client_print(id,print_chat,"你在给他刮胡子?")
}
return PLUGIN_CONTINUE
}
在插件中加入这些,就可以知道左右键了,但是距离好像是改不了的,那可有点难度。 |
|