Why??? Darn you Eridani!

Freeform discussion about anything related to modding Transcendence.
Post Reply
User avatar
ThePrivateer
Militia Captain
Militia Captain
Posts: 943
Joined: Tue Oct 12, 2010 5:12 am
Location: Starton Australia

So, I'm working on adding to my GodMod (see below), but I've hit a snag.

I want to add a second stargate to Eridani, that will go to Elysium, but I also want it to be just an Extension, so it is a mod, not an overhaul/adventure like Hell's Trinity.

I copied>pasted Eridani.xml into my file and then added these lines of code:

Code: Select all

<SystemTopology>
<Node ID="SE" rootNode="true">
    <System 
	name=			"Eridani"
	level=			"1"
	attributes=		"newBeyond"
	>
	<System UNID="&ssStartonEridani;"/>
	</System>

	<StarGates>
	<StarGate Name="Outbound" DestID="C1" DestGate="Inbound"/>
	<StarGate Name="Elysium" DestID="Elysium" DestGate="Inbound"/>
	</StarGates>
</Node>
</SystemTopology>
I added the above just before the definition for the Eridani system.
Then, I added this to the Domina station placement:

Code: Select all


<Siblings radiusInc="12">						
<Group>							
<Station type="&stSistersOfDomina;"/>
<Siblings radiusInc="8">
<Marker objName="Start"/>
</Siblings>

<!-- I added this below -->
<Siblings count="1" radiusInc="15">
<Stargate objName="Elysium" type="&stStargate;" />
</Siblings>

<!-- -->
</Group>
</Siblings>
So, in theory, a stargate to elysium should pop up right near the domina station.....but nothing happens.

So what's going wrong? I'm on 1.03, the mod is version 1.0.

Any help is appreciated....
sdw195
Militia Captain
Militia Captain
Posts: 779
Joined: Wed Nov 18, 2009 1:01 am
Location: Still looking for the csc Antarctica
Contact:

its very hard (almost impossible) to add gates/systems in mods as i found out with adding a gate to (spoiler) censored content removed :P so you might have to over write the vanilla AdventureDesc ( &adPart1Desc; ) (which would make your mod a Adventure :? ) or make a Adventure like the one your doing
Image
Image
Image
Image
"Dash_Merc - George is a genius, in that he created this game engine that is infinitely extendable"
"<@sheepluva>Good night everybody, may the source be with you." <-- FOSG dev
"You only need THREE tools in life - WD-40 to make things go, Duct Tape to make things stop And C-4 to make things go away"
User avatar
Prophet
Militia Captain
Militia Captain
Posts: 826
Joined: Tue Nov 18, 2008 6:09 pm

Here's your problem.

Code: Select all

<StarGate Name="Elysium" DestID="Elysium" DestGate="Inbound"/
>

There is no gate in Elysium named "inbound", try "start"

Code: Select all

 <StarGate Name="Elysium" DestID="Elysium" DestGate="Start"/>
That might work, but I can't promise anything
Coming soon: The Syrtian War adventure mod!
A Turret defense genre mod exploring the worst era in Earth's history.
Can you defend the Earth from the Syrtian invaders?
Stay tuned for updates!
User avatar
ThePrivateer
Militia Captain
Militia Captain
Posts: 943
Joined: Tue Oct 12, 2010 5:12 am
Location: Starton Australia

Prophet wrote:

Code: Select all

 <StarGate Name="Elysium" DestID="Elysium" DestGate="Start"/>
That might work, but I can't promise anything
Didn't work :(

I'll ditch that idea for now and just work on giving the player a new toy to play with and a ridiculously powered up weapon. :wink:

Thanks for the help though. :)
User avatar
Prophet
Militia Captain
Militia Captain
Posts: 826
Joined: Tue Nov 18, 2008 6:09 pm

Well, you could spawn a gate similar to how it's done for the huaramarca gate or just toss a script into a useable item, which is the super easy way.

Code: Select all

<Invoke>
  (objGateTo gPlayerShip "Elysium" "Start")
</Invoke>
8-)
Coming soon: The Syrtian War adventure mod!
A Turret defense genre mod exploring the worst era in Earth's history.
Can you defend the Earth from the Syrtian invaders?
Stay tuned for updates!
sdw195
Militia Captain
Militia Captain
Posts: 779
Joined: Wed Nov 18, 2009 1:01 am
Location: Still looking for the csc Antarctica
Contact:

