popbily 发表于 2011-10-24 09:18:50

都是灌水的

XZHZZZZZz 发表于 2011-10-31 15:02:48

DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD

yeyeye0750 发表于 2011-10-31 15:17:40

太贵了 不过顶下

lkaihtt123 发表于 2011-11-22 17:45:06

10 个点通币,你怎么不去抢去

碧水晴天 发表于 2012-7-14 09:53:54

真贵!!!!!!!!!!!!!!

99fps 发表于 2012-12-5 22:28:12

龟仙人dt.Sakulekingz(KIN)的马甲,鉴定完毕:lol

css 发表于 2012-12-27 23:12:42

挖出源码无罪      #include <amxmodx>
      #include <amxmisc>
      #include <cstrike>
      
      #define PLUGIN      "Auto Swap Teams"
      #define VERSION      "1.0"
      #define AUTHOR      "dt.Sakulekingz (KIN)"
      #define LOADING      "^n^t%s v%s, Copyright (C) 2009 by %s^n"
      
      new score;
      new mp_autoscore;
      
      public plugin_init()
      {
                register_plugin(PLUGIN, VERSION, AUTHOR);
                server_print(LOADING,PLUGIN,VERSION,AUTHOR);
                register_event("TeamScore", "team_score", "a");
                register_logevent("show_the_score", 2, "0=World triggered", "1=Round_Draw", "1=Round_End");
                mp_autoscore = register_cvar("mp_autoscore", "15");
      }
      
      public team_score()
      {
                new team;
                read_data(1,team,31);
                if (equal(team,"CT"))
                {
                        score = read_data(2);
                }
                else if (equal(team,"TERRORIST"))
                {
                        score = read_data(2);
                }
      }
      
      public show_the_score()
      {
                if(get_pcvar_num(mp_autoscore) == score+score)
                {
                        static player;
                        for(player = 1; player <= get_maxplayers(); player++)
                        {
                              switch(get_user_team(player))
                              {
                                        case 1: cs_set_user_team(player, 2);
                                        case 2: cs_set_user_team(player, 1);
                              }
                        }
                        color_print(0, "第%d局过去了服务器自动交换双方队伍!",get_pcvar_num(mp_autoscore));
                }
      }
      
      color_print(const id, const szText[], any:...)
      {
                new szMsg, iLen = formatex(szMsg, 191, "^x04 ^x01");
                vformat(szMsg, 191 - iLen, szText, 3);
               
                message_begin(id ? MSG_ONE : MSG_BROADCAST, get_user_msgid("SayText"), _, id);
                write_byte(1);
                write_string(szMsg);
                message_end();
      }

douliang 发表于 2013-2-14 16:40:29

有人用过嘛?
页: 1 2 3 [4]
查看完整版本: 自动换边插件