Codical
Account Details
SteamID64 76561198797680534
SteamID3 [U:1:837414806]
SteamID32 STEAM_0:0:418707403
Country New Zealand
Signed Up April 19, 2018
Last Posted August 25, 2018 at 4:12 AM
Posts 3 (0 per day)
Game Settings
In-game Sensitivity
Windows Sensitivity
Raw Input  
DPI
 
Resolution
 
Refresh Rate
 
Hardware Peripherals
Mouse  
Keyboard  
Mousepad  
Headphones  
Monitor  
#46 Insomnia63: Day 1 in Events
MidnightMickCodicalWow I didn't realize Kaptain, Drackk and Raymon still played. Kinda sucks to see Se7en without their mainline players, especially such legendary ones.
Drackk stepped down at the same time as Kaptain after Rewind 2 due to RL stuff.
The team got very good replacements. :)

That's what I thought initially. Sorry about the confusion. Just the guy I was originally quoting made it sound like Se7en was down three players because they couldn't make it to lan or something.

posted about 5 years ago
#44 Insomnia63: Day 1 in Events
VisEveryone saying blaze and shade not playing for froyo but we don't see kaptain, drackk and raymon in 7 too.
Show Content
Stop trying to find excuses because there are none

Wow I didn't realize Kaptain, Drackk and Raymon still played. Kinda sucks to see Se7en without their mainline players, especially such legendary ones.

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

At this stage just think about the 2D array as just the table of driving distances.

When you as a human want to look up the distance between the two cities you first have to find what two cities you have to find the distance from.
With those two cities just read the table and find the distance between the two cities. When you read the table you take one of the cities names and find the row then take the other cities name and find the corresponding column. Where the column and the row intersect you find the distance. Doing this programmatically is not much different.

Like when you looked into 1D arrays the number tells the computer what slot to look into i.e. int z = array[2].
However 2D arrays are like the table. you need both the row and the column to get what data is inside it.
For example if you want to find the distance between Dallas and Boston you would go int p = drivingDistancesArray[0,2]

As Dallas is the 0 row and Boston is in the 2 Column( Remember arrays in C# start at 0(there is a reason why but its complex)).
What your job is to do is to find a way to programmatically look up the table.

posted about 6 years ago