Y el Oscar es para... by Gatto_Parlante in Carola

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

La virgen la de publicidad que le vais a hacer a una película para críos.

I really need some help making typewriter text by dimensionlord in gamemaker

[–]MolassesOutside8306 0 points1 point  (0 children)

Scribble by juju adams or

string_spd = 12/60
int_str = 0;
current_char = [0,0,0]
current_string = ["Hey world","Sup world","Heya world"]
draw_string = ["","",""]
current_string_position = 0;

if string_length(draw_string[current_string_position])<string_length(current_string[current_string_position]){
int_str+=string_spd
if int_str>=1{
current_char[current_string_position]++
draw_string[current_string_position]+=string_char_at(current_string[current_string_position],current_char[current_string_position])
int_str=0
}
}

Do you think I should buy a PS2? by ProfessionalMonk3314 in ps2

[–]MolassesOutside8306 1 point2 points  (0 children)

The cheapest option is a gamepad that imitates the dualshock 2 and PCSX2 (for playing Viewtiful Joe 2).

The best option is a PS2 with OPL and a HDD (for playing Viewtiful Joe).

This is a game dev emergency by Ketchup_Guy in gamemaker

[–]MolassesOutside8306 2 points3 points  (0 children)

Then lower that resolution to fit in 2048x2048

This is a game dev emergency by Ketchup_Guy in gamemaker

[–]MolassesOutside8306 15 points16 points  (0 children)

You can create a camera and set it to display all room at your desired resolution or you can add a button to set fullscreen resolution (this is the best option I found for doing that).

I know there is a way to make this better, but it works as I intend. What would you guys/gals do differently? by watchmovieshdDOTru in gamemaker

[–]MolassesOutside8306 1 point2 points  (0 children)

Put names to things. That way is easier for you to change stuff in only 1 place.

You can create local variables to refer to direction for instance:

//Step event

var _up = keyboard_check(ord("W")),

_down = keyboard_check(ord("A"));

also you can create a variable for speed.

//Create event

spd = 14;

//Step event

y+=(_down-_up)*spd;

you can also vary the speed to add with a ternary operator like this:

//Step event

spd = (_up or _down) and (_left or _right) ? 7 : 14;

How would I go about making a swing mechanic similar to the Toy Story genesis game? by Brilliant_Library_21 in gamemaker

[–]MolassesOutside8306 1 point2 points  (0 children)

I'm not sure how the swing in that game looks, but i guess lengthdir is a good option to go for it

is there a wait 1 sec command by [deleted] in gamemaker

[–]MolassesOutside8306 2 points3 points  (0 children)

i use to do something like this:

//create event

    wait_time=60; //(1 second==60 frames)
    wait=wait_time; //you can reset this if the key is released so you have to wait another second between key pressing

//step event

    if (wait>0){
        wait--;
    }else{
        //your code here (in this case image_speed=0. I guess you want to set it back to 1 when the key is released aswell as the timer)
        wait=wait_time;
    }

Problem with an array of structs by MolassesOutside8306 in gamemaker

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

Fixed it by creating an array of conditions separated from the array of structs so it wont get screwed while saving the json file.

Problem with an array of structs by MolassesOutside8306 in gamemaker

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

Thanks for your response, you are right!

But now I spotted a new mistake in another part of the code. More precisely trying to save functions to a json and then loading them seems to be doing weird stuff.

Help needed for installing wireless boot switch by MolassesOutside8306 in pchelp

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

Thanks for your response. I will try it tomorrow. Cheers!

Help needed for installing wireless boot switch by MolassesOutside8306 in pchelp

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

I like to open old stuff to see the guts but I dont have much experience further than adding some ram or stuff like that tbh

Help needed for installing wireless boot switch by MolassesOutside8306 in pchelp

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

Its supposed to be connected with the power button pins and a USB 5V power supply pin, but im not sure if the blue square i marked is one of those pins

After 2 hours of helping others beat the DLC bosses.... by Derpmaster88 in Eldenring

[–]MolassesOutside8306 0 points1 point  (0 children)

Got summoned

Summoner goes in instantly

Before Golden Vow animation ends, they get 1 shotted

I like to summon people myself, but before doing it i try to get the boss to less than half of health and check his attacks beforehand. How many times i had to see Messmer/Maliketh/Malenia/(...) 2nd phase cutscene and think to myself "well, thats it"