0920357689 发表于 2008-6-20 23:35:32

請問一下攻擊者和被攻擊者問題

以下是攻擊者擊中敵人時顯示的

如何修改成被攻擊者顯示被誰攻擊
想了很久也不會..過於簡單...反而很難:cry:

另問一下vIndex 是什麼.....

#include <amxmodx>
public damage_msg(vIndex)
{
if ( get_cvar_float("bullet_damage") ) {
new aIndex = get_user_attacker(vIndex)
new damage = read_data(2)
set_hudmessage(0, 100, 200, -1.0, 0.55, 2, 0.1, 4.0, 0.02, 0.02, 7)
show_hudmessage(aIndex,"%i", damage)
}
return PLUGIN_CONTINUE
}
public plugin_init() {
   register_plugin("Bullet Damage","1.0","ToKyo")
   register_event("Damage", "damage_msg", "b", "2!0", "3=0", "4!0")
   register_cvar("amx_bullet_damage","1")
   return PLUGIN_CONTINUE
}

apocalyptic 发表于 2008-6-20 23:58:50

回复: 請問一下攻擊者和被攻擊者問題

vIndex就是victim index,受害人的编号,aIndex就是attacker index,攻击者的编号,这样你应该明白了。

0920357689 发表于 2008-6-21 01:35:40

回复: 請問一下攻擊者和被攻擊者問題

如何查詢aIndex的玩家姓名?

apocalyptic 发表于 2008-6-21 22:58:41

回复: 請問一下攻擊者和被攻擊者問題

Post by 0920357689
如何查詢aIndex的玩家姓名?
new name
get_user_name ( aIndex, name, 32 )
页: [1]
查看完整版本: 請問一下攻擊者和被攻擊者問題