码迷,mamicode.com
首页 > 其他好文 > 详细

CS裝包拆包事件(CSX模块)

时间:2014-12-20 00:40:17      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

 1 #include <amxmodx>
 2 
 3 // 需要在Modules.ini中添加CSX模块(csx_amxx.dll)
 4 #include <csx>
 5 
 6 public plugin_init()
 7 {
 8     register_plugin("bomb event", "1.0", "crsky")
 9 }
10 
11 public bomb_planting(iPlayer)
12 {
13     // 裝包开始
14 }
15 
16 public bomb_planted(iPlayer)
17 {
18     // 裝包完毕
19 }
20 
21 public bomb_defusing(iPlayer)
22 {
23     // 拆包开始
24 }
25 
26 public bomb_defused(iPlayer)
27 {
28     // 拆包完毕
29 }

 

CS裝包拆包事件(CSX模块)

标签:

原文地址:http://www.cnblogs.com/crsky/p/4174874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!