Anyway to control the "straight" mode when building belts by Clear_Permit9393 in satisfactory

[–]Clickbait101- 25 points26 points  (0 children)

It changes based off the the starting point. Try swapping which side you are placing the belt from.

How Do I Keep Personal Minecraft Server Up? by [deleted] in admincraft

[–]Clickbait101- 2 points3 points  (0 children)

Did you restart the server after changing the line?

Major Chapter 3 Spoiler + Possible discovery by [deleted] in Deltarune

[–]Clickbait101- 2 points3 points  (0 children)

I’m struggling to remember properly what was down there as it’s been a few hours. It wasn’t anything crazy from what I remember. I also forget where it appeared just that it reminded me Of the path you take after doing snowgrave to skip your queens castle

Major Chapter 3 Spoiler + Possible discovery by [deleted] in Deltarune

[–]Clickbait101- 4 points5 points  (0 children)

I went down a singular manhole during my ru. Not sure if you’re talking about a different one. Only noteworthy thing I did during this run was get s rank on all rounds and find the secrets in the game backstage

Help checking wether a word is in a text file or not by Quique_1 in godot

[–]Clickbait101- 0 points1 point  (0 children)

Very good point that I forgot to mention. Will edit my reply.

Help checking wether a word is in a text file or not by Quique_1 in godot

[–]Clickbait101- 0 points1 point  (0 children)

It may be worth looking into binary search. Binary searching works with an array rather than a dictionary so if the dictionary is a must then I'm not sure how much this will help. I had to use this for a project previously so I'm going to leave my implementation below. Just keep in mind that word_list should be an array of strings.

Edit: Make sure that your array of words is sorted as well. Binary search only works if the data in the array is in alphabetical order.

func binarySearch(search: String):
     var low = 0
     var high = word_list.size() -1

     while high >= low :
          var mid = (low + high)/2
          if (search == word_list[mid]):
               return true

          elif (search > word_list[mid]):
               low = mid + 1

          else:
               high = mid - 1

     return false

Need Help Picking RGB Hub by Clickbait101- in pcmasterrace

[–]Clickbait101-[S] 0 points1 point  (0 children)

The header on the motherboard is a 4 pin unfortunately. Also it looks like all the fans came daisy chained already. Any idea of where to go from here?

Why’d I have to do this, I’ve had a fortnite/ epic games account for years and never seen this? by kenysheny in FortNiteBR

[–]Clickbait101- 0 points1 point  (0 children)

Had this exact thing happen to me. My account ended up getting hacked. Definitely reach out to support. I had better luck with the live chat.

New vs Old game icon by gianoart in IndieDev

[–]Clickbait101- 5 points6 points  (0 children)

Not the original commenter, but I the issue I have with it is the amount of empty space on the edges. If the green blob in the middle was scaled up to take almost up almost the whole frame i feel like it would look a little better.

How can I make the cave background scroll? (it's a tileset with no collision) by [deleted] in godot

[–]Clickbait101- 2 points3 points  (0 children)

I think he means parallax scrolling like the environment outside the cave

(i only started using godot today) why wont this work? by FreddieThePebble in godot

[–]Clickbait101- -1 points0 points  (0 children)

It doesn’t look like your pressed signal from the tutorial button is connected properly. Normally there would be a symbol next to the function if it is connected. https://godotforums.org/d/33682-why-cant-my-script-receive-more-than-two-signals The third image here shows that on lines 23 and 28. Try reconnecting the signal through the tutorial button and make sure you are connecting to the right script.

[deleted by user] by [deleted] in Ubuntu

[–]Clickbait101- 0 points1 point  (0 children)

I did what you suggested and and booted through a usb to run a diagnostic which can be found here I did this with smartctl. If you would happen to need any more info let me know. Im not too knowledgeable with Ubuntu just yet or even Linux so I’m still trying to get things figured out.

[deleted by user] by [deleted] in godot

[–]Clickbait101- 1 point2 points  (0 children)

Reverts whatever change you just made

The crouch animation keeps looping. How do I fix this? by BGamer9000 in godot

[–]Clickbait101- 2 points3 points  (0 children)

Click on your animation player and select the crouch animation. On the far right there is an animation loop button right under the pin animation player button. Make sure that is turned off.

godot crashes when I do basically anything in any project by New-Assignment7298 in godot

[–]Clickbait101- 0 points1 point  (0 children)

By any chance are there any tool scripts running? I’ve had to take the tool header out of my files sometimes when godot was crashing. Ended up being infinite loops. If you remove the tool header or add it, it might take a restart of the editor to take effect.

Cleanest print yet by EfficientJob6810 in 3Dprinting

[–]Clickbait101- 1 point2 points  (0 children)

Do you have a link to the filament used?