I have the story

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: GooseKult on Fri 21/06/2024 11:37:51Lil update.
Pretty much finished just needs some polishing, granted I don't find any game breaking bugs in the meantime.
Quote from: DBoyWheeler on Tue 30/04/2024 00:52:31The title made me think of the "Men at Work" song.
https://www.youtube.com/watch?v=XuFC6ud1cAQ
Anyway, it will be interesting to see where this project goes.
// Define a function to handle character movement
function HandleCharacterMovement() {
if (IsKeyPressed(eKeyDownArrow)) {
cPiotr.Animate(1, eOnce, eNoBlock); // Change '1' to the view number for walking down animation
cPiotr.y += 2; // Adjust the value to control the movement speed
}
else if (IsKeyPressed(eKeyUpArrow)) {
cPiotr.Animate(1, eOnce, eNoBlock); // Change '2' to the view number for walking up animation
cPiotr.y -= 2; // Adjust the value to control the movement speed
}
else if (IsKeyPressed(eKeyRightArrow)) {
cPiotr.Animate(1, eOnce, eNoBlock); // Change '3' to the view number for walking right animation
cPiotr.x += 2; // Adjust the value to control the movement speed
}
else if (IsKeyPressed(eKeyLeftArrow)) {
cPiotr.Animate(1, eOnce, eNoBlock); // Change '4' to the view number for walking left animation
cPiotr.x -= 2; // Adjust the value to control the movement speed
}
}
// called on every game cycle, even when the game is blocked
function repeatedly_execute_always()
{
HandleCharacterMovement();
}
Quote from: Kastchey on Sat 02/12/2023 20:14:25Quote from: jwalt on Sat 02/12/2023 17:27:31Get a total system lock up on Dreamscape.Thanks for trying the game! I have made a quick fix. I couldn't reproduce the exact issue you encountered, but your feedback led me to discover another gamebreaking error in the same room that had slipped my mind yesterday night.Spoiler
Went past the grate, using the crowbar. Entered the sleeper's room. Can't seem to get out of the room, and movement toward the left side gives me the "clock" and locks up. Haven't been through the hole in the wall on the other side of the alley. Not sure of cause, but my system can't seem to handle it. Had to do a system restart.[close]
Just noticed your second response when I was previewing, glad to hear it finally worked ok. I do think it's a game issue, the custom GUI I made is a bit wonky at times. Something to do a better job with after MAGS, I guess.
Quote from: The Great Underground Empire on Sat 02/12/2023 19:20:39Phew, thank you! 😅 I finished it around 1AM my time and was worried I missed some gamebreaking bug in my half awake brain. 😄
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.061 seconds with 13 queries.