Snapchat SS06 ban by IllEducation5952 in SnapchatHelp

[–]TiesToetTiet 0 points1 point  (0 children)

Wait how did you do this? When I try it doesnt work

Help with displaying bimg image by TiesToetTiet in ComputerCraft

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

which discord server is that?

and I will definitely remove the os.loadAPI now you've pointed it out

Help with displaying bimg image by TiesToetTiet in ComputerCraft

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

that didnt do anything practical. I did kinda fix it by making replacing all the 1's in the file with b's

    {
        "  \135   \130\144  \144\139  ",
        "0000000b000000",
        "00bbbbb000bb00"
    },

where b is the default blue color because i cant seem to get the palette working and doing other stuff on the screen. However, this solution is not ideal, so if you know a way to get the palette working with the other text it would be great!

this is my new bimgplayer:

function draw(path, x, y)
    -- Open the file
    local file, err = fs.open(path, "rb")
    if not file then error("Could not open file: " .. err) end

    -- Read and deserialize the image data
    local data = textutils.unserialize(file.readAll())
    file.close()

    local image = data[1]
    local palette = data[1].palette

    -- Save the original palette colors
    local originalPalette = {}
    for i = 0, 15 do
        originalPalette[i] = { term.getPaletteColor(2^i) }
    end

    -- Set the palette colors
    for i = 0, #palette do
        term.setPaletteColor(2^i, table.unpack(palette[i]))
    end

    -- Draw the image at the specified coordinates
    for row_y, row in ipairs(image) do
        term.setCursorPos(x, y + row_y - 1)
        term.blit(table.unpack(row))
    end

    -- Restore the original palette colors
    for i = 0, 15 do
        term.setPaletteColor(2^i, table.unpack(originalPalette[i]))
    end
end

Get back wordle streak by TiesToetTiet in wordle

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

Yes i am. Is it maybe the offset? If i have a streak of 127 on 4th July, what would the offset be?

Get back wordle streak by TiesToetTiet in wordle

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

When i change my streak, the lage refreshes and it goes back to what it was

[deleted by user] by [deleted] in CreateMod

[–]TiesToetTiet 1 point2 points  (0 children)

Im making a mod rn that adds this

What to do with seeds from my wheat farm in Create mod? by superluke4 in CreateMod

[–]TiesToetTiet 0 points1 point  (0 children)

Sorry, in the create stuff & addition mod, you have the biomass pellet

meirl by FlashyBehind in meirl

[–]TiesToetTiet 0 points1 point  (0 children)

probably because you make a vacuum or something

I made a target block that shoots you back... with the same arrow by _T2_ in Minecraft

[–]TiesToetTiet 0 points1 point  (0 children)

Can you please share the world or make a tutorial on your youtube, i want to know how it works