DLzer / Zork

ZORK! Javascript style.
https://dlzer.dev/projects/zork
MIT License
22 stars 8 forks source link

Move Rug not working #3

Closed LucAndre91 closed 2 years ago

LucAndre91 commented 2 years ago

Hi

First of all thanks for let us using the java for Zork. Perfect for our Easter Egg Project. I tried to solve the Adventure but at the point "MOVE RUG" it is not working? Is there any Issue with it?

Do you have a Walkthrough of your Version of ZORK?

Thanks

LucAndre91 commented 2 years ago

It is always saying Oh no, that doesn't look right! I tried many combinations:

Move Rug Move Oriental Rug Move the Rug Pull / Push The Rug Pull / Push Rug and many more!

image

DLzer commented 2 years ago

First off, thank you for your interest in ZORK. Additionally, thanks for the email. I will be posting the response here as well for transparency, and for others to see.

Sorry to hear you've run into an issue. As mentioned in the readme ZORK is currently in beta and still has some bugs. About 2 months ago I pushed a v2 of the game's movement/item/room engine which included a handful of updates. I believe where I left off were the push/pull actions. Which unfortunately is exactly the issue you've run into!

Unfortunately my time is a bit limited at the moment with other projects. I can make some time to add the additional movement features in hopefully come this weekend. Otherwise, if you would like to take a stab at furthering the development by contributing feel free to do so.

The file that would need to be updated would be: https://github.com/DLzer/Zork/blob/master/assets/js/Domain/GameEngine/GameEngine.js Which is the games action engine. PullAction/PushAction/MoveAction need to be added. These actions need to be linked to the livingRoomRug, which is a Room, and not an Item, as shown here: https://github.com/DLzer/Zork/blob/master/assets/js/Domain/Room/Room.js#L117

DLzer commented 2 years ago

This has been fixed in release v0.9.5-beta!

Thank you for bringing this issue to my attention 👍

LucAndre91 commented 2 years ago

Hi Dillon

I just received the update. Question: is it now fully useable?

Freundliche Grüsse Luca Koller

On 7 Feb 2022, at 17:37, Dillon Lomnitzer @.***> wrote:



First off, thank you for your interest in ZORK. Additionally, thanks for the email. I will be posting the response here as well for transparency, and for others to see.

Sorry to hear you've run into an issue. As mentioned in the readme ZORK is currently in beta and still has some bugs. About 2 months ago I pushed a v2 of the game's movement/item/room engine which included a handful of updates. I believe where I left off were the push/pull actions. Which unfortunately is exactly the issue you've run into!

Unfortunately my time is a bit limited at the moment with other projects. I can make some time to add the additional movement features in hopefully come this weekend. Otherwise, if you would like to take a stab at furthering the development by contributing feel free to do so.

The file that would need to be updated would be: https://github.com/DLzer/Zork/blob/master/assets/js/Domain/GameEngine/GameEngine.js Which is the games action engine. PullAction/PushAction/MoveAction need to be added. These actions need to be linked to the livingRoomRug, which is a Room, and not an Item, as shown here: https://github.com/DLzer/Zork/blob/master/assets/js/Domain/Room/Room.js#L117

— Reply to this email directly, view it on GitHubhttps://github.com/DLzer/Zork/issues/3#issuecomment-1031672497, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ARMBHELYV6ND3R3O2V7VXVTUZ7YL3ANCNFSM5NXGEI3Q. You are receiving this because you authored the thread.Message ID: @.***>

DLzer commented 2 years ago

Hey there! The game itself does need more rooms added, but the mechanics and engine are there. However, I was able to fix the reported issue you were having with moving the rug 😄

LucAndre91 commented 2 years ago

Hi Dillon

Hope you are good?

I just managed how to add new rooms etc. so I can do it maybe by my own to the finish. Will inform you so you could have the final code and see if there are any fails in it 😊

Cheers Luc

Von: Dillon Lomnitzer @.> Datum: Dienstag, 19. Juli 2022 um 02:00 An: DLzer/Zork @.> Cc: LucAndre91 @.>, Author @.> Betreff: Re: [DLzer/Zork] Move Rug not working (Issue #3)

Hey there! The game itself does need more rooms added, but the mechanics and engine are there. However, I was able to fix the reported issue you were having with moving the rug 😄

— Reply to this email directly, view it on GitHubhttps://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FDLzer%2FZork%2Fissues%2F3%23issuecomment-1188451201&data=05%7C01%7C%7C88c036c524de4d1e579808da6919a971%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637937856190806560%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=4jFfQnmSjkRN%2BT9yL5IXji2dnLhAOUNZJPhAI4FAdD4%3D&reserved=0, or unsubscribehttps://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FARMBHEI2B7CFKHBAFXOZEXDVUXVY7ANCNFSM5NXGEI3Q&data=05%7C01%7C%7C88c036c524de4d1e579808da6919a971%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637937856190806560%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2F7zmKAnpAd%2BOlwESWvIhdhiOdNqr6%2B%2Fjsg2udod57us%3D&reserved=0. You are receiving this because you authored the thread.Message ID: @.***>

DLzer commented 2 years ago

Awesome! If you would like to contribute feel free to make a Pull Request with the new code!