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 }
时间: 2024-10-17 10:56:08