Weapon Configuration Information

Freeform discussion about anything related to modding Transcendence.
Post Reply
User avatar
Karl
Militia Lieutenant
Militia Lieutenant
Posts: 219
Joined: Fri Jul 14, 2006 11:47 pm

While making my weapon mods, I looked at the standard weapon configurations (dual, spread3, etc.) and determined which custom configurations would have the same effect.

Figured some people might find this useful.

Code: Select all

<!-- configuration="dual" -->
<Configuration> 
	<Shot posAngle="90" posRadius="12" angle="0"/>
	<Shot posAngle="-90" posRadius="12" angle="0"/>
</Configuration>

<!-- configuration="spread3" = 10 degree spread (-5, 0, 5) -->
<Configuration> 
	<Shot posAngle="0" posRadius="0" angle="-5"/>
	<Shot posAngle="0" posRadius="0" angle="0"/>
	<Shot posAngle="0" posRadius="0" angle="5"/>
</Configuration>

<!-- configuration="spread5" = 10 degree spread (-5, -2, 0, 2, 5) -->
<Configuration> 
	<Shot posAngle="0" posRadius="0" angle="-5"/>
	<Shot posAngle="0" posRadius="0" angle="-2"/>
	<Shot posAngle="0" posRadius="0" angle="0"/>
	<Shot posAngle="0" posRadius="0" angle="2"/>
	<Shot posAngle="0" posRadius="0" angle="5"/>
</Configuration>

<!-- configuration="wall" -->
<Configuration> 
	<Shot posAngle="90" posRadius="24" angle="0"/>
	<Shot posAngle="90" posRadius="12" angle="0"/>
	<Shot posAngle="0" posRadius="0" angle="0"/>
	<Shot posAngle="-90" posRadius="12" angle="0"/>
	<Shot posAngle="-90" posRadius="24" angle="0"/>
</Configuration>
~
[Grabs a box of batteries.] The power is mine! MINE! Ah hahaha! AHHHH HAHAHA!
Yugi
Fleet Officer
Fleet Officer
Posts: 1027
Joined: Sun Mar 05, 2006 8:21 am

Heh, those are handy, though the spreads are already well-known.
Post Reply