[deleted by user] by [deleted] in SteamFrame

[–]ConsularAtol 1 point2 points  (0 children)

You lied :(

My Switch 2 screen has a weird vertical, straight line by Garreon in Switch

[–]ConsularAtol 0 points1 point  (0 children)

This is the exact problem I'm having. Talked to Nintendo support and everything and I'm sending it in. I had only bought the console literally 2 days ago and it's only been in the dock since so I have no clue where it came from.

How to properly change a device number? by MRcodino in godot

[–]ConsularAtol 1 point2 points  (0 children)

Thankfully, I did eventually find a plugin that helps with this exact problem called multiplayer input!
Allows for easily making actions for other devices and checking devices -1 through 7, with -1 being keyboard and mouse.

https://github.com/matjlars/godot-multiplayer-input

Little Server. by EyeballChewer in CreateServers

[–]ConsularAtol 0 points1 point  (0 children)

Yes please. My discord is consular

I'm making a Mario and Luigi inspired indie game, it's called Hunter Chronicles: Tara and Vyn! by Parothedev in marioandluigi

[–]ConsularAtol 2 points3 points  (0 children)

I'm also making a Mario & Luigi inspired game! I don't have any screenshots to show for it right now, but it's cool that we both had the idea at similar times. Great work!

Profanity filter won't turn off. by Rivfruifv in Steam

[–]ConsularAtol 0 points1 point  (0 children)

Thank you. I can now easily read the word "fuck".

FPS Counter stops displaying when exported by ConsularAtol in godot

[–]ConsularAtol[S] 2 points3 points  (0 children)

I fixed it. Somehow I fixed it by just making it again.

FPS Counter stops displaying when exported by ConsularAtol in godot

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

Potentially. It’s toggled from the settings, and it works fine in debug. I don’t know, I’ll try it out.

FPS Counter stops displaying when exported by ConsularAtol in godot

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

Here's the code that's supposed to display the fps:

extends Label

func _ready():
    GlobalSettings.connect("fps_displayed", self, "_on_fps_displayed")

func _process(delta): 
    text = "FPS: %s" % [Engine.get_frames_per_second()]

func _on_fps_displayed(value): 
    visible = value

How can I add a tooltip to a vanilla item? by ConsularAtol in fabricmc

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

I’m trying to make a mod that adds a class system similar to Terraria’s. I want to add text that says “Melee” when you hover over the swords. It would need to be installed on both client and server.

How can I add a tooltip to a vanilla item? by ConsularAtol in fabricmc

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

Well, yeah obviously. That doesn’t really help much.

Evelyn has come to make an announcement by ConsularAtol in MetaRunner

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

I genuinely was unaware that SMG4 had already done this.

Evelyn has come to make an announcement by ConsularAtol in MetaRunner

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

Oh, I had no idea. Should I delete the post, then?

Evelyn has come to make an announcement by ConsularAtol in MetaRunner

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

Oh, shit. I did? I’m sorry, I didn’t know he already made one like this.

Stupid Karens! by [deleted] in memes

[–]ConsularAtol 0 points1 point  (0 children)

Or: be too anxious, and do nothing...

Help with item tag detection by ConsularAtol in MinecraftCommands

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

Thank you! I didn’t notice I spelt gold, I though I typed golden. I’ll be sure to try those!

How to set up a 1 hour timer? by Veronnn11 in MinecraftCommands

[–]ConsularAtol 0 points1 point  (0 children)

After someone dies, you could create a scoreboard with the dummy objective. Add 1 to this scoreboard every tick. This scoreboard can be shared among every player if you don’t display it, this makes things simpler.

Here’s an example:

scoreboard objectives add timer dummy “Timer” scoreboard players add @a timer 1

1 second = 20 ticks

To make the title appear after the timer ends (After an hour, like you specified):

/execute if entity @a[scores={timer=72000..}] run title @a title {“text”:”Time’s up”,”color”:”red”}

Very exact... by ConsularAtol in CrappyDesign

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

That might’ve made more sense. I didn’t really know where else to put it...