Harshit Sharma

Results 35 comments of Harshit Sharma

tried it out, its not possible to get screenshots without a connected player/client on running the client with --start-server.

we can use a connected client as a screenshot bot, but @JackHopkins 's renderer probably scales better with experiements

i think adding linting and access to factorio lua api docs via lua language server helps agents a lot in working with lua scripts. might benefit from this set up.

Hey guys been trying to follow the quickstart guide and ive finally reached this error as well. ``` 27000: Loading action agent/pickup_entity/server.lua into game Traceback (most recent call last): File...

Got it to work !! i had so many setup issues ... :')

So to reach the above error i had to: - fix a run.py error, i faced an asyncio not being used correctly, which was fixed via importing it and using...

🫑 here ya go `/run.py` ```python3 #!/usr/bin/env python3 import os import sys import asyncio # Add the necessary paths to sys.path root_dir = os.path.dirname(os.path.abspath(__file__)) env_src_dir = os.path.join(root_dir, 'env', 'src') #...

The error just popped up again, after i had restarted the containers and made some changes to installed modules (idk what caused it, but unlikely to be the module changes)....

The only issue right now is that the server start command for loading save and loading scenario: 1. `START_COMMAND="--start-server-load-latest"` 2. `START_COMMAND="--start-server-load-scenario ${SCENARIO}"` Can’t be used together for the headless server....

@JackHopkins ive refactored FactorioInstance. my reasoning for the changes: - Factorio Instance clearly owns namespace and the game state, that to me is the clear definition of its purpose. -...