搜索
楼主: jim0305

我的插件出问题了

[复制链接]
发表于 2006-11-24 19:38:08 | 显示全部楼层 来自 中国–北京–北京–海淀区

回复: 我的插件出问题了

  1. #include <amxmodx>
  2. #include <amxmisc>
  3. #define PLUGIN "RoundWeaponRestriction"
  4. #define VERSION "1.0"
  5. #define AUTHOR "Jim"
  6. new current_round = 0
  7. public plugin_init() {
  8.     register_plugin(PLUGIN, VERSION, AUTHOR)
  9.     register_logevent("round_start", 2, "1=Round_Start")
  10.     register_event("TextMsg", "round_restart", "a", "2=#Game_Commencing", "2=#Game_will_restart_in")
  11.     register_event("CurWeapon","hook_weapon","b","2!29")
  12. }
  13. public round_start() {
  14.     current_round++
  15. }
  16. public round_restart() {
  17.     current_round = 0
  18. }
  19. public hook_weapon(id) {
  20.     if(current_round > 3)
  21.         return
  22.     new wpid = read_data(2)
  23.     switch(current_round) {
  24.         case 1: if(wpid!=6) engclient_cmd(id,"weapon_knife")
  25.             case 2:{
  26.             switch(wpid){
  27.                 case 4,6,9,25: return
  28.                     default:{
  29.                     client_print(id,print_center,"You can't use this weapon at this round.")
  30.                     engclient_cmd(id,"weapon_knife")
  31.                 }
  32.             }
  33.         }
  34.         case 3:{
  35.             switch(wpid){
  36.                 case 2,4,6,9,10,11,16,17,25,26: return
  37.                     default:{
  38.                     client_print(id,print_center,"You can't use this weapon at this round.")
  39.                     engclient_cmd(id,"weapon_knife")
  40.                 }
  41.             }
  42.         }
  43.     }
  44. }
复制代码
弄完了,效果简单测试了一下,基本凑合。因为我的csdm除掉了buyzone和bomb,所以测试起来比较费尽,关键是我懒得改回去,呵呵,不好意思。你可以帮我测试一下,有什么问题告诉我。
回复

使用道具 举报

发表于 2006-11-24 19:39:51 | 显示全部楼层 来自 中国–北京–北京–海淀区

回复: 我的插件出问题了

效果是如果出现每局限制的武器。就自动换出刀来。
回复

使用道具 举报

 楼主| 发表于 2006-11-25 12:37:10 | 显示全部楼层 来自 中国–新疆–巴音郭楞蒙古自治州–库尔勒市

回复: 我的插件出问题了

AMXX编译失败,1.0、1.60、1.70下都试过了,会不会是我编译.SMA格式时出错???要不你传个附件上来啊。急死我了
回复

使用道具 举报

游客
回复
您需要登录后才可以回帖 登录 | 注个册吧

快速回复 返回顶部 返回列表