data stringlengths 14 24.3k |
|---|
ccman32#4022: cant see anything there xD
Skyborg#0894: gifing a video, why XD
GooseFairy#6680: cause fast
GooseFairy#6680: xD
GooseFairy#6680: im not gonna upload the vid cause it's terrible
GooseFairy#6680: but yea that's my view
GooseFairy#6680: xD
ccman32#4022: lol you are right there now?
GooseFairy#6680: I live he... |
ccman32#4022: omfg
ccman32#4022: #scripted
ccman32#4022: XD
GooseFairy#6680: tfw you cheat the kickoff and the guy behind you still goes for boost
axelalex2#5793: oooooooo
ccman32#4022: ๐ฎ
axelalex2#5793: xD
ccman32#4022: rofl
ccman32#4022: the saves lmfao
ccman32#4022: "It's easy to play defense when you exist" XD
axe... |
twobackfromtheend#1471: he had to play last man when he first moved to NRG
ccman32#4022: i guess this is it
twobackfromtheend#1471: he's seriously amazing in all positions
ccman32#4022: again xD
ccman32#4022: this guy can replace an entire team lol
GooseFairy#6680: lol squishy
axelalex2#5793: JSTN delivered in the prev... |
axelalex2#5793: In Season 1, 2 & 4 they lost their first 2 matches in a double elimination bracket, and dropped straight out, finishing in last place.
ccman32#4022: maybe they are cheating ๐ค
NeverCast#1448: They are much more consistent now. I hope they deliver this season.
NeverCast#1448: Squishy, Fire & Riz' are my ... |
ccman32#4022: there aren't many cheats for rl tho that I am aware of
ccman32#4022: and the ones i know are quite useless
ccman32#4022: I think i have one of the only ones lol and it also isn't very popular
ccman32#4022: in fact there is so little going on in terms of rl cheats that mine is already like in the first few... |
ccman32#4022: because with a game this popular I'd expect at least some people working on such things
dtracers#9598: We are working on things to make Bots that can do mechanics better than humans and we don't have that yet
ccman32#4022: especially since it has almost nothing to offer against cheats except having as muc... |
ccman32#4022: i dont get that post xD
dtracers#9598: look at the end of the names
ccman32#4022: oh lol
ccman32#4022: so what if one guy gets sick or something and cant play? xD
GooseFairy#6680: cheats are offtopic in the interest of rlbot
ccman32#4022: ^
GooseFairy#6680: speaking of the interests of rlbot
GooseFairy#66... |
NeverCast#1448: I remembered why I do not do the thing
NeverCast#1448: But then I realized I can just stub steam and then I'm good.
ccman32#4022: do u understand my pain of updating this dll and getting it broken like almost instantly again by another update? lol
GooseFairy#6680: no but if you show me how to update the... |
dtracers#9598: UE script code
NeverCast#1448: Yeah. I assumed it compiled to native. It made since to me for games.
NeverCast#1448: That's nice to know.
NeverCast#1448: So you can just pull fields and call functions directly ? That must be real nice.
NeverCast#1448: Managing stack would be a nightmare otherwise. So are... |
dtracers#9598: they had a talk on gdc and a part of it covered ball prediction and cheats and how currently no cheats were useful or worth worrying about
NeverCast#1448: I'm aware some checksumming happens between server and client. But it's very shallow.
NeverCast#1448: Until bots are Diamond level. Its not a threat I... |
ccman32#4022: i already planned to make a completely new sdk generator from scratch but thats a huge project that i had no time for so far
dtracers#9598: maybe they program in kotlin
dtracers#9598: and it compiles to c++
dtracers#9598: ๐
ccman32#4022: ue4 has no uscript anymore
ccman32#4022: but still it has all the c... |
ccman32#4022: this isnt an optimization, just obfuscation
ccman32#4022: like they are trying to hide something
Sciguymjm#5935: Probably trying to prevent cheating....
Sciguymjm#5935: Not saying its effective
ccman32#4022: yea, its not
ccman32#4022: i am basically the most affected by this because my sdk generator is mo... |
Tangil#3830: I've created the most ungodly abomination of code ever
Tangil#3830: I didn't know how to handle this so I decided "fuck it"
Tangil#3830: Anyone know how to make this code less crap?
```csharp
if (outputs.fire)
{
if (fullOutputs.firePressed)
{
fullOutputs.firePressed = false;
fullOutputs.fireHeld = true;
}
... |
if (fullOutputs.jumpPressed)
{
fullOutputs.jumpPressed = false;
fullOutputs.jumpHeld = true;
}
}
```
Tangil#3830: I cut it down for brevity
Tangil#3830: Anyone know how I could make it so that I don't repeat myself for essentially the same code?
Jeon#7156: Well, for just two times, a macro / function isn't necessary, I... |
Tangil#3830: this is the full code:
```csharp
if (outputs.fire)
{
if (fullOutputs.firePressed)
{
fullOutputs.firePressed = false;
fullOutputs.fireHeld = true;
}
else
fullOutputs.firePressed = true;
}
else
{
fullOutputs.firePressed = false; |
fullOutputs.fireHeld = false;
}
if (outputs.jump)
{
if (fullOutputs.jumpPressed)
{
fullOutputs.jumpPressed = false;
fullOutputs.jumpHeld = true;
}
else
fullOutputs.jumpPressed = true;
}
else
{ |
fullOutputs.jumpPressed = false;
fullOutputs.jumpHeld = false;
}
if (outputs.slide)
{
if (fullOutputs.slidePressed)
{
fullOutputs.slidePressed = false;
fullOutputs.slideHeld = true;
}
else
fullOutputs.slidePressed = true;
}
else |
{
fullOutputs.slidePressed = false;
fullOutputs.slideHeld = false;
}
```
Tangil#3830: I'm doing the same code 3 times and each time it's a large piece of repeated code
Tangil#3830: Actually yea I'll just make a function
Tangil#3830: thanks @Jeon
Jeon#7156: Yeah, or involve the preprocessor a bit:
```c
#define SET_PROP(... |
fullOutputs. ## word ## Held = true; \
} \
else \
fullOutputs. ## word ## Pressed = true; \
} \
else \
{ \
fullOutputs. ## word ## Pressed = false; \
fullOutputs. ## word ## Held = false; \
}
```
Tangil#3830: ah that's cool
Tangil#3830: gonna look into preprocessor directives now
Jeon#7156: Furthermore, you're using so... |
#define SET_PROP(word) \
fullOutputs. ## word ## Pressed = outputs. ## word && !fullOutputs. ## word ## Pressed; \
fullOutputs. ## word ## Held = outputs. ## word && fullOutputs. ## word ## Pressed
```
Tangil#3830: wow that's a lot more compact
Jeon#7156: But it logically adds a `fullOutputs. ## word ## Held = false;` ... |
46656 possible outcomes #1 #2 #3 #4 #5 #6 #7 #8
compLexity Gaming 43.13% 29.67% 7.60% 15.59% 3.74% 0.27% 0.00% 0.00%
Gale Force Esports 32.95% 29.94% 12.11% 16.98% 7.41% 0.62% 0.00% 0.00%
Renault Sport Team Vitality 23.92% 34.72% 1... |
GooseFairy#6680: ``info on brain
GooseFairy#6680: O no it died
GooseFairy#6680: xD
GooseFairy#6680: Good thing I wrapped everything in a try/except that would save if anything broke
Edwin.#7531: Lol what's that `` bot thing
GooseFairy#6680: Superlinker is a nested Markov chain that builds itself off of discord servers ... |
7776 possible outcomes #1 #2 #3 #4 #5 #6 #7 #8
Renault Sport Team Vitality 43.98% 37.04% 18.98% 0.00% 0.00% 0.00% 0.00% 0.00%
compLexity Gaming 28.24% 38.89% 10.65% 20.37% 1.85% 0.00% 0.00% 0.00%
Gale Force Esports 27.78% 24.07% 2... |
Renault Sport Team Vitality 33.33% 33.33% 33.33% 0.00% 0.00% 0.00% 0.00% 0.00%
Gale Force Esports 25.00% 16.67% 33.33% 25.00% 0.00% 0.00% 0.00% 0.00%
Flipsid3 Tactics 0.00% 0.00% 25.00% 75.00% 0.00% 0.00% 0.00% 0.00%
Team Envy 0.00% 0.00% ... |
axelalex2#5793: LUL
ccman32#4022: lol
twobackfromtheend#1471: uh
axelalex2#5793: Psyonix, fix servers pls
axelalex2#5793: xD
twobackfromtheend#1471: psyonix fix national grid pls
ccman32#4022: inb4 matches keep playing and they dont notice this
axelalex2#5793: pretty sure they advised the players to stop
ccman32#4022: ... |
Skyborg#0894: Or the studio town
axelalex2#5793: studio
Edwin.#7531: Is this serious?
GooseFairy#6680: lol
Edwin.#7531: As in aint it a prank of some viewer who thought lets send this
axelalex2#5793: https://twitter.com/DlRGH/status/985576453268946944 xD
axelalex2#5793: https://twitter.com/IIUBCROS/status/9855768487835... |
twobackfromtheend#1471: for all psyonix's faults, be glad the ball doesnt do this https://cdn.discordapp.com/attachments/424610429634084867/435190927792013343/unknown.png
ccman32#4022: @NeverCast how did this get on pastebin 1 year ago lol
ccman32#4022: https://pastebin.com/k4Yimr6c
ccman32#4022: i made that like so, s... |
ccman32#4022: i stopped with anything rs related like years ago
ccman32#4022: i think the last thing i did was trying to buy partyhats for 1gp on all of my accounts
NeverCast#1448: I stopped RS stuff around 2006-2007
ccman32#4022: maybe one succeeded
ccman32#4022: XDDD
NeverCast#1448: Their updates went on hold for Sys... |
NeverCast#1448: I'm surprised I remember them at all tbh, I barely remember last week but somehow I can remember a decade ago.
ccman32#4022: i dont really remember learning much about coding in rs though, i was just the typical copy&paster trying to get the stuff he copy pasted together to work somehow
ccman32#4022: an... |
NeverCast#1448: I don't think I got to 99 in any skill.
ccman32#4022: oh yeah and also one for picking up wine in ... idk was it falador or something? via telecinetic
ccman32#4022: and then one for picking lymp roots or however they were called and banking those in varrock
ccman32#4022: i think i made millions with run... |
ccman32#4022: i think i never really made a bot without antiban logic in it
ccman32#4022: turning camera, random clicking, all sorts of that stuff
NeverCast#1448: Then they started logging mouse movement! We had to add biezer curves and such to mouse movement. To seem human.
NeverCast#1448: Us botters, we helped keep t... |
ccman32#4022: or whatever that was
NeverCast#1448: I mean before grand exchange existed
NeverCast#1448: Before drop trading was banned, and before trade was capped to values that were of equal value
NeverCast#1448: Gosh that ruined merchanting.
NeverCast#1448: Trade wouldn't let you make a profit
ccman32#4022: i was th... |
ccman32#4022: and new graphics
NeverCast#1448: Oh I heard about it but I wasn't playing at that time.
ccman32#4022: and idk there was lots of other shit going on
NeverCast#1448: I know they revamped graphics and then they rolled out RS3
NeverCast#1448: Its weird, looking at the game now, it feels like ... like seeing a... |
NeverCast#1448: Or are you watching one of the shows?
dtracers#9598: the live action is by netflix but netflix also has the entire cartoon
dtracers#9598: the brotherhood version
dtracers#9598: since there are two versions
NeverCast#1448: I never did finish Brotherhood
Aces#1239: I believe they have both
dtracers#9598: ... |
dtracers#9598: it is actually a fairly decent version of it.
It is basically the main story cut out of any side characters
Aces#1239: Seen some really well translated puns that you rarely see done well
Aces#1239: But also some utter trash
Aces#1239: The originals work tends to be better
Aces#1239: I also suspect the co... |
dtracers#9598: thats true
Aces#1239: Iโm only assuming, but I doubt Netflix donโt get other companies for their translations at every step
dtracers#9598: yeah probably.
They have a very wide range of originals. Like another one I watched recently altered carbon
Aces#1239: That was a real response to Amazonโs American ... |
But it was useful to watch legend of korra on it
Aces#1239: Amazon video I only have because prime
Aces#1239: The catalogue is just junk
Yannoux#6969: at least that's a cool feature to have one subscription to rule them all
Aces#1239: They get like one good film a month, and a good series once a year at best
Aces#1239:... |
NeverCast#1448: You find out about the dude that runs the homunculus and his significance to the lead characters, hopefully no spoilers there, I think that is where I got to
dtracers#9598: lo
dtracers#9598: that is only part 1
dtracers#9598: i am at the end of the entire thing
NeverCast#1448: Ah, yeah I wasn't sure whe... |
ccman32#4022: alpha console lol
ccman32#4022: i dont even know anymore, thats more users than some of the most popular steam games have players at the same time
Aces#1239: I need an ancient greek keyboard on here.
Aces#1239: And yeah itโs popularity has visibly increased a lot lately
ccman32#4022: lol idk anymore, that... |
Skyborg#0894: And there are diagrams for that, I'll see if I find the ones I used or similar
Skyborg#0894: I don't wonder in such lands ๐
GooseFairy#6680: solidworks has built-in rack and pinion stuff but it doesn't cover what I need and the only tutorials out there just show you how to use the built-in stuff ;-;
Skyb... |
GooseFairy#6680: I'd use a belt normally but this is a special case where belts just aren't gonna work
ccman32#4022: but you already have a 3d printer? ๐ค
GooseFairy#6680: the purpose of a 3D printer is to 3D print more 3D printers
ccman32#4022: beware, one day they will replicate themselves and conquer the earth!
Goos... |
Jeon#7156: One of those valuable lessons you learn in GTA SA :D
ccman32#4022: i still think some of those actually believe they are in gta lol
GooseFairy#6680: yea lol
ccman32#4022: why else would you drive like this https://www.youtube.com/watch?v=d4b5b0d36Ks&t=1m28s
ccman32#4022: but hey, he used his blinker ๐
ccman... |
GooseFairy#6680: @Skyborg at this point I'm just trying to find that blue dimension
GooseFairy#6680: if the width of each tooth was the same as the gap between the teeth, it would be 3.14mm
GooseFairy#6680: buuuuut that doesn't mesh without backlash
GooseFairy#6680: https://cdn.discordapp.com/attachments/4246104296340... |
Yannoux#6969: why are you this much into pinions and teethed wheels ? ๐ค
Skyborg#0894: that tutorial might help :p
Skyborg#0894: i havent found the builtin one (if it exists)
Skyborg#0894: @Yannoux this is what industrial design makes to you
Yannoux#6969: i made a skateboard in solidworks... that's all i've done with i... |
http://www.indusstock.com/src/src/produtos/equipamentosnovos/transportadores/transportador11.jpg
GooseFairy#6680: lol I watched that tutorial, doesn't really help much
Skyborg#0894: https://gyazo.com/e4a7253cf007a2ebe7f02da7c42d4cf6
Skyborg#0894: https://gyazo.com/85c2cb08606c0c8aeae03eee27f54e50
Skyborg#0894: they lit... |
Skyborg#0894: yeah, that seems to work, now you just have to workout the offset
Skyborg#0894: probably ```((2*pi*(radius to contact point))/15)```
GooseFairy#6680: I don't even have a way to change the profile of my pinion lol
GooseFairy#6680: idk how at least
Skyborg#0894: why would you want to change? the tooth profi... |
GooseFairy#6680: yea it's that tooth correction
Skyborg#0894: https://cdn.discordapp.com/attachments/424610429634084867/435562634343874570/Spur_Gear12.stp
Skyborg#0894: you can use this one i think
GooseFairy#6680: lol I need a rack tho
GooseFairy#6680: not a gear
Skyborg#0894: but this one isn't fatty
GooseFairy#6680... |
GooseFairy#6680: lol
GooseFairy#6680: https://i.gyazo.com/bbdf5e835bf84bb3bd8494d61cf13dc9.png
GooseFairy#6680: throwing science at the wall to see what sticks
GooseFairy#6680: xD
Skyborg#0894: do you want to throw my science?
Skyborg#0894: https://gyazo.com/9770741ebfd52bd866b2893d2ae5d414
GooseFairy#6680: it's a bit ... |
GooseFairy#6680: this is how my printed version was but with the proper gap spacing
Skyborg#0894: premature enter pressing XD
is that the fatty one?
GooseFairy#6680: yea I'm not using the one you sent me
GooseFairy#6680: I could try it
GooseFairy#6680: can't even open the file lol
Skyborg#0894: import it, step is a gen... |
GooseFairy#6680: I gotta go fly for a couple hours brb lol
Skyborg#0894: nice flight ๐
GooseFairy#6680: Annnnnd it got cancelled xD
GooseFairy#6680: My school forces maximum wind levels on the students for safety reasons and it's 30 knots at 1000ft right now which is literally off our scale
ccman32#4022: lol
ccman32#... |
GooseFairy#6680: 2011 wasn't that long ago.... Oh it was
Jeon#7156: What do / did you pay for your pilots license?
GooseFairy#6680: too much
GooseFairy#6680: ;)
GooseFairy#6680: it should only take about ~$6k to 8k to get one
Jeon#7156: Yeah, I figured. I'm interested in that myself. But I don't have much time and I'm ... |
NeverCast#1448: ๐ฎ I did not know this.
GooseFairy#6680: you can only see the left side of the red box, in the other side 7L is printed
NeverCast#1448: _gets learnt_
NeverCast#1448: Interesting, so what does the double marking mean?
NeverCast#1448: You are on 25R?
Jeon#7156: Nah, here the big airports do not host a fli... |
GooseFairy#6680: https://acukwik.com/runwaydiagram.ashx?Procedure_ID=23314
GooseFairy#6680: whole airport for reference
GooseFairy#6680: lol
NeverCast#1448: Aw is smol
GooseFairy#6680: lol I wouldn't call a 10,500ft runway small
GooseFairy#6680: *Daytona Beach Tower, N12345 Holding short of 7L at N5, ready for departur... |
Jeon#7156: I'm sitting in Berlin, Germany
GooseFairy#6680: lol you're in the wrong country then ;p
GooseFairy#6680: flying in Europe is possible but a lot less practical from what I've heard
GooseFairy#6680: and yea at most of the bigger airports they start adding numbers to taxiway letters so that they don't use up th... |
GooseFairy#6680: still have to pay your way through instrument rating and commercial pilot certificate, but at least you won't need as many hours before you can be hired at an airline
NeverCast#1448: Oh yeah by the looks of it, commericial is another 10k
NeverCast#1448: and then. I NEED A PLANE
GooseFairy#6680: haha ye... |
GooseFairy#6680: the planes usually aren't too expensive, just the engines
GooseFairy#6680: aircraft engines are pretty crazy
NeverCast#1448: What does hanger rent cost?
GooseFairy#6680: no idea
NeverCast#1448: https://www.trademe.co.nz/motors/aircraft/aircraft/auction-1593693979.htm?rsqid=cfc7515fc9044cf3bb618e075f51f... |
GooseFairy#6680: oh yea
GooseFairy#6680: ;p
GooseFairy#6680: https://c1.staticflickr.com/5/4387/36231629620_9bd0264b13_b.jpg
GooseFairy#6680: ;)
GooseFairy#6680: if I win the lottery a couple times
NeverCast#1448: Oh my dude, it's beautiful
Jeon#7156: Well, just open a AI startup, publish some redundant and mostly usel... |
NeverCast#1448: Haha I didn't realize Google bought Waze
NeverCast#1448: People love to tell me it's an alternative to Google Maps.
GooseFairy#6680: lol wat
NeverCast#1448: June 11, 2013 $966,000,000
GooseFairy#6680: wow
GooseFairy#6680: when google owns everything and all the software that isn't under their name is... |
Skyborg#0894: Seems productive. I'll be forever sad that Google sold Motorola. They could have revived it, and now it's falling ๐.
As the owner of a Moto z play I hope Motorola get in it's feet and strives, I want my mods cheaper ๐๐
ccman32#4022: lol
Skyborg#0894: https://www.motorola.com/us/products/moto-mods/moto-... |
The phone costed me 220, but it normally sells for 450 (ahh, I love China).
The mods are really cool, I use a style shell to stick my phone in the car, but all the mods are soo expensive (and unavailable in Europe mostly)
ccman32#4022: mods? Except a case and charger i dont have any for this phone
ccman32#4022: and dun... |
twobackfromtheend#1471: remkoe takes wider rotations
twobackfromtheend#1471: and deevo camps at boostpads
twobackfromtheend#1471: and greazy is a specialised left back?! https://cdn.discordapp.com/attachments/424610429634084867/436234578856771584/unknown.png
Yannoux#6969: how is it done ?
twobackfromtheend#1471: i crea... |
twobackfromtheend#1471: my database for RLCS S4 EU is 433mb
Yannoux#6969: i was searching for that thing to convert replays into json files.... i found a github repo doing just that, then realized it was made in haskell... though a minute about going into haskell programming... then got online to search for it a bit...... |
out of these 6 arguments... i only understand 2. and consider the syntax hideous in fact.
sounds more like an hipster utopia to me. miss me with this shit. no code is ***Pure*** otherwise your high AF
twobackfromtheend#1471: haha i'm not messing with the parsers (i'm using jjbott's btw and not tfausak's), i'm just work... |
dtracers#9598: that is lying to me
dtracers#9598: i want an integer that has 64gb of precision
Yannoux#6969: means you're using a dynamic size array to store the amount of atoms on earth ?
dtracers#9598: basically to a couple thousand decimal places
dtracers#9598: my integer should be correct
ccman32#4022: yeah, how el... |
dtracers#9598: just now
twobackfromtheend#1471: you calculate pi in multiples of pi
twobackfromtheend#1471: obviously
ccman32#4022: I always use pi to compress my large files ๐
ccman32#4022: this type makes it even easier!
twobackfromtheend#1471: you can store pi with unlimited precision by storing your data in multip... |
NeverCast#1448: remkoe is bloody everywhere.
NeverCast#1448: Deevo is more defensive. remkoe disruptive
NeverCast#1448: I like this graphic.
drssoccer55#6192: It looks like a brain scan :)
NeverCast#1448: It does. ๐ฑ
twobackfromtheend#1471: I've noticed that third men are really easy to spot in heatmaps https://imgur.c... |
twobackfromtheend#1471: there's a G2 unfiltered in the album above
twobackfromtheend#1471: here's a G2 filtered https://cdn.discordapp.com/attachments/424610429634084867/436351425228963841/G2_S4_filtered.png
NeverCast#1448: Oh thanks
NeverCast#1448: What is filtering, doing?
twobackfromtheend#1471: Filtering basically ... |
dtracers#9598: is never in the opponent goal
twobackfromtheend#1471: it does look like jknaps is the third man... but is that right?
dtracers#9598: but rizzo is always in their own goal
NeverCast#1448: They make plenty passing plays. Which wont show up on this map
NeverCast#1448: Would be interesting to see ball highli... |
dtracers#9598: that would be interesting as its own heatmap
dtracers#9598: well last opponent to touch before goal
NeverCast#1448: Yeah, it would. Though you wouldn't see assists or passes
twobackfromtheend#1471: haha not bad ideas
NeverCast#1448: Unless different colors.
NeverCast#1448: Last touch is one color, last p... |
twobackfromtheend#1471: https://github.com/twobackfromtheend/PyroPLANE/tree/master/SAMPLES
GooseFairy#6680: inside voices
GooseFairy#6680: ;p
twobackfromtheend#1471: 3D heatmaps for Rocket League. That was my USP
twobackfromtheend#1471: it was unfortunately a USP no one cared for.
dtracers#9598: what is pink and what i... |
twobackfromtheend#1471: it's harder to see in a still image
dtracers#9598: i think just successful passes for an entire team
dtracers#9598: over an entire season
dtracers#9598: will be useful
twobackfromtheend#1471: will be done tmrw
dtracers#9598: but not as those lines
NeverCast#1448: and then when we know it works! ... |
NeverCast#1448: two colors that mix in to a third, like blue and green.
dtracers#9598: so you mean
dtracers#9598: how the heatmaps are already done
twobackfromtheend#1471: I feel the heatmaps should work with goal_shot_positions and assist_pass_position
twobackfromtheend#1471: but not for whole lines
dtracers#9598: hmm... |
twobackfromtheend#1471: it's viridis. matplotlib's new default colormap
NeverCast#1448: its pretty.
dtracers#9598: its very obvious
dtracers#9598: @NeverCast is just trolling i think
dtracers#9598: anyways
dtracers#9598: i think that if two lines of passes
dtracers#9598: are really close it should be made obvious
dtrac... |
twobackfromtheend#1471: idk. i think i'll try with assists and goals first
dtracers#9598: oh i just meant
dtracers#9598: the position of the playing hitting it
dtracers#9598: and the player that gets it
twobackfromtheend#1471: mm
dtracers#9598: what the passes are
twobackfromtheend#1471: ?
dtracers#9598: oh it cut off ... |
dtracers#9598: after half a second
dtracers#9598: fair
twobackfromtheend#1471: I'd say the goal would be for the ball to pop favourably into a teammate
twobackfromtheend#1471: yeah I'd considered both ><.
twobackfromtheend#1471: there's so much that can be done. and for real analytics, correlations will have to be foun... |
GooseFairy#6680: I basically just ignore the capacitor right?
GooseFairy#6680: lol
GooseFairy#6680: 50/50 shot I either ignore it or I pretend it's a wire
dtracers#9598: Yes
NeverCast#1448: Capacitor does nothing after power on and before power off. Edit: Ah, "long time". Yep.
GooseFairy#6680: having a test on this stu... |
ccman32#4022: and that was for my driving license
ccman32#4022: oh no wait, i think there was also one about ms access about 2-3years ago
ccman32#4022: so its two ๐
ccman32#4022: better for me tho, i'd have probably modified the program to slightly highlight the correct answers all the time ๐
GooseFairy#6680: I don't... |
Skyborg#0894: It is really quick to parse everything, how long does it take to analyze the whole rlcs?
twobackfromtheend#1471: actually takes a while. the .replay to .json takes a couple of seconds per replay, then my .json to .game/.game.gzip takes 10-15s depending on whether i want to compress it
twobackfromtheend#14... |
twobackfromtheend#1471: yeah i'm thinking of doing a difference plot. but that'll mean averaging over a shit ton of data
twobackfromtheend#1471: also currently the colormap is normalised for min-max i think. i should probably get my heatmap data as percentages, then normalise the colormap between 0 and 1. (so 25% in on... |
dtracers#9598: solo plays vs not solo plays
twobackfromtheend#1471: why are NV so stuttering
twobackfromtheend#1471: they don't have boost, but all of them are missing shots and wasting a lot of boost
dtracers#9598: yeah
twobackfromtheend#1471: like completely missing the ball, not even pulling a fnatic player out
dtra... |
twobackfromtheend#1471: yeah envy were boost-starved and not playing well together just now
dtracers#9598: that is more these teams though
dtracers#9598: in general these teams do less team plays
twobackfromtheend#1471: basically the "playing with a sub" problem, and the sub happens to be an ex-world champ so you can't... |
dtracers#9598: could do an average of NA vs EU?
twobackfromtheend#1471: hmm
twobackfromtheend#1471: my players don't have an 'eu' or 'na' feature. that was an oversight lol
dtracers#9598: I feel like in NA this season has been a good one but for EU it has been an off one
twobackfromtheend#1471: have you seen the lower ... |
dtracers#9598: complexity is clearing to the wrong place
twobackfromtheend#1471: nah, complexity has no "right place" to clear it if al0t is not up
twobackfromtheend#1471: and he's been pressed back too often
dtracers#9598: yeah once that happened they lost
twobackfromtheend#1471: GFE is keeping possession too well. us... |
twobackfromtheend#1471: they tried friday, but it didnt work.
ccman32#4022: ...
ccman32#4022: well by the time im home and done with all the shit i still have to do its over
twobackfromtheend#1471: this is the filtered one for all season 4 https://cdn.discordapp.com/attachments/424610429634084867/436581328994172929/unk... |
dtracers#9598: gotcha thats why kickoffs are basically non existant
twobackfromtheend#1471: could do against team-average, but i don't think that'll be worth the effort. just shift the whole thing up/down
dtracers#9598: I feel like you should remove kickoffs from both
twobackfromtheend#1471: takes a much longer time wi... |
dtracers#9598: yes while kro is in the corner
dtracers#9598: it seems that kro never goals for back corner boost or side boost
dtracers#9598: while jknapps goes for side boost
twobackfromtheend#1471: i think kro does go for the back boosts, which is why they're quite bright while the 'kickoff to boost' trail is dark
tw... |
dtracers#9598: and Turbo and center
twobackfromtheend#1471: i think turbo and paschy at centre are just the kickoffs
dtracers#9598: but that should cancel out with everyone else right?
twobackfromtheend#1471: nah, i think on their respective teams, they're the ones who ALWAYS go for kickoffs
twobackfromtheend#1471: tur... |
axelalex2#5793: then probably a twitch server went down
dtracers#9598: Yeah rocket league can't block it out for only a subset
twobackfromtheend#1471: i didnt notice anything
dtracers#9598: They stream to twitch
ccman32#4022: twitch chat disabled?! @twobackfromtheend
ccman32#4022: it was spammed like crazy af
twobackfr... |
twobackfromtheend#1471: you have to loop through the frames
twobackfromtheend#1471: keep a record of which car actor is associated to which player actor
twobackfromtheend#1471: car actors can change through a match
Yannoux#6969: i can't find a way to link car actor with player actor
Yannoux#6969: wait player actor ๐ค
Y... |
twobackfromtheend#1471: sometimes car spawns before player
Yannoux#6969: except if it's a ranked game
Yannoux#6969: in which case the game wait for all player to be connected before starting.
Yannoux#6969: i'll try again with other.
twobackfromtheend#1471: don't count players from scoreboard either
twobackfromtheend#14... |
Yannoux#6969: or car physics
Yannoux#6969: maybe try to mimic from them instead idk
twobackfromtheend#1471: okay so if i have a bunch of heatmaps, does anyone know how i can categorise them?
twobackfromtheend#1471: (with machine learning)
twobackfromtheend#1471: unsupervised classification
dtracers#9598: Into what?
two... |
dtracers#9598: It's 1 heatmap per game per player?
twobackfromtheend#1471: 1 heatmap per player
twobackfromtheend#1471: i want to classify the players
dtracers#9598: Okay
dtracers#9598: Then your probably want to use kmeans clustering
drssoccer55#6192: Sounds like a k-means problem
twobackfromtheend#1471: yeah was abou... |
dtracers#9598: There's a Java one too
dtracers#9598: Weka
dtracers#9598: That one does not even require programming it comes with a gui
twobackfromtheend#1471: *starts coding: `for array in arrays, for _other_array in arrays, for i in row: for j in column: data = array[i, j] other_data = _other_array[i, j] _diff = abs(... |
usernameisJim#4061: like Grandmaster well
GooseFairy#6680: nope
GooseFairy#6680: lots of bots working
NeverCast#1448: @usernameisJim Nah, Plat level mechanics, Bronze level strategy
GooseFairy#6680: ^
usernameisJim#4061: lul, what's the most popular one?
NeverCast#1448: Obviously the part computers are good at, is doin... |
NeverCast#1448: Relief is Kotlin.
GooseFairy#6680: close enough
NeverCast#1448: Python is my job, so lets not advertise that. I don't want to be working in the weekend ๐
twobackfromtheend#1471: my kmeans clustering is giving me shit
twobackfromtheend#1471: like wtf is this
GooseFairy#6680: idk what I'm looking at
dtra... |
dtracers#9598: average of points above a vertain value
twobackfromtheend#1471: then give it those
dtracers#9598: yeah
twobackfromtheend#1471: ๐ฆ i want it to be more plug and play
dtracers#9598: well you could send it through a neuaral net
dtracers#9598: but taht requires one heatmap per a game
dtracers#9598: per a pla... |
twobackfromtheend#1471: i mean this kmeans algorithm seems to hate mijo and tynottyler
twobackfromtheend#1471: hmm tho visually those differ a lot due to having few games
twobackfromtheend#1471: ```0: ['al0t', 'Bluey', 'CorruptedG', 'Ferra', 'GarretG', 'Gimmick', 'Kaydop', 'Kronovi', 'Markydooda', 'Matt', 'Paschy90', '... |
NeverCast#1448: Remove Panda and Chausette from the last one, does it go better?
dtracers#9598: why are you only summing around one though?
dtracers#9598: you should have like a bunch of difference dimensions
dtracers#9598: then it will cluster on those different dimensions
twobackfromtheend#1471: becacuse i'm too tire... |
twobackfromtheend#1471: yeah. kinda.
twobackfromtheend#1471: hmm but what if i blur it
NeverCast#1448: What I mean is, it's not a very good parameter, because of all the noise. If you could quantize some more finite solutions from it, that might be better
NeverCast#1448: Yeah some sort of filtering. I'm not sure which.... |
NeverCast#1448: Try reducing it to 16/20 and then consider normalizing it so the most popular scalar is 1 and least is 0. Then the map is a scale of most to least occupied area.
twobackfromtheend#1471: the mean is about 1/(80000)
NeverCast#1448: Hopefully by normalizing you spread out the values. Assuming there is in f... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.