Intricate
Account Details
SteamID64 76561198119349065
SteamID3 [U:1:159083337]
SteamID32 STEAM_0:1:79541668
Country United States
Signed Up November 20, 2015
Last Posted April 15, 2019 at 3:03 PM
Posts 103 (0 per day)
Game Settings
In-game Sensitivity 1.6
Windows Sensitivity
Raw Input 1
DPI
350
Resolution
1024 x 768
Refresh Rate
60hz
Hardware Peripherals
Mouse  
Keyboard  
Mousepad  
Headphones  
Monitor  
1 2 3 4 ⋅⋅ 7
#282 TF2 Players that went on to greater adventures. in TF2 General Discussion

-snip-

posted about 5 years ago
#1 Weird mouse problem in Hardware

here is a video that shows the problem that I am having, this happens on any games I play not just csgo.

https://youtu.be/1ufOHATUj0w

What I can say:
it is specifically the problem with my mouse, I tested using other mice and I still ran into this problem.
This is not a surface issue, I tested using a piece of paper and I still ran into this problem

posted about 5 years ago
#7 CSGO: Danger Zone in CSGO General Discussion

I like how people who bought the game get prime for free now that's cool

posted about 5 years ago
#16 side name viewer in Off Topic

https://cdn.discordapp.com/attachments/488912513640038400/494684411233566720/download.png

posted about 5 years ago
#1 What should my net settings be? in Q/A Help

I normally play with 100+ ping and I was wondering what would be good settings for me to use
Here's my speedtest:

https://media.discordapp.net/attachments/488912513640038400/488912578102296598/speedtest.PNG?width=1249&height=703

I live in Hawaii btw

posted about 5 years ago
#1 [Url change] in Requests

I changed my twitch username and that changed my twitch url therefore I would like it to be updated here
Old twitch username : intricatetf2
New twitch username :intrcate_

posted about 5 years ago
#3 ESEA S28 W2: New God Flow vs. black swan in Matches

pretty sure sigh switched classes with dingo

posted about 5 years ago
#36 Settle this debate! in Off Topic

i like it

posted about 5 years ago
#39 Show me your internet in Off Topic

http://www.speedtest.net/result/7329562373

posted about 5 years ago
#68 randomyoutubecomment.com in Off Topic

fucking song
-Protocolback

posted about 5 years ago
#30 bear departs from Velocity eSports in News

[*]

posted about 6 years ago
#5 Pls help in Off Topic

So basically my problem is that I need to pick the specific values from the array that correspond to the value that I chose from the combined drop down

posted about 6 years ago
#1 Pls help in Off Topic

