tlongstretch

Results 98 comments of tlongstretch

tI never understood how the mining worked at that level in the original game... so the miner is actually "traveling" underground to nearby tiles randomly and if that tile has...

I found some information in a FAQ that seems to contradict this explanation: "3.04) Depleting ore veins Q. Once you excavate all of one resource from a spot, is that...

p1plpl1's fix works great on windows, I see the popup generated when no SPA file found

I would argue that the influence of non-military buildings is relatively unimportant. If anything, I would like it to be a bit more random/variable. Watching the serfs doing their jobs...

Would it make sense to create lookup tables much like databases do? So rather than searching entire collection/array/vector for something, check the appropriate lookup table. Considering how small FreeSerf is...

this is likely because of // Video case SDLK_f: if (event.key.keysym.mod & KMOD_CTRL) { gfx.set_fullscreen(!gfx.is_fullscreen()); } break;

this fix works case SDLK_f: if (event.key.keysym.mod & KMOD_CTRL) { gfx.set_fullscreen(!gfx.is_fullscreen()); }else{ // if this isn't handled the 'f' key doesn't work for savegame names notify_key_pressed(event.key.keysym.sym, modifier); } break;