Balancer, as far as I know compatibility with other mods is shaky at best. There are a couple of ones (listed in first post) that do work well.
Attempting to run a big mod like Infinite Space, which is essentially a total conversion, along with that many other ones is asking for trouble. If you want to play Infinite Space, the best bet is to run it without any other mods running and then reintroduce them one at a time to see which causes the issue.
[MOD][WIP] FTL Infinite Space
-
- Posts: 26
- Joined: Tue Jan 15, 2013 12:00 pm
-
- Posts: 1
- Joined: Sun Apr 21, 2013 12:18 am
Re: [MOD][WIP] FTL Infinite Space
Hey, I think this mod is absolutely great, the ability to explore and upgrade at you're own pace is awesome, I didn't like the time constraint of vanilla all that much. I wanted to have a look around and see what I could find, thanks for making this. So first off (as this is a bit long) I'll just do a simple, arrogant TL;DR
TL;DR: #1 Change the boss #2 Remove force travel in exits of sectors #3 Add (a lot) more fuel to shops.
Personally, I have a few problems, I'd try to fix them myself, but I don't have a clue. So, I guess I'll get the whining started. I'd really appreciate it if you read these
Forced exit travel. Whenever I get to an exit (say I've escaped there to get away from the boss) I instantly travel to the next sector, not giving me time to get my bearings and fix my ship. I had one situation, where the exit was the only way of getting to the other half of a sector...
Secondlyyy... Is there any way to remove the boss, or de-buff it at least? 4 shield bars, OP guns, the ability to send over 5 Rocks... the only thing you can do is hold out then run like a pleb . Every time I run into it, I think it's just a stupid overpowered, unbalanced moron. Instead of having a decent boss fight, I'm obliterated by something that is way too powerful for me to deal with. I know I'm whining here, and others probably don't have this problem. But I think it'd be much better if it wasn't so hard to beat. And instead, the other ships throughout the game were simply a bit more powerful. so perhaps make the other ships a bit more difficult, and remove the boss altogether? I ran into these Rock boss ships (different ones) 4 times in one sector...
Lastly (did you really read this long?) as there's no time limit, I do a lot more exploring of each sector, which means I use way more fuel, yet shops still have the same amount in stock... by the time I've got to like, Sector 3 or something, I'm more or less outta juice
Sorry for the whining, I know I'm seeming like a bit of a cock. But I think it just ruins the mod for me... Thanks for what's here anyway, I'm loving it, so much better than vanilla.
TL;DR: #1 Change the boss #2 Remove force travel in exits of sectors #3 Add (a lot) more fuel to shops.
Personally, I have a few problems, I'd try to fix them myself, but I don't have a clue. So, I guess I'll get the whining started. I'd really appreciate it if you read these

Forced exit travel. Whenever I get to an exit (say I've escaped there to get away from the boss) I instantly travel to the next sector, not giving me time to get my bearings and fix my ship. I had one situation, where the exit was the only way of getting to the other half of a sector...
Secondlyyy... Is there any way to remove the boss, or de-buff it at least? 4 shield bars, OP guns, the ability to send over 5 Rocks... the only thing you can do is hold out then run like a pleb . Every time I run into it, I think it's just a stupid overpowered, unbalanced moron. Instead of having a decent boss fight, I'm obliterated by something that is way too powerful for me to deal with. I know I'm whining here, and others probably don't have this problem. But I think it'd be much better if it wasn't so hard to beat. And instead, the other ships throughout the game were simply a bit more powerful. so perhaps make the other ships a bit more difficult, and remove the boss altogether? I ran into these Rock boss ships (different ones) 4 times in one sector...
Lastly (did you really read this long?) as there's no time limit, I do a lot more exploring of each sector, which means I use way more fuel, yet shops still have the same amount in stock... by the time I've got to like, Sector 3 or something, I'm more or less outta juice

Sorry for the whining, I know I'm seeming like a bit of a cock. But I think it just ruins the mod for me... Thanks for what's here anyway, I'm loving it, so much better than vanilla.
-
- Posts: 31
- Joined: Sun Apr 21, 2013 6:16 pm
Re: [MOD][WIP] FTL Infinite Space
I fixed a whole bunch of XML syntax errors. Note that the majority of these may not have caused any bugs due to the way FTL parses XML files, but their existence makes it a lot harder to find bug-causing xml errors because of all the false positives the bad syntaxes throw.
Here is the fully fixed file which passed GMM's Validate with flying colors (this is with backgrounds): https://mega.co.nz/#!RJ5ExAYJ!OmBAi2Nhr ... 03KBHtgx08
Here it is without hi-res backgrounds: https://mega.co.nz/#!oFI1iJxa!OfDtLhe6u ... ZPAtc-tHaU
I would ask that you use them. Here are the errors fixed:
-------
autoBlueprints.xml.append:
! <!-- No other dashes should touch. -->
Line 157, 173:
</ship>
This should be:
</shipBlueprint>
Line 710, 995:
<teleporter power="2"room="9"/>
This should be:
<teleporter power="2" room="9"/>
Line 711:
<drones power="4"room="2"/>
This should be:
<drones power="4" room="2"/>
Line 996:
<drones power="8"room="2"/>
This should be:
<drones power="8" room="2"/>
blueprints.xml.append:
! <!-- No other dashes should touch. -->
Line 15:
<tooltip>Fires 5 lasers, 1 damage per shot.</desc>-->
This should be:
<tooltip>Fires 5 lasers, 1 damage per shot.</tooltip>
Line 280:
<speed>90</image>
This should be:
<speed>90</speed>
events.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 551:
<choice req="weapons" lvl="6" hidden="true" hidden="true">
This should be:
<choice req="weapons" lvl="6" hidden="true">
Line 1245:
</text>
This should be:
</textList>
events_crystal.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 179:
<text>You fire everything you have, but the crystal barrier remains strong. After a time you give up and move on.</event>
This should be:
<text>You fire everything you have, but the crystal barrier remains strong. After a time you give up and move on.</text>
Line 182:
<text>You fire everything you have, but the crystal barrier remains strong. After a time you give up and move on.</event>
This should be:
<text>You fire everything you have, but the crystal barrier remains strong. After a time you give up and move on.</text>
events_engi.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 431:
</choice>
This should be:
</event>
Line 437:
<text>Your away team reports a wounded Engi and a functioning drone schematic. Then someone yells. The station reactor is overloading and they're running out of time!</event>
This should be:
<text>Your away team reports a wounded Engi and a functioning drone schematic. Then someone yells. The station reactor is overloading and they're running out of time!</text>
events_fuel.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 527, 620:
</event>
This should be:
</textList>
events_mantis.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 486:
</text>
This should be:
</event>
Line 520:
<text>Accept.</event>
This should be:
<text>Accept.</text>
events_pirate.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
events_nebula.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 234:
<choice req="cloaking" hidden="true" hidden="true">
This should be:
<choice req="cloaking" hidden="true">
events_rebel.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
events_rock.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
events_ships.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 404:
</destroyed>
This should be:
</deadCrew>
events_slug.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 246:
</event>
This should be:
</choice>
events_zoltan.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 533:
</event>
This should be:
</eventList>
sector_data.xml.append:
Line 54:
</sectorDescrption>
This should be:
</sectorDescription>
Here is the fully fixed file which passed GMM's Validate with flying colors (this is with backgrounds): https://mega.co.nz/#!RJ5ExAYJ!OmBAi2Nhr ... 03KBHtgx08
Here it is without hi-res backgrounds: https://mega.co.nz/#!oFI1iJxa!OfDtLhe6u ... ZPAtc-tHaU
I would ask that you use them. Here are the errors fixed:
-------
autoBlueprints.xml.append:
! <!-- No other dashes should touch. -->
Line 157, 173:
</ship>
This should be:
</shipBlueprint>
Line 710, 995:
<teleporter power="2"room="9"/>
This should be:
<teleporter power="2" room="9"/>
Line 711:
<drones power="4"room="2"/>
This should be:
<drones power="4" room="2"/>
Line 996:
<drones power="8"room="2"/>
This should be:
<drones power="8" room="2"/>
blueprints.xml.append:
! <!-- No other dashes should touch. -->
Line 15:
<tooltip>Fires 5 lasers, 1 damage per shot.</desc>-->
This should be:
<tooltip>Fires 5 lasers, 1 damage per shot.</tooltip>
Line 280:
<speed>90</image>
This should be:
<speed>90</speed>
events.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 551:
<choice req="weapons" lvl="6" hidden="true" hidden="true">
This should be:
<choice req="weapons" lvl="6" hidden="true">
Line 1245:
</text>
This should be:
</textList>
events_crystal.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 179:
<text>You fire everything you have, but the crystal barrier remains strong. After a time you give up and move on.</event>
This should be:
<text>You fire everything you have, but the crystal barrier remains strong. After a time you give up and move on.</text>
Line 182:
<text>You fire everything you have, but the crystal barrier remains strong. After a time you give up and move on.</event>
This should be:
<text>You fire everything you have, but the crystal barrier remains strong. After a time you give up and move on.</text>
events_engi.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 431:
</choice>
This should be:
</event>
Line 437:
<text>Your away team reports a wounded Engi and a functioning drone schematic. Then someone yells. The station reactor is overloading and they're running out of time!</event>
This should be:
<text>Your away team reports a wounded Engi and a functioning drone schematic. Then someone yells. The station reactor is overloading and they're running out of time!</text>
events_fuel.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 527, 620:
</event>
This should be:
</textList>
events_mantis.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 486:
</text>
This should be:
</event>
Line 520:
<text>Accept.</event>
This should be:
<text>Accept.</text>
events_pirate.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
events_nebula.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 234:
<choice req="cloaking" hidden="true" hidden="true">
This should be:
<choice req="cloaking" hidden="true">
events_rebel.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
events_rock.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
events_ships.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 404:
</destroyed>
This should be:
</deadCrew>
events_slug.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 246:
</event>
This should be:
</choice>
events_zoltan.xml:
~ Unicode UTF-8 BOM detected. (ascii (i.e. UTF-8 w/o BOM) is safer)
! <!-- No other dashes should touch. -->
Line 533:
</event>
This should be:
</eventList>
sector_data.xml.append:
Line 54:
</sectorDescrption>
This should be:
</sectorDescription>
Last edited by Bonnie Lass on Mon Apr 22, 2013 7:16 pm, edited 1 time in total.
-
- Posts: 31
- Joined: Sun Apr 21, 2013 6:16 pm
Re: [MOD][WIP] FTL Infinite Space
I consolidated my previous posts into one post and added some formatting to make it less of a mess. Didn't sit right to have a whole discussion page full of xml errors.
-
- Posts: 1
- Joined: Tue Apr 23, 2013 3:12 pm
Re: [MOD][WIP] FTL Infinite Space
I'm running Ubuntu 12.04 LTS x64 and I'm unable to get past the "Start Game" button (the game just crashes when I click it, regardless of which ship or difficulty I've chosen).
I ran the app in console mode and got this output. I've tried redownloading both the hi-res background version and the normal version, as well as redownloading FTL from Steam. Any ideas?
edit: the 0.4.3 version works without any problems. I'll just use that one.
I ran the app in console mode and got this output. I've tried redownloading both the hi-res background version and the normal version, as well as redownloading FTL from Steam. Any ideas?
Code: Select all
username@username:~/.local/share/Steam/SteamApps/common/FTL Faster Than Light$ ./FTL
Loading Arch = amd64
Initializing Crash Catcher...
Initializing Video
Video Initialized
Opengl version = 3.0 Mesa 8.0.4
Starting audio library...
Audio Initialized!
Resource Preload: 7358
Initializing animations...
Animations Initialized!
Loading Ship Blueprints....
Blueprints Loaded!
Choice for ENGI_FLEET_DELAY does not have an event
Choice for FUEL_TRADER_DISTRESS does not have an event
Initializing Sound Data....
Generating world...
Loading achievements...
Loading score file...
Running Game!
*** stack smashing detected ***: /home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL terminated
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x37)[0x7fa266f1b807]
/lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x0)[0x7fa266f1b7d0]
/home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL[0x5ca6e7]
/home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL[0x5ca760]
/home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL[0x52d8af]
/home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL[0x5370f6]
/home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL[0x40a314]
/home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL[0x40cdf4]
/home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL[0x40d01f]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed)[0x7fa266e3276d]
/home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL(__gxx_personality_v0+0x329)[0x406da9]
======= Memory map: ========
00400000-00687000 r-xp 00000000 00:15 13632132 /home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL
00886000-00887000 rw-p 00286000 00:15 13632132 /home/username/.local/share/Steam/SteamApps/common/FTL Faster Than Light/data/amd64/bin/FTL
00887000-0089d000 rw-p 00000000 00:00 0
01a1c000-05b5b000 rw-p 00000000 00:00 0 [heap]
7fa204000000-7fa204021000 rw-p 00000000 00:00 0
7fa204021000-7fa208000000 ---p 00000000 00:00 0
7fa20a912000-7fa20a913000 rw-s 00000000 00:04 155525 /drm mm object (deleted)
7fa20a913000-7fa20a91f000 rw-s 1687c4000 00:05 7580 /dev/dri/card0
7fa20a91f000-7fa20a921000 rw-s 00000000 00:04 155523 /drm mm object (deleted)
7fa20a921000-7fa20a924000 rw-s 00000000 00:04 155522 /drm mm object (deleted)
7fa20a924000-7fa20a932000 rw-s 1687b6000 00:05 7580 /dev/dri/card0
7fa20a932000-7fa20a940000 rw-s 1687a8000 00:05 7580 /dev/dri/card0
7fa20a940000-7fa20a942000 rw-s 00000000 00:04 155519 /drm mm object (deleted)
7fa20a942000-7fa20a9a2000 rw-s 168748000 00:05 7580 /dev/dri/card0
7fa20a9a2000-7fa20ad22000 rw-s 1683c8000 00:05 7580 /dev/dri/card0
7fa20ad22000-7fa20ad24000 rw-s 00000000 00:04 155516 /drm mm object (deleted)
7fa20ad24000-7fa20ad32000 rw-s 1683ba000 00:05 7580 /dev/dri/card0
7fa20ad32000-7fa20ad3e000 rw-s 1683ae000 00:05 7580 /dev/dri/card0
7fa20ad3e000-7fa20ad4a000 rw-s 1683a2000 00:05 7580 /dev/dri/card0
7fa20ad4a000-7fa20aeca000 rw-s 168222000 00:05 7580 /dev/dri/card0
7fa20aeca000-7fa20aed8000 rw-s 168214000 00:05 7580 /dev/dri/card0
7fa20aed8000-7fa20aee6000 rw-s 168206000 00:05 7580 /dev/dri/card0
7fa20aee6000-7fa20aee8000 rw-s 00000000 00:04 155509 /drm mm object (deleted)
7fa20aee8000-7fa20b068000 rw-s 168086000 00:05 7580 /dev/dri/card0
7fa20b068000-7fa20b06a000 rw-s 00000000 00:04 155507 /drm mm object (deleted)
7fa20b06a000-7fa20b06d000 rw-s 00000000 00:04 155506 /drm mm object (deleted)
7fa20b06d000-7fa20b07b000 rw-s 168078000 00:05 7580 /dev/dri/card0
7fa20b07b000-7fa20b07d000 rw-s 00000000 00:04 155504 /drm mm object (deleted)
7fa20b07d000-7fa20b08b000 rw-s 16806a000 00:05 7580 /dev/dri/card0
7fa20b08b000-7fa20b099000 rw-s 16805c000 00:05 7580 /dev/dri/card0
7fa20b099000-7fa20b09c000 rw-s 00000000 00:04 155501 /drm mm object (deleted)
7fa20b09c000-7fa20b09e000 rw-s 00000000 00:04 155500 /drm mm object (deleted)
7fa20b09e000-7fa20b0a0000 rw-s 00000000 00:04 155499 /drm mm object (deleted)
7fa20b0a0000-7fa20b0a2000 rw-s 00000000 00:04 155498 /drm mm object (deleted)
7fa20b0a2000-7fa20b422000 rw-s 167cdc000 00:05 7580 /dev/dri/card0
7fa20b422000-7fa20b42e000 rw-s 167cd0000 00:05 7580 /dev/dri/card0
7fa20b42e000-7fa20b430000 rw-s 00000000 00:04 155495 /drm mm object (deleted)
7fa20b430000-7fa20b43e000 rw-s 167cc2000 00:05 7580 /dev/dri/card0
7fa20b43e000-7fa20b44c000 rw-s 167cb4000 00:05 7580 /dev/dri/card0
7fa20b44c000-7fa20b452000 rw-s 00000000 00:04 155492 /drm mm object (deleted)
7fa20b452000-7fa20b46a000 rw-s 167c9c000 00:05 7580 /dev/dri/card0
7fa20b46a000-7fa20b476000 rw-s 167c90000 00:05 7580 /dev/dri/card0
7fa20b476000-7fa20b4a6000 rw-s 167c60000 00:05 7580 /dev/dri/card0
7fa20b4a6000-7fa20b4b2000 rw-s 167c54000 00:05 7580 /dev/dri/card0
7fa20b4b2000-7fa20b832000 rw-s 1678d4000 00:05 7580 /dev/dri/card0
7fa20b832000-7fa20b835000 rw-s 00000000 00:04 155486 /drm mm object (deleted)
7fa20b835000-7fa20b843000 rw-s 1678c6000 00:05 7580 /dev/dri/card0
7fa20b843000-7fa20b85b000 rw-s 1678ae000 00:05 7580 /dev/dri/card0
7fa20b85b000-7fa20b8bb000 rw-s 16784e000 00:05 7580 /dev/dri/card0
7fa20b8bb000-7fa20b8bd000 rw-s 00000000 00:04 155482 /drm mm object (deleted)
7fa20b8bd000-7fa20bc3d000 rw-s 1674ce000 00:05 7580 /dev/dri/card0
7fa20bc3d000-7fa20bc49000 rw-s 1674c2000 00:05 7580 /dev/dri/card0
7fa20bc49000-7fa20bc4c000 rw-s 00000000 00:04 155479 /drm mm object (deleted)
7fa20bc4c000-7fa20bdcc000 rw-s 167342000 00:05 7580 /dev/dri/card0
7fa20bdcc000-7fa20bdce000 rw-s 00000000 00:04 155477 /drm mm object (deleted)
7fa20bdce000-7fa20bddc000 rw-s 167334000 00:05 7580 /dev/dri/card0
7fa20bddc000-7fa20be2c000 rw-s 1672e4000 00:05 7580 /dev/dri/card0
7fa20be2c000-7fa20be3a000 rw-s 1672d6000 00:05 7580 /dev/dri/card0
7fa20be3a000-7fa20c23a000 rw-s 166ed6000 00:05 7580 /dev/dri/card0
7fa20c23a000-7fa20c23b000 rw-s 00000000 00:04 155472 /drm mm object (deleted)
7fa20c23b000-7fa20c23e000 rw-s 00000000 00:04 155471 /drm mm object (deleted)
7fa20c23e000-7fa20c5be000 rw-s 166b56000 00:05 7580 /dev/dri/card0
7fa20c5be000-7fa20c93e000 rw-s 1667d6000 00:05 7580 /dev/dri/card0
7fa20c93e000-7fa20c941000 rw-s 00000000 00:04 155468 /drm mm object (deleted)
7fa20c941000-7fa20ccc1000 rw-s 166456000 00:05 7580 /dev/dri/card0
7fa20ccc1000-7fa20cccd000 rw-s 16644a000 00:05 7580 /dev/dri/card0
7fa20cccd000-7fa20d04d000 rw-s 1660ca000 00:05 7580 /dev/dri/card0
7fa20d04d000-7fa20d050000 rw-s 00000000 00:04 155464 /drm mm object (deleted)
7fa20d050000-7fa20d450000 rw-s 165cca000 00:05 7580 /dev/dri/card0
7fa20d450000-7fa20d7d0000 rw-s 16594a000 00:05 7580 /dev/dri/card0
7fa20d7d0000-7fa20d7de000 rw-s 16593c000 00:05 7580 /dev/dri/card0
7fa20d7de000-7fa20d7ec000 rw-s 16592e000 00:05 7580 /dev/dri/card0
7fa20d7ec000-7fa20d96c000 rw-s 1657ae000 00:05 7580 /dev/dri/card0
7fa20d96c000-7fa20dcec000 rw-s 16542e000 00:05 7580 /dev/dri/card0
7fa20dcec000-7fa20dcf0000 rw-s 00000000 00:04 155457 /drm mm object (deleted)
7fa20dcf0000-7fa20e070000 rw-s 1650ae000 00:05 7580 /dev/dri/card0
7fa20e070000-7fa20e07e000 rw-s 1650a0000 00:05 7580 /dev/dri/card0
7fa20e07e000-7fa20e1be000 rw-s 164f60000 00:05 7580 /dev/dri/card0
7fa20e1be000-7fa20e2fe000 rw-s 164e20000 00:05 7580 /dev/dri/card0
7fa20e2fe000-7fa20e43e000 rw-s 164ce0000 00:05 7580 /dev/dri/card0
7fa20e43e000-7fa20e57e000 rw-s 164ba0000 00:05 7580 /dev/dri/card0
7fa20e57e000-7fa20e6be000 rw-s 164a60000 00:05 7580 /dev/dri/card0
7fa20e6be000-7fa20e7fe000 rw-s 164920000 00:05 7580 /dev/dri/card0
7fa20e7fe000-7fa20e93e000 rw-s 1647e0000 00:05 7580 /dev/dri/card0
7fa20e93e000-7fa20ea7e000 rw-s 130968000 00:05 7580 /dev/dri/card0
7fa20ea7e000-7fa20ebbe000 rw-s 130828000 00:05 7580 /dev/dri/card0
7fa20ebbe000-7fa20ecfe000 rw-s 154408000 00:05 7580 /dev/dri/card0
7fa20ecfe000-7fa20ecff000 rw-s 00000000 00:04 155444 /drm mm object (deleted)
7fa20ecff000-7fa20ed0b000 rw-s 1543fc000 00:05 7580 /dev/dri/card0
7fa20ed0b000-7fa20ed0d000 rw-s 00000000 00:04 155442 /drm mm object (deleted)
7fa20ed0d000-7fa20ed19000 rw-s 1543f0000 00:05 7580 /dev/dri/card0
7fa20ed19000-7fa20ed25000 rw-s 1543e4000 00:05 7580 /dev/dri/card0
7fa20ed25000-7fa20ed31000 rw-s 1543d8000 00:05 7580 /dev/dri/card0
7fa20ed31000-7fa20ed3d000 rw-s 1543cc000 00:05 7580 /dev/dri/card0
7fa20ed3d000-7fa20ed49000 rw-s 1543c0000 00:05 7580 /dev/dri/card0
7fa20ed49000-7fa20ed55000 rw-s 1543b4000 00:05 7580 /dev/dri/card0
7fa20ed55000-7fa20ed57000 rw-s 00000000 00:04 155435 /drm mm object (deleted)
7fa20ed57000-7fa20ed63000 rw-s 1543a8000 00:05 7580 /dev/dri/card0
7fa20ed63000-7fa20ed6f000 rw-s 15439c000 00:05 7580 /dev/dri/card0
7fa20ed6f000-7fa20ed7b000 rw-s 154390000 00:05 7580 /dev/dri/card0
7fa20ed7b000-7fa20ed87000 rw-s 154384000 00:05 7580 /dev/dri/card0
7fa20ed87000-7fa20ed93000 rw-s 154378000 00:05 7580 /dev/dri/card0
7fa20ed93000-7fa20ed9f000 rw-s 15436c000 00:05 7580 /dev/dri/card0
7fa20ed9f000-7fa20edab000 rw-s 154360000 00:05 7580 /dev/dri/card0
7fa20edab000-7fa20edb7000 rw-s 154354000 00:05 7580 /dev/dri/card0
7fa20edb7000-7fa20edc3000 rw-s 154348000 00:05 7580 /dev/dri/card0
7fa20edc3000-7fa20edcf000 rw-s 15433c000 00:05 7580 /dev/dri/card0
7fa20edcf000-7fa20eddb000 rw-s 154330000 00:05 7580 /dev/dri/card0
7fa20eddb000-7fa20ede7000 rw-s 154324000 00:05 7580 /dev/dri/card0
7fa20ede7000-7fa20edf3000 rw-s 154318000 00:05 7580 /dev/dri/card0
7fa20edf3000-7fa20edff000 rw-s 15430c000 00:05 7580 /dev/dri/card0
7fa20edff000-7fa20ee0b000 rw-s 154300000 00:05 7580 /dev/dri/card0
7fa20ee0b000-7fa20ee17000 rw-s 1542f4000 00:05 7580 /dev/dri/card0
7fa20ee17000-7fa20ee23000 rw-s 1542e8000 00:05 7580 /dev/dri/card0
7fa20ee23000-7fa20ee2f000 rw-s 1542dc000 00:05 7580 /dev/dri/card0
7fa20ee2f000-7fa20ee3b000 rw-s 1542d0000 00:05 7580 /dev/dri/card0
7fa20ee3b000-7fa20ee47000 rw-s 1542c4000 00:05 7580 /dev/dri/card0
7fa20ee47000-7fa20ee53000 rw-s 1542b8000 00:05 7580 /dev/dri/card0
7fa20ee53000-7fa20ee5f000 rw-s 1542ac000 00:05 7580 /dev/dri/card0
7fa20ee5f000-7fa20ee6b000 rw-s 1542a0000 00:05 7580 /dev/dri/card0
7fa20ee6b000-7fa20ee77000 rw-s 154294000 00:05 7580 /dev/dri/card0
7fa20ee77000-7fa20ee83000 rw-s 154288000 00:05 7580 /dev/dri/card0
7fa20ee83000-7fa20ee8f000 rw-s 15427c000 00:05 7580 /dev/dri/card0
7fa20ee8f000-7fa20ee9b000 rw-s 154270000 00:05 7580 /dev/dri/card0
7fa20ee9b000-7fa20eea7000 rw-s 154264000 00:05 7580 /dev/dri/card0
7fa20eea7000-7fa20eeb3000 rw-s 154258000 00:05 7580 /dev/dri/card0
7fa20eeb3000-7fa20eeb5000 rw-s 00000000 00:04 155405 /drm mm object (deleted)
7fa20eeb5000-7fa20eec1000 rw-s 15424c000 00:05 7580 /dev/dri/card0
7fa20eec1000-7fa20eecd000 rw-s 154240000 00:05 7580 /dev/dri/card0
7fa20eecd000-7fa20eed9000 rw-s 154234000 00:05 7580 /dev/dri/card0
7fa20eed9000-7fa20eedb000 rw-s 00000000 00:04 155401 /drm mm object (deleted)
7fa20eedb000-7fa20eedd000 rw-s 00000000 00:04 155400 /drm mm object (deleted)
7fa20eedd000-7fa20eee9000 rw-s 154228000 00:05 7580 /dev/dri/card0
7fa20eee9000-7fa20eef5000 rw-s 13081c000 00:05 7580 /dev/dri/card0
7fa20eef5000-7fa20ef01000 rw-s 130810000 00:05 7580 /dev/dri/card0
7fa20ef01000-7fa20ef0d000 rw-s 130804000 00:05 7580 /dev/dri/card0
7fa20ef0d000-7fa20ef19000 rw-s 1307f8000 00:05 7580 /dev/dri/card0
7fa20ef19000-7fa20ef1b000 rw-s 00000000 00:04 155394 /drm mm object (deleted)
7fa20ef1b000-7fa20ef27000 rw-s 1307ec000 00:05 7580 /dev/dri/card0
7fa20ef27000-7fa20ef33000 rw-s 1307e0000 00:05 7580 /dev/dri/card0
7fa20ef33000-7fa20ef3f000 rw-s 151505000 00:05 7580 /dev/dri/card0
7fa20ef3f000-7fa20ef4b000 rw-s 1514f9000 00:05 7580 /dev/dri/card0
7fa20ef4b000-7fa20ef57000 rw-s 1514ed000 00:05 7580 /dev/dri/card0
7fa20ef57000-7fa20ef63000 rw-s 131073000 00:05 7580 /dev/dri/card0
7fa20ef63000-7fa20ef6f000 rw-s 131067000 00:05 7580 /dev/dri/card0
7fa20ef6f000-7fa20ef71000 rw-s 00000000 00:04 155386 /drm mm object (deleted)
7fa20ef71000-7fa20ef7d000 rw-s 13105b000 00:05 7580 /dev/dri/card0
7fa20ef7d000-7fa20ef89000 rw-s 13104f000 00:05 7580 /dev/dri/card0
7fa20ef89000-7fa20ef95000 rw-s 131043000 00:05 7580 /dev/dri/card0
7fa20ef95000-7fa20ef97000 rw-s 00000000 00:04 155382 /drm mm object (deleted)
7fa20ef97000-7fa20efa3000 rw-s 131037000 00:05 7580 /dev/dri/card0
7fa20efa3000-7fa20efaf000 rw-s 13102b000 00:05 7580 /dev/dri/card0
7fa20efaf000-7fa20efbb000 rw-s 13101f000 00:05 7580 /dev/dri/card0
7fa20efbb000-7fa20efc7000 rw-s 1647d4000 00:05 7580 /dev/dri/card0
7fa20efc7000-7fa20efd3000 rw-s 1647c8000 00:05 7580 /dev/dri/card0
7fa20efd3000-7fa20efdf000 rw-s 1647bc000 00:05 7580 /dev/dri/card0
7fa20efdf000-7fa20efeb000 rw-s 1647b0000 00:05 7580 /dev/dri/card0
7fa20efeb000-7fa20eff7000 rw-s 1647a4000 00:05 7580 /dev/dri/card0
7fa20eff7000-7fa20f003000 rw-s 164798000 00:05 7580 /dev/dri/card0
7fa20f003000-7fa20f00f000 rw-s 16478c000 00:05 7580 /dev/dri/card0
7fa20f00f000-7fa20f01b000 rw-s 164780000 00:05 7580 /dev/dri/card0
7fa20f01b000-7fa20f027000 rw-s 164774000 00:05 7580 /dev/dri/card0
7fa20f027000-7fa20f033000 rw-s 164768000 00:05 7580 /dev/dri/card0
7fa20f033000-7fa20f03f000 rw-s 16475c000 00:05 7580 /dev/dri/card0
7fa20f03f000-7fa20f04b000 rw-s 164750000 00:05 7580 /dev/dri/card0
7fa20f04b000-7fa20f057000 rw-s 164744000 00:05 7580 /dev/dri/card0
7fa20f057000-7fa20f063000 rw-s 164738000 00:05 7580 /dev/dri/card0
7fa20f063000-7fa20f06f000 rw-s 16472c000 00:05 7580 /dev/dri/card0
7fa20f06f000-7fa20f07b000 rw-s 164720000 00:05 7580 /dev/dri/card0
7fa20f07b000-7fa20f087000 rw-s 164714000 00:05 7580 /dev/dri/card0
7fa20f087000-7fa20f093000 rw-s 164708000 00:05 7580 /dev/dri/card0
7fa20f093000-7fa20f095000 rw-s 00000000 00:04 155360 /drm mm object (deleted)
7fa20f095000-7fa20f0a1000 rw-s 1646fc000 00:05 7580 /dev/dri/card0
7fa20f0a1000-7fa20f0ad000 rw-s 1646f0000 00:05 7580 /dev/dri/card0
7fa20f0ad000-7fa20f0b9000 rw-s 1646e4000 00:05 7580 /dev/dri/card0
7fa20f0b9000-7fa20f0bb000 rw-s 00000000 00:04 155356 /drm mm object (deleted)
7fa20f0bb000-7fa20f0c7000 rw-s 1646d8000 00:05 7580 /dev/dri/card0
7fa20f0c7000-7fa20f0d3000 rw-s 1646cc000 00:05 7580 /dev/dri/card0
7fa20f0d3000-7fa20f0df000 rw-s 1646c0000 00:05 7580 /dev/dri/card0
7fa20f0df000-7fa20f0eb000 rw-s 1646b4000 00:05 7580 /dev/dri/card0
7fa20f0eb000-7fa20f0ed000 rw-s 00000000 00:04 155351 /drm mm object (deleted)
7fa20f0ed000-7fa20f0f9000 rw-s 1646a8000 00:05 7580 /dev/dri/card0
7fa20f0f9000-7fa20f105000 rw-s 16469c000 00:05 7580 /dev/dri/card0
7fa20f105000-7fa20f111000 rw-s 164690000 00:05 7580 /dev/dri/card0
7fa20f111000-7fa20f11d000 rw-s 164684000 00:05 7580 /dev/dri/card0
7fa20f11d000-7fa20f129000 rw-s 164678000 00:05 7580 /dev/dri/card0
7fa20f129000-7fa20f135000 rw-s 16466c000 00:05 7580 /dev/dri/card0
7fa20f135000-7fa20f141000 rw-s 164660000 00:05 7580 /dev/dri/card0
7fa20f141000-7fa20f14d000 rw-s 164654000 00:05 7580 /dev/dri/card0
7fa20f14d000-7fa20f159000 rw-s 164648000 00:05 7580 /dev/dri/card0
7fa20f159000-7fa20f165000 rw-s 16463c000 00:05 7580 /dev/dri/card0
7fa20f165000-7fa20f166000 rw-s 00000000 00:04 155340 /drm mm object (deleted)
7fa20f166000-7fa20f172000 rw-s 164630000 00:05 7580 /dev/dri/card0
7fa20f172000-7fa20f174000 rw-s 00000000 00:04 155338 /drm mm object (deleted)
7fa20f174000-7fa20f180000 rw-s 164624000 00:05 7580 /dev/dri/card0
7fa20f180000-7fa20f182000 rw-s 00000000 00:04 155336 /drm mm object (deleted)
7fa20f182000-7fa20f18e000 rw-s 164618000 00:05 7580 /dev/dri/card0
7fa20f18e000-7fa20f19a000 rw-s 16460c000 00:05 7580 /dev/dri/card0
7fa20f19a000-7fa20f1a6000 rw-s 164600000 00:05 7580 /dev/dri/card0
7fa20f1a6000-7fa20f1b2000 rw-s 1645f4000 00:05 7580 /dev/dri/card0
7fa20f1b2000-7fa20f1be000 rw-s 1645e8000 00:05 7580 /dev/dri/card0
7fa20f1be000-7fa20f1ca000 rw-s 1645dc000 00:05 7580 /dev/dri/card0
7fa20f1ca000-7fa20f1d6000 rw-s 1645d0000 00:05 7580 /dev/dri/card0
7fa20f1d6000-7fa20f1e2000 rw-s 1645c4000 00:05 7580 /dev/dri/card0
7fa20f1e2000-7fa20f1ee000 rw-s 1645b8000 00:05 7580 /dev/dri/card0
7fa20f1ee000-7fa20f1fa000 rw-s 1645ac000 00:05 7580 /dev/dri/card0
7fa20f1fa000-7fa20f206000 rw-s 1645a0000 00:05 7580 /dev/dri/card0
7fa20f206000-7fa20f212000 rw-s 164594000 00:05 7580 /dev/dri/card0
7fa20f212000-7fa20f213000 rw-s 00000000 00:04 155322 /drm mm object (deleted)
7fa20f213000-7fa20f215000 rw-s 00000000 00:04 155321 /drm mm object (deleted)
7fa20f215000-7fa20f221000 rw-s 164588000 00:05 7580 /dev/dri/card0
7fa20f221000-7fa20f22d000 rw-s 16457c000 00:05 7580 /dev/dri/card0
7fa20f22d000-7fa20f239000 rw-s 164570000 00:05 7580 /dev/dri/card0
7fa20f239000-7fa20f245000 rw-s 164564000 00:05 7580 /dev/dri/card0
7fa20f245000-7fa20f251000 rw-s 164558000 00:05 7580 /dev/dri/card0
7fa20f251000-7fa20f25d000 rw-s 16454c000 00:05 7580 /dev/dri/card0
7fa20f25d000-7fa20f269000 rw-s 164540000 00:05 7580 /dev/dri/card0
7fa20f269000-7fa20f26b000 rw-s 00000000 00:04 155313 /drm mm object (deleted)
7fa20f26b000-7fa20f277000 rw-s 164534000 00:05 7580 /dev/dri/card0
7fa20f277000-7fa20f283000 rw-s 164528000 00:05 7580 /dev/dri/card0
7fa20f283000-7fa20f28f000 rw-s 16451c000 00:05 7580 /dev/dri/card0
7fa20f28f000-7fa20f291000 rw-s 00000000 00:04 155309 /drm mm object (deleted)
7fa20f291000-7fa20f2a1000 rw-s 16450c000 00:05 7580 /dev/dri/card0
7fa20f2a1000-7fa20f2b9000 rw-s 1644f4000 00:05 7580 /dev/dri/card0
7fa20f2b9000-7fa20f2bc000 rw-s 00000000 00:04 155306 /drm mm object (deleted)
7fa20f2bc000-7fa20f2cc000 rw-s 1644e4000 00:05 7580 /dev/dri/card0
7fa20f2cc000-7fa20f2e4000 rw-s 1644cc000 00:05 7580 /dev/dri/card0
7fa20f2e4000-7fa20f2e7000 rw-s 00000000 00:04 155304 /drm mm object (deleted)
7fa20f2e7000-7fa20f2ff000 rw-s 1644b4000 00:05 7580 /dev/dri/card0
7fa20f2ff000-7fa20f317000 rw-s 16449c000 00:05 7580 /dev/dri/card0
7fa20f317000-7fa20f32f000 rw-s 164484000 00:05 7580 /dev/dri/card0
7fa20f32f000-7fa20f347000 rw-s 16446c000 00:05 7580 /dev/dri/card0
7fa20f347000-7fa20f34d000 rw-s 164466000 00:05 7580 /dev/dri/card0
7fa20f34d000-7fa20f353000 rw-s 164460000 00:05 7580 /dev/dri/card0
7fa20f353000-7fa20f3d3000 rw-s 1643e0000 00:05 7580 /dev/dri/card0
7fa20f3d3000-7fa20f3d9000 rw-s 1643da000 00:05 7580 /dev/dri/card0
7fa20f3d9000-7fa20f3e7000 rw-s 1643cc000 00:05 7580 /dev/dri/card0
7fa20f3e7000-7fa20f3ed000 rw-s 1643c6000 00:05 7580 /dev/dri/card0
7fa20f3ed000-7fa20f3f3000 rw-s 1643c0000 00:05 7580 /dev/dri/card0
7fa20f3f3000-7fa20f3f9000 rw-s 1643ba000 00:05 7580 /dev/dri/card0
7fa20f3f9000-7fa20f407000 rw-s 1643ac000 00:05 7580 /dev/dri/card0
7fa20f407000-7fa20f40d000 rw-s 1643a6000 00:05 7580 /dev/dri/card0
7fa20f40d000-7fa20f41b000 rw-s 164398000 00:05 7580 /dev/dri/card0
7fa20f41b000-7fa20f421000 rw-s 164392000 00:05 7580 /dev/dri/card0
7fa20f421000-7fa20f459000 rw-s 16435a000 00:05 7580 /dev/dri/card0
7fa20f459000-7fa20f45c000 rw-s 00000000 00:04 155286 /drm mm object (deleted)
7fa20f45c000-7fa20f49c000 rw-s 16431a000 00:05 7580 /dev/dri/card0
7fa20f49c000-7fa20f4a2000 rw-s 164314000 00:05 7580 /dev/dri/card0
7fa20f4a2000-7fa20f4ca000 rw-s 1642ec000 00:05 7580 /dev/dri/card0
7fa20f4ca000-7fa20f4d0000 rw-s 1642e6000 00:05 7580 /dev/dri/card0
7fa20f4d0000-7fa20f4d6000 rw-s 1642e0000 00:05 7580 /dev/dri/card0
7fa20f4d6000-7fa20f4dc000 rw-s 1642da000 00:05 7580 /dev/dri/card0
7fa20f4dc000-7fa20f4e2000 rw-s 1642d4000 00:05 7580 /dev/dri/card0
7fa20f4e2000-7fa20f4e8000 rw-s 1642ce000 00:05 7580 /dev/dri/card0
7fa20f4e8000-7fa20f4ee000 rw-s 1642c8000 00:05 7580 /dev/dri/card0
7fa20f4ee000-7fa20f4f1000 rw-s 00000000 00:04 155276 /drm mm object (deleted)
7fa20f4f1000-7fa20f4f7000 rw-s 1642c2000 00:05 7580 /dev/dri/card0
7fa20f4f7000-7fa20f4fd000 rw-s 1642bc000 00:05 7580 /dev/dri/card0
7fa20f4fd000-7fa20f503000 rw-s 1642b6000 00:05 7580 /dev/dri/card0
7fa20f503000-7fa20f509000 rw-s 1642b0000 00:05 7580 /dev/dri/card0
7fa20f509000-7fa20f517000 rw-s 1642a2000 00:05 7580 /dev/dri/card0
7fa20f517000-7fa20f51d000 rw-s 16429c000 00:05 7580 /dev/dri/card0
7fa20f51d000-7fa20f523000 rw-s 164296000 00:05 7580 /dev/dri/card0
7fa20f523000-7fa20f526000 rw-s 00000000 00:04 155268 /drm mm object (deleted)
7fa20f526000-7fa20f52c000 rw-s 164290000 00:05 7580 /dev/dri/card0
7fa20f52c000-7fa20f52f000 rw-s 00000000 00:04 155266 /drm mm object (deleted)
7fa20f52f000-7fa20f535000 rw-s 16428a000 00:05 7580 /dev/dri/card0
7fa20f535000-7fa20f538000 rw-s 00000000 00:04 155264 /drm mm object (deleted)
7fa20f538000-7fa20f53e000 rw-s 164284000 00:05 7580 /dev/dri/card0
7fa20f53e000-7fa20f541000 rw-s 00000000 00:04 155262 /drm mm object (deleted)
7fa20f541000-7fa20f579000 rw-s 16424c000 00:05 7580 /dev/dri/card0
7fa20f579000-7fa20f57b000 rw-s 00000000 00:04 155260 /drm mm object (deleted)
7fa20f57b000-7fa20f57d000 rw-s 00000000 00:04 155259 /drm mm object (deleted)
7fa20f57d000-7fa20f57f000 rw-s 00000000 00:04 155258 /drm mm object (deleted)
7fa20f57f000-7fa20f581000 rw-s 00000000 00:04 155257 /drm mm object (deleted)
7fa20f581000-7fa20f58f000 rw-s 16423e000 00:05 7580 /dev/dri/card0
7fa20f58f000-7fa20f591000 rw-s 00000000 00:04 155255 /drm mm object (deleted)
7fa20f591000-7fa20f593000 rw-s 00000000 00:04 155254 /drm mm object (deleted)
7fa20f593000-7fa20f595000 rw-s 00000000 00:04 155253 /drm mm object (deleted)
7fa20f595000-7fa20f597000 rw-s 00000000 00:04 155252 /drm mm object (deleted)
7fa20f597000-7fa20f599000 rw-s 00000000 00:04 155251 /drm mm object (deleted)
7fa20f599000-7fa20f59b000 rw-s 00000000 00:04 155250 /drm mm object (deleted)
7fa20f59b000-7fa20f59d000 rw-s 00000000 00:04 155249 /drm mm object (deleted)
7fa20f59d000-7fa20f59f000 rw-s 00000000 00:04 155248 /drm mm object (deleted)
7fa20f59f000-7fa20f5a1000 rw-s 00000000 00:04 155247 /drm mm object (deleted)
7fa20f5a1000-7fa20f5a3000 rw-s 00000000 00:04 155246 /drm mm object (deleted)
7fa20f5a3000-7fa20f5a5000 rw-s 00000000 00:04 155245 /drm mm object (deleted)
7fa20f5a5000-7fa20f5a7000 rw-s 00000000 00:04 155244 /drm mm object (deleted)
7fa20f5a7000-7fa20f5a9000 rw-s 00000000 00:04 155243 /drm mm object (deleted)
7fa20f5a9000-7fa20f5ab000 rw-s 00000000 00:04 155242 /drm mm object (deleted)
7fa20f5ab000-7fa20f5b7000 rw-s 164232000 00:05 7580 /dev/dri/card0./FTL: line 8: 24144 Aborted (core dumped) ./FTL "$@"
username@username:~/.local/share/Steam/SteamApps/common/FTL Faster Than Light$
edit: the 0.4.3 version works without any problems. I'll just use that one.
-
- Posts: 390
- Joined: Thu Mar 28, 2013 1:44 am
Re: [MOD][WIP] FTL Infinite Space
A belated thanks for this mod.
I encountered an error in the prison event. Having played a few times, I tried a different option than I had before, choosing to let the prisoners go for 50 scrap, in part because I only had 1 scrap. They left as if I had given them the payoff, though I didn't have enough (and nothing was deducted).
Also there's a typo/wrong word use in the event "You arrive at a jump beacon, and your sensors pick up a destroyed Starship." In the options "wreak" is used, when it should be "wreck." This also occurs in a later dialog box. (Oh, and why is "Starship" capitalized?)
I encountered an error in the prison event. Having played a few times, I tried a different option than I had before, choosing to let the prisoners go for 50 scrap, in part because I only had 1 scrap. They left as if I had given them the payoff, though I didn't have enough (and nothing was deducted).
Also there's a typo/wrong word use in the event "You arrive at a jump beacon, and your sensors pick up a destroyed Starship." In the options "wreak" is used, when it should be "wreck." This also occurs in a later dialog box. (Oh, and why is "Starship" capitalized?)
-
- Posts: 4
- Joined: Sun Apr 28, 2013 3:02 am
Re: [MOD][WIP] FTL Infinite Space
hi my in game sound isn't working after installing this. nvm my sound works fine. I was just wondering if there is any way to have the background changed for each sector? it is kind of lame jumping to the same milky way background the whole time. BTW this mod is awesome, it's like a totally different game!
-
- Posts: 245
- Joined: Mon Oct 08, 2012 4:24 pm
Re: [MOD][WIP] FTL Infinite Space
Infinite Space update
I don't want to leave this mod in an unfinished state, but my interest in FTL itself has diminished. It's a great game, and I enjoyed working on the mod, but I need to move on to other things. I'm going to spend the next 2 weeks supporting this mod, and working towards a finished version. When Overdrive is complete, this mod will likely be overshadowed with other awesome mods that can accomplish unlimited play through with more features, and a better implementation. I did the best that I could with the limitations of XML modding for this game, and I hope people enjoyed their time with Infinite Space.
First I will try and get a version that works on other operating systems. I only have windows, so I will need to rely on other people's feedback, and help to get this to work on a different OS. I've had guesses that the issue was due to the different encoding being used. The files unpacked with ftldat were in UTF-8, while Mod Manager seemed to require ANSI. All previous version of Infinite Space had a mix of these, where I used ANSI on .append files. A mistake on my part. Going forward they will all be in ANSI, in hopes that this will eliminate any issue during the re-packing of these files by the Mod Manager. Additionally the mod files themselves will be cleaned up, and I will be removing any unnecessary xml code. This could help eliminate crash issues while playing the mod, while providing a smaller code base for searching for issue in the future. Bonnie Lass has taken the time to go through the mod files and eliminate formatting issues. Thank you Bonnie Lass!! Ironically some of these issues were present in the original files. I'm not sure if this was due to ftldat or not. Either way, this will help work towards a more stable build.
I've put together a first version towards this cleaned up code. I've only tested installing it through the mod manager, and launching the game, starting new, and jumping to the first beacon. As stated above, I've started to eliminate unnecessary xml code in the mod files, this means certain events may crash the game, or fail in some way. It's going to take some time to get through testing the events. Basically I'm "starting" over in a sense. Additionally there will be Rebel references that have returned. I will have to find those events, and re-add them back into the mod files as needed. Ultimately I think this is the right approach for a more stable mod. If anyone is interested in helping to test these builds, that would be awesome! I'm going to provide the links in the thread itself, as oppose to the main post because they are likely to be buggy for awhile. As soon as we start to see a stable version I'll update the main post. Anyone that has installation issues, I ask that you please try this version... if only to see if you can install the mod and start a new game without issues. That's the primary purpose of the re-make of these mod files.
Here is the link to the latest TEST build...
Test v0.5
If I can get a stable version of the mod working, I'll finish up the optional quest line that Whoopty has worked on, and fix non-crash related bugs as well.
I don't want to leave this mod in an unfinished state, but my interest in FTL itself has diminished. It's a great game, and I enjoyed working on the mod, but I need to move on to other things. I'm going to spend the next 2 weeks supporting this mod, and working towards a finished version. When Overdrive is complete, this mod will likely be overshadowed with other awesome mods that can accomplish unlimited play through with more features, and a better implementation. I did the best that I could with the limitations of XML modding for this game, and I hope people enjoyed their time with Infinite Space.
First I will try and get a version that works on other operating systems. I only have windows, so I will need to rely on other people's feedback, and help to get this to work on a different OS. I've had guesses that the issue was due to the different encoding being used. The files unpacked with ftldat were in UTF-8, while Mod Manager seemed to require ANSI. All previous version of Infinite Space had a mix of these, where I used ANSI on .append files. A mistake on my part. Going forward they will all be in ANSI, in hopes that this will eliminate any issue during the re-packing of these files by the Mod Manager. Additionally the mod files themselves will be cleaned up, and I will be removing any unnecessary xml code. This could help eliminate crash issues while playing the mod, while providing a smaller code base for searching for issue in the future. Bonnie Lass has taken the time to go through the mod files and eliminate formatting issues. Thank you Bonnie Lass!! Ironically some of these issues were present in the original files. I'm not sure if this was due to ftldat or not. Either way, this will help work towards a more stable build.
I've put together a first version towards this cleaned up code. I've only tested installing it through the mod manager, and launching the game, starting new, and jumping to the first beacon. As stated above, I've started to eliminate unnecessary xml code in the mod files, this means certain events may crash the game, or fail in some way. It's going to take some time to get through testing the events. Basically I'm "starting" over in a sense. Additionally there will be Rebel references that have returned. I will have to find those events, and re-add them back into the mod files as needed. Ultimately I think this is the right approach for a more stable mod. If anyone is interested in helping to test these builds, that would be awesome! I'm going to provide the links in the thread itself, as oppose to the main post because they are likely to be buggy for awhile. As soon as we start to see a stable version I'll update the main post. Anyone that has installation issues, I ask that you please try this version... if only to see if you can install the mod and start a new game without issues. That's the primary purpose of the re-make of these mod files.
Here is the link to the latest TEST build...
Test v0.5
If I can get a stable version of the mod working, I'll finish up the optional quest line that Whoopty has worked on, and fix non-crash related bugs as well.
-
- Posts: 390
- Joined: Thu Mar 28, 2013 1:44 am
Re: [MOD][WIP] FTL Infinite Space
I encountered a bug where I kept getting an augment at a beacon. I think it was the Scrap Recovery Arm, but I didn't remember what it was from the first time I went there, as I fought battles, then happened to go back to that same star. I had the Auto Reloader, Scrap Recovery Arm and Weapon Pre-Igniter, and when I revisited the beacon, I got the message that I already have the augment, so it was broken down for 27 scrap. I went back a couple more times to verify, and the event was indeed still active.
-
- Posts: 138
- Joined: Thu Mar 28, 2013 9:56 am
Re: [MOD][WIP] FTL Infinite Space
I can't uninstall the mod from the game!!!
I can't even see it in my mods folder!!!
