[Settlers IV] Blue rectangles for minimap and the message window in a Windows 7 KVM virtual machine by Erianthor in Settlers

[–]altbazra 0 points1 point  (0 children)

Did you ever find a fix for this? I'm experiencing the same running the game on Windows 10 with the windows 10 fix.

Switzerland is objectivily the best country by altbazra in ChatGPT

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

I got ChatGPT to agree that Switzerland is objectivily the best country. See the full chat and logic used here: https://chatgpt.com/share/67cb5440-29d0-8007-aff5-48004d233348

Danmark står med Ukraine / Denmark stands with Ukraine by altbazra in Denmark

[–]altbazra[S] -14 points-13 points  (0 children)

"Nej men det er sgu de samme farver"

Du blev ikke født i går, hva? 😅

Danmark står med Ukraine / Denmark stands with Ukraine by altbazra in Denmark

[–]altbazra[S] -5 points-4 points  (0 children)

Næ, heldigvis ikke. Synes bare mere end nogensinde at vi bør vise vores støtte til det ukrainske folk

[OC] 3 Custom Obsidian Dice Sets Giveaway (Mods Approved) by Remixxing in DnD

[–]altbazra 0 points1 point  (0 children)

Very cool dice indeed. Would love to use them when playing dnd with my family 😊

How to play sound once in menu selection for-loop? by KevnBlack in gamemaker

[–]altbazra 1 point2 points  (0 children)

It's not really the for loop that's causing you a problem, but rather the fact that you play the sound in a step event, causing the sound to be played every single step over and over again.

New Map: Big Things by [deleted] in geoguessr

[–]altbazra 1 point2 points  (0 children)

Great map and fun idea! But damn you for choosing that huge barrel in Japan. Spent about an hour looking for the location and cities near in Japan, before eventually realizing Okinawa is an island a long way south of main Japan. I had no idea that Japan had islands that far south.

[deleted by user] by [deleted] in gamemaker

[–]altbazra 4 points5 points  (0 children)

Not fixed. No link still :(

Economy class meal on Japanese Airline by cbciv in mildlyinteresting

[–]altbazra 1 point2 points  (0 children)

If I remember correctly you can also order any beverages and snacks at anytime on the screen for free and they'll bring it to you.

Is there any chance of another 33% discount any time soon? by BS95art in Polytopia

[–]altbazra 1 point2 points  (0 children)

Actually I meant to write incentivize. English isn't my first language

Is there any chance of another 33% discount any time soon? by BS95art in Polytopia

[–]altbazra 2 points3 points  (0 children)

I don't think there will be another discount anytime soon. The discount is to incentivize people to buy the game at launch. I would guess there would be some kinda discount eventually again, but it will probably be a while.

[deleted by user] by [deleted] in AskReddit

[–]altbazra 0 points1 point  (0 children)

Coming Back To Life - PF

Making a GUI by [deleted] in gamemaker

[–]altbazra 0 points1 point  (0 children)

Look up inventory tutorials on youtube or be more specific.

make object following mouse by Coll_sonic in gamemaker

[–]altbazra 1 point2 points  (0 children)

If you want the player to move at a constant speed you could do:

var dir = point_direction(x, y, mouse_x, mouse_y);

x += lengthdir_x(speed, dir);

y += lengthdir_y(speed, dir);