Bug with TypCreate?

Bug reports for the different beta versions of transcendence.
Post Reply
RPC
Fleet Admiral
Fleet Admiral
Posts: 2876
Joined: Thu Feb 03, 2011 5:21 am
Location: Hmm... I'm confused. Anybody have a starmap to the Core?

Is there a limit to the amount of characters in TypCreate?
I tried this:

Code: Select all

					<ItemType 
							name=				" RPC repeater "
							level=				"1"
							value=				"1458"
							mass=				"3292"
							frequency=			"common"
							attributes=			"RPC"

							description=		"This is a weapon."
							>

						<Image imageID="&rsItemsNAMI1;" imageX="96" imageY="192" imageWidth="96" imageHeight="96"/>

						<Weapon
								type=				"missile"

								damage=				"blast:4d7+1;"
								fireRate=			"42"
								missileSpeed=		"81"
								interaction=		"91"
								lifetime=			"90"
								powerUse=			"0"
								
								repeating=			"0"

								sound=				"&snRecoillessCannon;"
								>
				
			
				
			<Configuration aimTolerance="5">
				<Shot angle="3d5-9"/>
			</Configuration>
				
			
				
				<Effect>
					<Bolt
							length=				"40"
							width=				"4"
							primaryColor=		"0xcd, 0xf3, 0xff"
							secondaryColor=		"0x8f, 0xa9, 0xb2"
							/>
				</Effect>
				
			
				
						</Weapon>
					</ItemType>
This one, however, works:

Code: Select all

				<ItemType 
							name=				" RPC repeater "
							level=				"1"
							value=				"1720"
							mass=				"2138"
							frequency=			"uncommon"
							attributes=			"RPC"

							description=		"This is a weapon."
							>

						<Image imageID="&rsItemsNAMI1;" imageX="96" imageY="192" imageWidth="96" imageHeight="96"/>

						<Weapon
								type=				"missile"

								damage=				"blast:4d5+2;"
								fireRate=			"29"
								missileSpeed=		"86"
								interaction=		"96"
								lifetime=			"100"
								powerUse=			"0"
								
								repeating=			"0"

								sound=				"&snRecoillessCannon;"
								>
			
				<Configuration aimTolerance="5">
				<Shot angle="3d5-9"/>
			</Configuration>
			
				<Effect>
					<Bolt
							length=				"40"
							width=				"4"
							primaryColor=		"0xcd, 0xf3, 0xff"
							secondaryColor=		"0x8f, 0xa9, 0xb2"
							/>
				</Effect>
			
				</Weapon>
					</ItemType>
Any ideas?
Tutorial List on the Wiki and Installing Mods
Get on Discord for mod help and general chat
Image
Image
Der Tod ist der zeitlose Frieden und das leben ist der Krieg
Wir müssen wissen — wir werden wissen!
I don't want any sort of copyright on my Transcendence mods. Feel free to take/modify whatever you want.
User avatar
digdug
Fleet Admiral
Fleet Admiral
Posts: 2620
Joined: Mon Oct 29, 2007 9:23 pm
Location: Decoding hieroglyphics on Tan-Ru-Dorem

so, you removed 4 whitespaces lines and typCreate worked ?
you have 1585 chars in the first and 1507 in the second.
Post Reply