Differ
Account Details
SteamID64 76561198055233348
SteamID3 [U:1:94967620]
SteamID32 STEAM_0:0:47483810
Country Rainbow Nation
Signed Up January 11, 2015
Last Posted August 4, 2017 at 3:35 AM
Posts 368 (0.1 per day)
Game Settings
In-game Sensitivity 7.7 in/360
Windows Sensitivity 7
Raw Input 1
DPI
800
Resolution
1920x1080
Refresh Rate
144 Hz
Hardware Peripherals
Mouse Logitech G303
Keyboard Filco Majestouch 2
Mousepad PureTrak Talent
Headphones Sennheiser HD 595
Monitor Asus VG248QE
1 2 3 4 5 6 7 8 ⋅⋅ 25
#27 Autism test in The Dumpster

https://i.gyazo.com/79cf80d074a64bdbc25f164efc62f323.png

trippai was diagnosed but i got 27/36 lol

doesn't seem like it works very well?

Well, it's not really an autism test.

posted about 7 years ago
#5 lfp IM :) in Recruitment (looking for players)

Cool friends, good dm. I <3 Percy.

posted about 7 years ago
#4 Streamline (Game) Free! in Other Games
Cubekolwhats with the free games ? first dirt after that far cry and now this

It's just a marketing ploy to get people playing and talking about their games so more people will buy it after the promotion is over.

As for the timing of multiple free games around the same time, if there is actually more of that happening than usual, it could be that companies know sales for games are about to spike. Black Friday is coming up, so that wouldn't surprise me.

posted about 7 years ago
#38 game recomendations in Other Games
murkscribemmrarktedont play bioshock infinite, one of the most pseudo-intellectual and bland games to come out recently
its bad compared to the original bioshocks and awful in comparison to system shock

I agree with that. I mean story wise there's a lot of plot holes and it's rather pretentious with the multiple universes and "tears". But its still artistically visually appealing to look at and it's got good gameplay elements, if it wanted to accomplish a more deep intricate story line, having it as a first person shooter probably got in the way of it.

I was with you until that last part. Since when are FPSs incapable of having good storylines?

On the thread topic, I know you mainly wanted multi-player FPS recommendations, but you already have a few of those soooo I love roguelikes. If you ever feel like playing one, Binding of Isaac and Crypt of the Necrodancer are both really fun and full of personality. The Necrodancer trailer is one of the few game trailers that ever actually made me wanna buy something: https://www.youtube.com/watch?v=Al8TlAtLu2Y

posted about 7 years ago
#1 LFP Rewind LAN (IM-ish) in Recruitment (looking for players)

Yo, we need some gamers for the socal open tournament, roughly IM level.

Scouts: Ghostac/Moof/Change/??
Roamer: Ghostac/Smitty/??
Pocket: Morin
Demo: Max
Medic: Differ

Add me: https://steamcommunity.com/id/differ-del

posted about 7 years ago
#24 LFT S 24 in Recruitment (looking for team)

Milan's pretty good. I think the main reasons his calls can get questionable are that he only plays pugs and that he's bad at tracking ubers for some reason. The first one could be solved over time with a stable team experience, the second by just playing with someone who'll keep track better and call it consistently lol

Attitude-wise, he can be defensive and gets pretty abrasive when "standing up for himself." It's fairly manageable for pugs, but I'm not sure how it would work out in an actual season, honestly. If you can get along with him, though, I think he would do well with a chance to improve and mellow out further in a team setting.

posted about 7 years ago
#6 missmatches - lft s24 open scout in Recruitment (looking for team)

100% what catface said. Matches deserves to get on a bubble-ish team and grow into the beastly fragger she can be!

posted about 7 years ago
#2 lft soldier pocket low open s24 in Recruitment (looking for team)

Murk is seriously the most dedicated kid. He showed up to every single map/demo review I did for his team last season, even though he was just subbing, and was always engaged and asking questions. Sometimes he can derail comms/conversation a bit, but I'd definitely still recommend any new/low open teams try him out. :)

posted about 7 years ago
#24 edward lft in Recruitment (looking for team)

Take any chill mumble, add Ed, and it's suddenly 10 times more fun. He's super good and always wants to help figure out the issues the team is facing. He can sometimes get a little too fixated on one thing and let it tilt him, but that only really happens if the whole team is off track. Overall very positive gamer.

Might get your entire team to watch anime together after scrims. B)

posted about 7 years ago
#54 help me with my coding hw in Off Topic

Yo, so I agree that you should figure out most of this stuff on your own, but something that will help you get started fixing your code is that you're using logical connectors wrong repeatedly.

When you make phrases using && and ||, each statement joined by those evaluates separately. For example, if you write

int i = 5;

if(i == 3 || 4)
{
    cout << "I'm printing stuff!" << endl;
}

it will print out stuff even though i doesn't equal 3 or 4. That's because the 4 written after || is its own isolated boolean expression that evaluates to True. So, to see if i is 3 or 4, you'd need to write

if(i == 3 || i == 4)

Google "logical connectors c++" if you're still not totally sure how to use them.

Show Content
Sorry to break the chain of trolling.
posted about 7 years ago
#16 Could my pyosd overlay cause VAC problems? in Q/A Help
BilbertPeople have created timers for tracking Übercharges. I remember that Slin used to use one. I don't think anyone was ever VAC'd for it.
http://www.teamfortress.tv/17883/uber-tracking-hud-mod

To elaborate on what yttrium said, this is pretty different since what you're talking about is a hud thing, which is generated through TF2 itself. This would be an entirely separate program that would overlay anything on my screen, including but not limited to the game, when I ran it. It would be kind of like the display that comes up on your monitor when you're adjusting brightness.

As for just going ahead and using Slin's thing, I just don't like it or find it useful, personally, and custom HUD stuff tends to require occasional updates.

The reason I'm asking about it is because I could see there potentially being (minor and impractical) ways to cheat some things with a sophisticated overlay, so I didn't wanna go fooling blindly in territory where there might be blanket bans on certain practices.

posted about 7 years ago
#4 Could my pyosd overlay cause VAC problems? in Q/A Help
aieraI am pretty sure it won't though why don't you just have a rain meter skin for this

Because I'm learning python, and I want to practice it using projects that are useful/interesting to me.

posted about 7 years ago
#1 Could my pyosd overlay cause VAC problems? in Q/A Help

I'm learning python and was thinking about making a little pyosd script to display a timer that's constantly running down (sort of like a server timer, but independent of any in-game timelimit). It wouldn't require any game code hooking at all. Could that cause any problems with VAC? If not, is there any manner in which I could use an OSD without game code that would endanger my account?

posted about 7 years ago
#17 Is Aziz Ansari funny? in Off Topic

I don't find him too funny at all as an individual, but I thought Master of None was situationally funny sometimes. I felt like that show was sort of intended to be a younger version of Louie, i.e., centered around comedy in theory but mostly about making relatable and sometimes discomfiting insights about everyday life. Louie is the much better show, though, imo.

posted about 7 years ago
#16 NAB LFP IM S23 in Recruitment (looking for players)

Bump. Putting out feelers for an interim or replacement pocket.

posted about 7 years ago
1 2 3 4 5 6 7 8 ⋅⋅ 25