Nukecleobrines builder application

Minecraft name: Nukecleobrine

What do you like the most about redstone?: I love the endless possiblities that it has to offer

What’s a thing you have made which demonstrates redstone knowledge?:
well i am busy making a fully functional line drawer to add to my cpu

what does the thing do?:
it takes two coordinates X1 ,Y1 and X2 ,Y2 and then draws a line between them, at the moment it is still in separate pieces each handeling a separate
line of code from my python scripts and implamenting it etc, hopefully it will be done in a few weeks
Image(s) and/or video(s) of the device:

What did you make as your trial build?: an 8 bit ALU with all operations

What is the warp for your trial build?: /plot visit Nukecleobrine

Provide your results after completing the ORE Binary Quiz:
Binary Quiz completion certificate:

Completed by Nukecleobrine in 11m1.999s on 8/7/2024, 08:37 UTC.
92.59% accuracy with 2/27 answers given incorrectly.
87c58b04-50fd-4232-bc22-370112a85da7-4e756b65636c656f6272696e65
585q136e3z0u1h1s1i2a434e605c5r5m6n015v6klzjl56n6lzjljdg1

Do you agree with the rules?:
yes

the blue, orange and grey part does this part of the code

Calculate the differences

dx = abs(x2 - x1)
dy = abs(y2 - y1)

Initialize the error

err = dx - dy

and the blue, green and grey does this

adding and subtracting Error

sx = 1 if x1 < x2 else -1
sy = 1 if y1 < y2 else -1

when its all connected the outputs of the error adder/subtractor will loop back into the final part of the first piece to calculate the new error

here is the alu

Accepted for trial! Hop on the server at mc.openredstone.org and ask a staff member for assistance.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.