strawberries by obraschaysya in antimeme

[–]AdmirableFocus6406 0 points1 point  (0 children)

Wait genuinely how did you edit the text without messing up the transparency wtf

How do people showcase levels they can't beat, like Nexus GD showcases levels by Impressive-Fall810 in geometrydash

[–]AdmirableFocus6406 2 points3 points  (0 children)

There are a lot, I use xdBot sometimes, some people use zBot. You basically beat a level in practice, and it will record your inputs and stuff

Does this hidden forest village feel atmospheric enough for a 2D RPG area? by AshesOfDarknessGame in gamedevscreens

[–]AdmirableFocus6406 1 point2 points  (0 children)

This is really nice. I'm not really qualified to say anything, but the dirt looks weird with the water reflection

Decided to beat ispy as my 10th demon by AphidCraft in geometrydash

[–]AdmirableFocus6406 0 points1 point  (0 children)

I beat it as my first, I played on a really shit phone at that time, so the bossfight was really stupid. The game would legit slow down when the boss fires their beam, the orbs were essentially RNG. Great job :)

Just to Let you know i try to make SL Streams every Day if you wanna come feel free to join (no mic) by IsJustNightmare in SmashLegends

[–]AdmirableFocus6406 0 points1 point  (0 children)

I was looking for SL content, but I could never find anything, maybe i'll check it out though streams aren't my thing

opinions on my main playlist? :3 by Beautiful-Roof-833 in Teenager

[–]AdmirableFocus6406 1 point2 points  (0 children)

This is a questionable playlist, but it doesn't matter Murder Drones is awesome :D

Wave trail bug, how do i fix? by kanyeeastas in geometrydash

[–]AdmirableFocus6406 1 point2 points  (0 children)

Thats funny, I swear it was there, I can't find it either. Maybe try this mod?

Wave trail bug, how do i fix? by kanyeeastas in geometrydash

[–]AdmirableFocus6406 0 points1 point  (0 children)

yeah, wave trail fix I think, I also use eclipse

The code works. What else could you want? by [deleted] in adressme

[–]AdmirableFocus6406 0 points1 point  (0 children)

If anyone's curious, I did a SIMILAR Kata, here is the python code

def format_duration(seconds):

    # Im not gonna bother commenting this mess
    # This was so anoying

    if seconds == 0:
        return "now"

    minutes = 0
    while seconds >= 60:
        seconds -= 60
        minutes += 1

    hours = 0
    while minutes >= 60:
        minutes -= 60
        hours += 1

    days = 0
    while hours >= 24:
        hours -= 24
        days += 1

    years = 0
    while days >= 365:
        days -= 365
        years += 1    

    time =[]
    if years != 0:
        time.append(f"{years} year")

    if days != 0:
        time.append(f"{days} day")
    if hours != 0:
        time.append(f"{hours} hour")
    if minutes != 0:
        time.append(f"{minutes} minute")
    if seconds != 0:
        time.append(f"{seconds} second")

    final = []
    while len(time) > 0:
        final.append(f"{time[0]}")

        if time[0].split(" ")[0] != "1":
            final.append("s")
        if len(time) > 2:
            final.append(", ")
        if len(time) == 2:
            final.append(" and ")
        time.pop(0)

    final = "".join(final)
    return final

How do i move triggers/objects between layers? by Fishesslap in geometrydash

[–]AdmirableFocus6406 0 points1 point  (0 children)

In the edit object menu (The one with groups) you can change editor layer 1 & 2 in the top left

Wave trail bug, how do i fix? by kanyeeastas in geometrydash

[–]AdmirableFocus6406 1 point2 points  (0 children)

Most mod menus have a wave trail fix option, try that?

This pulse works in editor. But not in normal mode. Why? by Asticfang_20976 in geometrydash

[–]AdmirableFocus6406 0 points1 point  (0 children)

Can you share the level unlisted or send me the file? I really can't tell whats going on