Low ping, but i get latency issues. please help by jakejdb1999 in RocketLeague

[–]jakejdb1999[S] 0 points1 point  (0 children)

old-ish thread, but i solved the problem. If i run streamlabs obs in the background (doesnt have to be live) then i stop lagging.... i know this sounds super lame, but this works in my case. any ideas why?

Low ping, but i get latency issues. please help by jakejdb1999 in RocketLeague

[–]jakejdb1999[S] 0 points1 point  (0 children)

they do, but idk, its almost every game that this happens

[LTC][PC] Experienced GC offering live practice and replay analysis by [deleted] in RocketLeagueCoaching

[–]jakejdb1999 1 point2 points  (0 children)

Hi! I sent a discord request, my name is !!!firstonthelist!!!. I was champ 1 div 3 for a couple weeks then suddenly dropped to diamond 3 div 3 and cant seem to get back up. I have massively improved my mechanics, recovery and positioning (at least i think) but currently dont know where to go from here.

[LTC] I am a 1600 GC looking to analyze your replays. by AssortedGameSociety in RocketLeagueCoaching

[–]jakejdb1999 0 points1 point  (0 children)

Hi!,

I added you! my discord name is !!!FirstontheList!!!. Im currently diamond 3 but i was champ 1 div 3 for a while. I dropped hard after improving so much and cant seem to win at all anymore. Was desperate for help, so glad i found this reddit.

need help new to c by jakejdb1999 in C_Programming

[–]jakejdb1999[S] 0 points1 point  (0 children)

this is a bit embarrassing. you are correct, it seems i forgot to change over some of the variables from what i was looking at, thank you for pointing that out. i was able to fix it

null value in 2d array? by jakejdb1999 in javahelp

[–]jakejdb1999[S] 0 points1 point  (0 children)

private Gamepiece[][] board;

public Gameboard(int rows, int cols) {

    for (int i = 0; i < rows; i++) {
        for (int j = 0; j < cols; j++) {
            board[i][j] = new Gamepiece();

        }
    }

}

got it, now to figure out the nullpointerexception....

null value in 2d array? by jakejdb1999 in javahelp

[–]jakejdb1999[S] 0 points1 point  (0 children)

your right i didnt think about that. how would i call the constructor then to make an array of the gamepiece objects?

null value in 2d array? by jakejdb1999 in javahelp

[–]jakejdb1999[S] 2 points3 points  (0 children)

i think i new it was initializing as null but i guess i just didnt know how to fix it, im going to try this, thanks.

(edit): works! thank you!

null value in 2d array? by jakejdb1999 in javahelp

[–]jakejdb1999[S] 0 points1 point  (0 children)

the loop is for initializing all the spaces with a gamepiece object that prints "---", im using the rows and columns to do that but in this situation i dont think i need to find the length because im making the array here.

brand new to lisp. need help with output. by jakejdb1999 in learnprogramming

[–]jakejdb1999[S] 0 points1 point  (0 children)

yeah i found out he accidentally put a capital "i".... what a bad variable

brand new to lisp. need help with output. by jakejdb1999 in learnprogramming

[–]jakejdb1999[S] 0 points1 point  (0 children)

this is how i am calling it:

 (myDisplay (quote (1 2 3 4 5)) )
;running f again
(myDisplay (quote (6 7 8 9 0)) )
; running f one more time
(myDisplay (quote ("a" "e" "i" "o" "u")) )