搜索
楼主: 20576526

[AMXX 带源码] 自动换边插件

[复制链接]
发表于 2011-10-24 09:18:50 | 显示全部楼层 来自 中国–河北–唐山
都是灌水的
回复

使用道具 举报

发表于 2011-10-31 15:02:48 | 显示全部楼层 来自 中国–贵州–安顺
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
回复

使用道具 举报

发表于 2011-10-31 15:17:40 | 显示全部楼层 来自 中国–广东–江门
太贵了 不过顶下
回复

使用道具 举报

发表于 2011-11-22 17:45:06 | 显示全部楼层 来自 中国–山东
10 个点通币,你怎么不去抢去
回复

使用道具 举报

发表于 2012-7-14 09:53:54 | 显示全部楼层 来自 中国–河南–郑州
真贵!!!!!!!!!!!!!!
回复

使用道具 举报

发表于 2012-12-5 22:28:12 | 显示全部楼层 来自 中国–内蒙古–赤峰
龟仙人dt.Sakulekingz(KIN)的马甲,鉴定完毕:lol
回复

使用道具 举报

发表于 2012-12-27 23:12:42 | 显示全部楼层 来自 中国–山东
挖出源码无罪
  1.         #include <amxmodx>
  2.         #include <amxmisc>
  3.         #include <cstrike>
  4.         
  5.         #define PLUGIN        "Auto Swap Teams"
  6.         #define VERSION        "1.0"
  7.         #define AUTHOR        "dt.Sakulekingz (KIN)"
  8.         #define LOADING        "^n^t%s v%s, Copyright (C) 2009 by %s^n"
  9.         
  10.         new score[2];
  11.         new mp_autoscore;
  12.         
  13.         public plugin_init()
  14.         {
  15.                 register_plugin(PLUGIN, VERSION, AUTHOR);
  16.                 server_print(LOADING,PLUGIN,VERSION,AUTHOR);
  17.                 register_event("TeamScore", "team_score", "a");
  18.                 register_logevent("show_the_score", 2, "0=World triggered", "1=Round_Draw", "1=Round_End");
  19.                 mp_autoscore = register_cvar("mp_autoscore", "15");
  20.         }
  21.         
  22.         public team_score()
  23.         {
  24.                 new team[32];
  25.                 read_data(1,team,31);
  26.                 if (equal(team,"CT"))
  27.                 {
  28.                         score[0] = read_data(2);
  29.                 }
  30.                 else if (equal(team,"TERRORIST"))
  31.                 {
  32.                         score[1] = read_data(2);
  33.                 }
  34.         }
  35.         
  36.         public show_the_score()
  37.         {
  38.                 if(get_pcvar_num(mp_autoscore) == score[0]+score[1])
  39.                 {
  40.                         static player;
  41.                         for(player = 1; player <= get_maxplayers(); player++)
  42.                         {
  43.                                 switch(get_user_team(player))
  44.                                 {
  45.                                         case 1: cs_set_user_team(player, 2);
  46.                                         case 2: cs_set_user_team(player, 1);
  47.                                 }
  48.                         }
  49.                         color_print(0, "第%d局过去了服务器自动交换双方队伍!",get_pcvar_num(mp_autoscore));
  50.                 }
  51.         }
  52.         
  53.         color_print(const id, const szText[], any:...)
  54.         {
  55.                 new szMsg[192], iLen = formatex(szMsg, 191, "^x04[Auto Swap Teams] ^x01");
  56.                 vformat(szMsg[iLen], 191 - iLen, szText, 3);
  57.                
  58.                 message_begin(id ? MSG_ONE : MSG_BROADCAST, get_user_msgid("SayText"), _, id);
  59.                 write_byte(1);
  60.                 write_string(szMsg);
  61.                 message_end();
  62.         }
复制代码
回复

使用道具 举报

发表于 2013-2-14 16:40:29 | 显示全部楼层 来自 中国–辽宁–鞍山–海城市
有人用过嘛?
回复

使用道具 举报

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

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