Beispiel #1
0
        public void OnRoundStart()
        {
            int money = local.Money;

            ph.send_buy_23(30);
            ph.send_buy_23(32);
            ph.send_buy_23(61);
            ph.send_buy_23(58);
            ph.send_buy_23(57);
            ph.send_buy_23(62);

            if (isPrimaryWeapon(local.Currentweapon))// has primary weapon
            {
                walkingState = WalkingState.EnemySearch;
            }
            else if (ItemScan("primary") != null)
            {
                walkingState = WalkingState.WeaponSearch;
            }
            else
            {
                walkingState = WalkingState.EnemySearch;
            }

            b_isRoundStarted = true;
            currentRoute     = null;
        }