Jan Šimek

Results 61 comments of Jan Šimek

Same thing as in https://github.com/falltergeist/falltergeist/issues/531#issuecomment-331748362 A spear is created and added to the inventory by the artemple script, but then it is removed from the list of objects and player's...

The flask is created using ```create_object_sid(267, 0, 0, -1);``` in the Elder's script which calls ```Location::addObject()``` in the engine and there it is placed in the object list. Opcode8116 calls...

This is my workaround for now: ```diff --- a/src/VM/Handler/Opcode8116Handler.cpp +++ b/src/VM/Handler/Opcode8116Handler.cpp @@ -27,6 +27,7 @@ #include "../../Game/CritterObject.h" #include "../../Game/Game.h" #include "../../Game/Object.h" +#include "../../Game/ObjectFactory.h" #include "../../Logger.h" #include "../../State/Location.h" #include "../../VM/Script.h" @@...

~~~Something changed and the Elder now thinks the village was already attacked by the Enclave. Therefore, I can no longer check if the bug happens in Arroyo village, however it...

I think the point @mbloody was making is that FIFE team kept adding new features unrelated to the Fallout engine and constatly "improving" the codebase like rewriting the high-level stuff...

@prokopst it looks like someone was inspired by your idea of reimplementing this engine in Rust: https://github.com/pingw33n/vault13

That's one of the major milestones done #633 ```diff diff --git a/README.md b/README.md index 99c8fd03..520bf2ee 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,6 @@ or mount CD-ROM with original game,...

Btw, README should mention that the **sound** directory must be copied from the Fallout 2 installation directory as well as master.dat and critter.dat. I couldn't figure out why `20car.acm` and...

Should be a piece of cake with this Github Action: https://github.com/marketplace/actions/action-cpp-lint Alternatively, we could use a [.editorconfig](https://github.com/marketplace/actions/editorconfig-action) action since we already have .editorconfig

The crash was unrelated and fixed in pull request https://github.com/falltergeist/falltergeist/pull/591. This error is still there because the opcode 80BA (`obj_is_carrying_obj_pid`) is trying to check the contents of the table where...