You Can Talk About Hopscotch Here; Topic 30 [OFFICIAL]

New game alert :bangbang::bangbang::bangbang::rotating_light::rotating_light::rotating_light::rotating_light::rotating_light::scream::scream:

@ShiningStars

next version hopefully coming soon

6 Likes

Fixed :slight_smile: :heavy_check_mark:

My mod is just using the Web Gamepad API… there’s nothing I can do for controller support

3 Likes

Why do I have 5 visits?

1 Like

Yall coding anything

I was able to resolve the issue. I was either just using the wrong controller mode, a little glitch just occurred that prevented me from using the controller, or it was just a problem with my code.

2 Likes

I just noticed your posts read says 666, lol.

Coding anything?

It looks like your end is extremely glitch to the point it doesn’t even register that you visited a day. Hope it is fixed for you soon. Mine is fixed now.

2 Likes

I hope it fixes soon

Not really, I am trying to make 2048 but it going really really slow

2 Likes

I tried to make that too. Didn’t go too well.

I also tried making checkers. It went well so far, but I got a little stuck.

2 Likes

@Crosbyman64
There’s a bug where you can walk into spikes:
(It looks like there isn’t a spike, but there’s a spike)


Also the hexagon boss is soo hard!
I can’t beat him.

2 Likes

I have no idea why this is occurring. The game does recognize it as a spike, but for some reason something’s not working…

Also, Hexagonyx has an attack pattern. Memorize it, and you will succeed.

3 Likes

@Yuanyuan or @t1_hopscotch can you recover this project?

https://c.gethopscotch.com/p/11mfoqcktv

  • Fixed Spike collisions (turns out I forgot to see the defaults for them :sweat_smile:)
  • Updated Menu Background to fix an issue where it would unintentionally be white in most parts while in HD Graphics Mode)
6 Likes

Does anyone know why pixel art is broken on HS (in editor)

@CodeHelp I’m trying to grab the ASCII value of a character, but my current method is WAY too slow. Is there any way to make it faster? (custom block shown at the end of the given video)

3 Likes

Is the project crashing on you?

Are you using frame recursion? If you are, simply limit how many recursions can be done per frame.

2 Likes

Oop, set, not “see”

1 Like

Not sure if this’ll be useful, but here’s a project that features frame recursion.

You may have to adjust the frame recursion limit so it don’t crash on you.

It can find a value at 255 in only 1 frame.


I’m assuming this is what let’s it run fast?

3 Likes

Actually, that just limits how many recursions can occur in a frame. The project is able to do 500 recursions per frame. You won’t need it for yours because yours is only going up to 255.

Going into containers, they run instantly. They only take 1 frame at the end of every container.

if {
if {
}
}
Takes 1 frame

if {
}
else {
if {
}
}
also takes 1 frame.

if {
}
if {
}
takes 2 frames

1 Like


Not sure what I did wrong… whenever this runs it takes around 2 and a half seconds (me guessing by hand and then trying to estimate afterwards) which I don’t get.

Edit: I put a text that (I’m assuming) increases a variable each frame, and sets it’s text to the amount and resets the amount every time the pointer moves

It took 3 frames each time it moved over a blank tile, and 2 after the " command
The letters during the StringMode took about 108 and 109 frames…

1 Like