Page 16 of 127

Re: Questions here: an inquiry thread!

Posted: Wed Apr 09, 2014 10:29 am
by R4V3-0N
Hi, I'm back from being homeless for a short week and a bunch of other stuff.

I see Advance Edition is out.

Can someone tell me if 0x0 and 1x1 rooms still work? I hear a reasonable amount of people saying this or that makes the game crash now. I need to know this before I move on with my next ship as it kind of relies on this.

Please and thank you for the answer.

Re: Questions here: an inquiry thread!

Posted: Wed Apr 09, 2014 12:32 pm
by kartoFlane
0x0 don't work. No idea about 1x1, but I suppose they should work.

Re: Questions here: an inquiry thread!

Posted: Thu Apr 10, 2014 11:52 am
by Zimplizity
Hey there,

I've got a problem with FTLEdit and my custom ship. So my question is:

How do I get the rooms to lay over the ship image ingame like I did in FTL Edit? Because I created all the rooms and doors in FTL Edit but when I open up FTL the position of the room layout and the ship are completetly wrong.

example image: http://i.imgur.com/fgCfx4O.jpg

Re: Questions here: an inquiry thread!

Posted: Thu Apr 10, 2014 2:09 pm
by kartoFlane
IIRC this is an issue with FTLEdit, the hull image offset is calculated incorrectly. You could try using my editor -- though it's not updated to AE yet, it should work just fine for that purpose, you'll just have to add the <offsets> tag to the exported .xml layout file.

Other than that, you could try fixing that manually, which would be much faster than installing a 3rd party tool. You'll have to look at your ship's .xml layout file (its syntax is described here), and change the x and y values in the <img> tag until the hull is positioned correctly.

Re: Questions here: an inquiry thread!

Posted: Thu Apr 10, 2014 2:50 pm
by Jaggedmallard
Does anyone know what the XML tag is for all of the Flak weapons for use in blue events, I think its along the lines of SHOTGUN but I'm not sure which one is correct.

Re: Questions here: an inquiry thread!

Posted: Thu Apr 10, 2014 3:43 pm
by kartoFlane
@Jaggedmallard
Do you mean the <type>? IIRC it's BURST.

Re: Questions here: an inquiry thread!

Posted: Thu Apr 10, 2014 4:00 pm
by Jaggedmallard
Yup, thats what I was looking for. I was unsure which one to use as all of the weapon names have "SHOTGUN" and the BURST confused me. Thanks for the help.

Re: Questions here: an inquiry thread!

Posted: Fri Apr 11, 2014 11:49 pm
by Vennobennu
Is there any way to change how frequently a Shield Overcharger drone adds supershield pips? The Cooldown and Speed tags don't have any effect in this sense.

(My idea is to make the Simo-H's starter drone more powerful to make up for the lack of cloak or shields)

Re: Questions here: an inquiry thread!

Posted: Sat Apr 12, 2014 12:00 am
by Sleeper Service
I'm pretty sure the cool-downs is effecting it... Try these two, they should generate shields in different frequencies:

Code: Select all

<droneBlueprint name="DE_DRONE_SHIELD_BIG">
	<type>SHIELD</type>
	<level>1</level>
	<tip>tip_defense</tip>
	<title>Shield Overcharger Mark III</title>
	<short>Shield III</short>
	<desc>Advanced defensive drone that quickly creates Supershield barriers.</desc>
	<power>4</power>
	<cooldown>12000</cooldown> 
	<dodge>0</dodge>
	<speed>3</speed> 
	<cost>80</cost>
	<bp>2</bp>
	<droneImage>drone_shield</droneImage>
	<rarity>5</rarity>
	<iconImage>shield</iconImage>
</droneBlueprint>

<droneBlueprint name="DE_DRONE_SHIELD_SMALL">
	<type>SHIELD</type>
	<level>1</level>
	<tip>tip_defense</tip>
	<title>Shield Overcharger Mark I</title>
	<short>Shield I</short>
	<desc>Creates single Supershield barrier periodically.</desc>
	<power>2</power>
	<cooldown>23000</cooldown> 
	<dodge>1</dodge>
	<speed>9</speed> 
	<cost>50</cost>
	<bp>2</bp>
	<droneImage>drone_shield</droneImage>
	<rarity>3</rarity>
	<iconImage>shield</iconImage>
</droneBlueprint>

Re: Questions here: an inquiry thread!

Posted: Sun Apr 13, 2014 2:00 am
by R4V3-0N
what does <flavorType> and <tip> in the weapons blueprints?

is <tip> the same as <tooltip> ?

Edit: and under <boost> and stuff.

when the type is damage, does it increase regular damage? or if your weapon is like an ion or bomb does it just buff the damage of the damage you have selected? ie. system, ion, personal, etc.