如何让指定玩家不能拣东西?
RT Q3:spiderman :spiderman回复: 如何让指定玩家不能拣东西?
不知你指捡起那类东西如果是标准武器或物品类,可以使用 "WeapPickup" 消息,
获得捡起的武器ID,然后清除它或强制丢弃它,即可达到目的。
回复: 如何让指定玩家不能拣东西?
使用 register_touch 函数例如:如果是标准武器类,使用
register_touch("weaponbox", "player", "touch_weapon")
public touch_weapon(wpnEnt, player)
{
//在这里判断,如果不想玩家捡此武器,就 return PLUGIN_HANDLED
}
回复: 如何让指定玩家不能拣东西?
3Q:spiderman :spiderman :spiderman :spiderman :spiderman :spiderman :spiderman :spiderman回复: 如何让指定玩家不能拣东西?
register_touch("weaponobx", "player", "touch_weapon")里面前2个参数代表什么呢?
回复: 如何让指定玩家不能拣东西?
register_touch ( Toucher[], Touched[], function[] )回复: 如何让指定玩家不能拣东西?
Post by PEnTiuMsKregister_touch("weaponobx", "player", "touch_weapon")
里面前2个参数代表什么呢?
weaponobx 是标准武器的类名,player 是玩家的类名
页:
[1]