首页 > 代码库 > CS裝包拆包事件(CSX模块)

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

 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模块)