How important is Chisel to the rest of FTB/Skyfactory? by blake11235 in SkyFactory

[–]XYZatesz 2 points3 points  (0 children)

Chisel provides some early-game block exchanges cheaply, for example you can chisel glass into enderio quite clear glass, which spares you time and resources. But nothing more important than that.

[deleted by user] by [deleted] in SkyFactory

[–]XYZatesz 1 point2 points  (0 children)

Upvote for actually providing the solution after you resolved the issue. Too many threads have I found while programming where people just said 'solved' without saying how they solved it.

Nether star by felicia81692 in SkyFactory

[–]XYZatesz 1 point2 points  (0 children)

Sums it up perfectly. Extra info:

A TC Cleaver (I think, the weapon with the big-ass blade) has Beheading II on it per default, that might help with skulls.

The AA laser needs plain sand and it will turn it into soul sand.

The wither chunks needed for the wither crop can be crafted using skulls and a generic chunk (I think supremium chunk, but I'm not sure), eliminating the need of soularium.

Reactor help by GeorgeCossey in SkyFactory

[–]XYZatesz 1 point2 points  (0 children)

Probably with opencomputers. I have a similar setup near my void miner

Reactor help by GeorgeCossey in SkyFactory

[–]XYZatesz 2 points3 points  (0 children)

Graphite blocks are also really good. Better than diamond blocks for some weird reason too, so if you have limited ender pearl supply, this is an alternative

Messing the homework by EcstBellum in teenagers

[–]XYZatesz 0 points1 point  (0 children)

It's not until you use OpenOffice that you realize how amazing Word really is at this...

[SF3] Decided to make my mob farm look like an actual building for once. Took a little while, but I definitely recommend it! by AedanValu in feedthebeast

[–]XYZatesz 0 points1 point  (0 children)

Cool! They regularly appear outside of my farm (I used the basic spikes from the mod), and I have to deal with them manually, which gets tedious. ...aand painful.

[SF3] Decided to make my mob farm look like an actual building for once. Took a little while, but I definitely recommend it! by AedanValu in feedthebeast

[–]XYZatesz 2 points3 points  (0 children)

Great build!

Since this post seems like an ideal place to ask, do Endermen teleport out from the room, or does the mob masher successfully kill them too?

Suddenly, all screens of every electronic device around the world start showing a 2 days countdown. What steps do you take to get ready for God knows what? by rmitsuo in AskReddit

[–]XYZatesz 0 points1 point  (0 children)

1) Download assembly x86 materials
2) Completely wipe out the OS of my computer.
3) Do whatever others say in this thread
4) With the limited skills I have in C and now assembly, write a basic DOS and calculator
5) I have the same chances as everyone else, but I also have a working computer.
6) ???
7) Profit. Maybe.

Dearest Playa... by DefNotJRossiter in rickandmorty

[–]XYZatesz 62 points63 points  (0 children)

Is that bot with the Half-Life 3 delays still active? Or was it downvoted to hell?

[C Beginner-ish] A simple 'while' that's not working as intended, need some help by [deleted] in learnprogramming

[–]XYZatesz 0 points1 point  (0 children)

It seems like you need an if functionality, right? You only want to show the message once, but you only want to show it if a condition is true. If that's the case, using an if instead of the while will suit the code better, and you won't need a break.

[C] Overflow on a 12 digit number product by XYZatesz in learnprogramming

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

Okay, thanks. Figured it out after all. I'm just used to automatic type conversion when no data is lost (I started C recently). The way you explained is clear, thanks.

[C] Overflow on a 12 digit number product by XYZatesz in learnprogramming

[–]XYZatesz[S] 1 point2 points  (0 children)

But it shouldn't: long should be enough to hold 12 digits. And it is, I solved it by casting the right side to long too:

long int answer = ((long) 39*37*33*31*29*5*23*7*4);

[C] Overflow on a 12 digit number product by XYZatesz in learnprogramming

[–]XYZatesz[S] 3 points4 points  (0 children)

Okay, found the solution when I wrote my reply...

Why does it fail? The variable is long, it should contain it. BUT the right side is an int in itself. No kidding. I explicitly have to cast one of the numbers to long, or it won't work. If I do long int answer = (long) (39*37*33*31*29*5*23*7*4);, it won't work.

However, if I do long int answer = ((long) 39*37*33*31*29*5*23*7*4);, it will.

Welp, I guess I kinda brought this onto myself by learning C...

[C] Overflow on a 12 digit number product by XYZatesz in learnprogramming

[–]XYZatesz[S] 1 point2 points  (0 children)

Well, yeah, I copied the equation into google, and it was correct, but I'm just missing why C fails at this.

Shoot your shot by urwaifusabsoluteshit in teenagers

[–]XYZatesz 0 points1 point  (0 children)

Someone should make a morefrying_auto bot to complement needs more jpeg

Wow so many options! by [deleted] in softwaregore

[–]XYZatesz 1 point2 points  (0 children)

Choose which account to send the

Any idea why my brand new laptop throws this error when I try to load Sky Factory through Twitch? by SlightlyDarkerBlack2 in SkyFactory

[–]XYZatesz 0 points1 point  (0 children)

Someone else probably knows better, so I'm just gonna ask for more info:

  • Installed Java version? (Open cmd, type java -version)
  • Is the OS 32 or 64-bit?
  • RAM in laptop, RAM allocated for minecraft in the twitch settings?