I am extremely confused right now
https://drive.google.com/file/d/1uoQ949YXsLJsm0d0Hz0W4BCAiyGrnvBQ/view?usp=sharing
I don't want someone to do my work for me but some pointers for me would be extremely useful I don't really understand how to lookup values in a 2d array(i probably could know it put i didn't go to the class they talked about it).
Here is what I have right now

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace Quiz7
{
    //Coded by 

    public partial class FormCheckDrivingDistance : Form
    {
        public FormCheckDrivingDistance()
        {
            InitializeComponent();
        }
        const int ROWS = 10;
        const int COLS = 10;
        double[,] drivingDistancesArray = {{0, 1004, 1753, 2752, 3017, 1520, 1507, 609, 3155, 448},
 {1004, 0, 921, 1780, 2048, 1397, 919, 515, 2176, 709},
 {1753, 921, 0, 1230, 1399, 1343, 517, 1435, 2234, 1307},
 {2752, 1780, 1230, 0, 272, 2570, 1732, 2251, 1322, 2420},
{3017, 2048, 1399, 272, 0, 2716, 1858, 2523, 1278, 2646},
{1520, 1397, 1343, 2570, 2716, 0, 860, 1494, 3447, 1057},
{1507, 919, 517, 1732, 1858, 860, 0, 1307, 2734, 1099},
{609, 515, 1435, 2251, 2523, 1494, 1307, 0, 2820, 571},
{3155, 2176, 2234, 1322, 1278, 3447, 2734, 2820, 0, 2887},
{448, 709, 1307, 2420, 2646, 1057, 1099, 571, 2887, 0}};

        private void buttonCalculate_Click(object sender, EventArgs e)
        {
            String comboBoxValue1 = comboBoxDeparture.Text;
            //set the picture shown in the picture box to the corresponding one 
            //that was set 

            if (comboBoxValue1 == "Boston" )
            {
                pictureBox1.Image = imageList1.Images[0];
            }
            if (comboBoxValue1 == "Chicago")
            {
                pictureBox1.Image = imageList1.Images[1];
            }
            if (comboBoxValue1 == "Dallas")
            {
                pictureBox1.Image = imageList1.Images[2];
            }
            if (comboBoxValue1 == "Las Vegas")
            {
                pictureBox1.Image = imageList1.Images[3];
            }
            if (comboBoxValue1 == "Los Angeles")
            {
                pictureBox1.Image = imageList1.Images[4];
            }
            if (comboBoxValue1 == "Miami")
            {
                pictureBox1.Image = imageList1.Images[5];
            }
            if (comboBoxValue1 == "New Orleans")
            {
                pictureBox1.Image = imageList1.Images[6];
            }
            if (comboBoxValue1 == "Toronto")
            {
                pictureBox1.Image = imageList1.Images[7];
            }
            if (comboBoxValue1 == "Vancouver")
            {
                pictureBox1.Image = imageList1.Images[8];
            }
            if (comboBoxValue1 == "Washington DC")
            {
                pictureBox1.Image = imageList1.Images[9];
            }
           if(comboBoxValue1 == null)
            {
                MessageBox.Show("Please enter departure city");

            }
            String comboBoxValue2 = comboBoxDestination.Text;
            //set the picture shown in the picture box to the corresponding one 
            //that was set 

            if (comboBoxValue2 == "Boston")
            {
                pictureBox2.Image = imageList1.Images[0];
            }
            if (comboBoxValue2 == "Chicago")
            {
                pictureBox2.Image = imageList1.Images[1];
            }
            if (comboBoxValue2 == "Dallas")
            {
                pictureBox2.Image = imageList1.Images[2];
            }
            if (comboBoxValue2 == "Las Vegas")
            {
                pictureBox2.Image = imageList1.Images[3];
            }
            if (comboBoxValue2 == "Los Angeles")
            {
                pictureBox2.Image = imageList1.Images[4];
            }
            if (comboBoxValue2 == "Miami")
            {
                pictureBox2.Image = imageList1.Images[5];
            }
            if (comboBoxValue2 == "New Orleans")
            {
                pictureBox2.Image = imageList1.Images[6];
            }
            if (comboBoxValue2 == "Toronto")
            {
                pictureBox2.Image = imageList1.Images[7];
            }
            if (comboBoxValue2 == "Vancouver")
            {
                pictureBox2.Image = imageList1.Images[8];
            }
            if (comboBoxValue2 == "Washington DC")
            {
                pictureBox2.Image = imageList1.Images[9];
            }
           if(comboBoxValue2 == null)
            {
                MessageBox.Show("Please enter destination city");

            }
            String comboBoxValue3 = comboBoxTotalDistance.Text;

        }

        private void buttonClear_Click(object sender, EventArgs e)
        {
            //clear the comboboxes and output labels

        }

        private void buttonExit_Click(object sender, EventArgs e)
        {
            //close the application
            this.Close();
        }

        private void FormCheckDrivingDistance_Load(object sender, EventArgs e)
        {
            pictureBox1.Image = imageList1.Images[0];
            pictureBox2.Image = imageList1.Images[0];
        }
    }
}
posted about 6 years ago
#3 new update coming in TF2 General Discussion
Geel9Why

i want upfrags

posted about 6 years ago
#1 new update coming in TF2 General Discussion

I just got this email

Johns@valvesoftware.comWe're working on a mandatory update for Team Fortress 2. The notes for
the update are conspicuous in their absence. We should have the update
ready soon.

- John
posted about 6 years ago
1 2 3 4 ⋅⋅ 7