首页 > 代码库 > 判断玩家是否在购买区和爆破区
判断玩家是否在购买区和爆破区
1 #include <amxmodx> 2 3 new g_bInBuyZone[33] 4 new g_bInBombZone[33] 5 6 public plugin_init() 7 { 8 register_plugin("buy and bomb zone", "1.0", "crsky") 9 register_message(get_user_msgid("StatusIcon"), "fw_StatusIcon")10 }11 12 public fw_StatusIcon(iMsgId, iDest, iEnt)13 {14 if(!is_user_connected(iEnt)) return15 16 new szIcon[32]17 get_msg_arg_string(2, szIcon, sizeof szIcon)18 19 if(equal(szIcon, "buyzone"))20 {21 g_bInBuyZone[iEnt] = get_msg_arg_int(1)22 }23 if(equal(szIcon, "c4"))24 {25 g_bInBombZone[iEnt] = get_msg_arg_int(1) == 2 ? 1 : 026 }27 }28 29 public get_user_buyzone(id)30 {31 return g_bInBuyZone[id]32 }33 34 public get_user_bombzone(id)35 {36 return g_bInBombZone[id]37 }
判断玩家是否在购买区和爆破区
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。