-snip-
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 |
here is a video that shows the problem that I am having, this happens on any games I play not just csgo.
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
I like how people who bought the game get prime for free now that's cool
I normally play with 100+ ping and I was wondering what would be good settings for me to use
Here's my speedtest:
I live in Hawaii btw
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_
pretty sure sigh switched classes with dingo
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
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];
}
}
}
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