Prophet wrote:Well, you could spawn a gate similar to how it's done for the huaramarca gate

i dont think that will work, i tried it for tng in a mod and i think a guy called Prophet_01 on the rc channel said that we can't do that without making an Adventure
Image
Image
Image
Image
"Dash_Merc - George is a genius, in that he created this game engine that is infinitely extendable"
"<@sheepluva>Good night everybody, may the source be with you." <-- FOSG dev
"You only need THREE tools in life - WD-40 to make things go, Duct Tape to make things stop And C-4 to make things go away"
User avatar
Arisaya
Fleet Admiral
Fleet Admiral
Posts: 5535
Joined: Tue Feb 05, 2008 1:10 am
Location: At the VSS Shipyards in the frontier, designing new ships.

ThePrivateer wrote:and a ridiculously powered up weapon. :wink:
Ugh, a god modded weapon?
At /least/ make it use onFire scripts or something fancy like that. Otherwise it probably won't be allowed on xelerus.
(shpOrder gPlayership 'barrelRoll)

<New tutorials, modding resources, and official extension stuff coming to this space soon!>
User avatar
ThePrivateer
Militia Captain
Militia Captain
Posts: 943
Joined: Tue Oct 12, 2010 5:12 am
Location: Starton Australia

Prophet wrote:Well, you could spawn a gate similar to how it's done for the huaramarca gate or just toss a script into a useable item, which is the super easy way.

Code: Select all

<Invoke>
  (objGateTo gPlayerShip "Elysium" "Start")
</Invoke>
8-)
Just realised I may as well have used one of those special gem-things that does the same thing. :oops:

Thanks for the code snippet though, I might use that in an actual device the player installs (that lets you jump to St-Kt's or something)

And Wolfy, the game isn't just about a big weapon, it has super ships and with this new content I'm adding, you'll get insane amounts of cash, the ability to purchase "not for sale" items, super mining stuff, and more.
User avatar
Arisaya
Fleet Admiral
Fleet Admiral
Posts: 5535
Joined: Tue Feb 05, 2008 1:10 am
Location: At the VSS Shipyards in the frontier, designing new ships.

So... a godmod pack?
Ok, that's... more understandable.
(shpOrder gPlayership 'barrelRoll)

<New tutorials, modding resources, and official extension stuff coming to this space soon!>
User avatar
ThePrivateer
Militia Captain
Militia Captain
Posts: 943
Joined: Tue Oct 12, 2010 5:12 am
Location: Starton Australia

Wolfy wrote:So... a godmod pack?
Ok, that's... more understandable.
Exactly. Check the link. So far, its just the three god ships, as I'm busy at the moment, but I've already got some new weapons and mod ships in my source code.
User avatar
Prophet
Militia Captain
Militia Captain
Posts: 826
Joined: Tue Nov 18, 2008 6:09 pm

Feel free to borrow any code you like from my god mod ship or if there's any scripts you need/want post the request here on in IRC.
Coming soon: The Syrtian War adventure mod!
A Turret defense genre mod exploring the worst era in Earth's history.
Can you defend the Earth from the Syrtian invaders?
Stay tuned for updates!
User avatar
ThePrivateer
Militia Captain
Militia Captain
Posts: 943
Joined: Tue Oct 12, 2010 5:12 am
Location: Starton Australia

Prophet wrote:Feel free to borrow any code you like from my god mod ship or if there's any scripts you need/want post the request here on in IRC.
Thanks Prophet!

I don't think I'd need too much from your mod, because mine isn't neccessarily an "invincible" mod, but I did pick up a few code hints. ;)

I loved getting all those friendly ships in one spot and blowing them up! :twisted:

As I mentioned above, my mod is going to be more about exploiting some of Transcendence's secrets -- NotForSale weapons, buying and selling at insane prices, putting enormous weapons on tiny ships and making a "Pilgrim" ship that has full Domina powers, but no weapons.

Edit: Actually, Prophet, I'll just borrow a code snippet to change the Player's initial Domina rating. I'll put in a line of code giving you credit ;)
Post Reply