Hard mod help

Freeform discussion about anything related to modding Transcendence.
Post Reply
F50
Fleet Officer
Fleet Officer
Posts: 1004
Joined: Sat Mar 11, 2006 5:25 pm

I am trying to make a mod to make the game harder and have a few questsions.

Can I make a station invincible?

If I change the value of something in credits, is that value changed for rins? if not, how do I change that?

I may have more questions, but thanks!

How can I make certain shops adjust the prices up?
User avatar
Betelgeuse
Fleet Officer
Fleet Officer
Posts: 1920
Joined: Sun Mar 05, 2006 6:31 am

Can I make a station invincible?
immutable= "true"
If I change the value of something in credits, is that value changed for rins? if not, how do I change that?
credits and rins are different values

to get rins you use (objGetData gPlayerShip "rins") and to set rins you use (objSetData gPlayerShip "rins" amountToSet)
How can I make certain shops adjust the prices up?
this one a bit harder you would have to change dsRingerSell and dsExchangeSell. The exact way you do it will depend on what exactly you want to do.
Crying is not a proper retort!
F50
Fleet Officer
Fleet Officer
Posts: 1004
Joined: Sat Mar 11, 2006 5:25 pm

So what does this line do?

Code: Select all

value = "75" 

and how would I make a ship never leave a wreck?



I remember something along the lines of:

Code: Select all

wreckchance = "0"
but I don't know where to put it or if that will work.
User avatar
Betelgeuse
Fleet Officer
Fleet Officer
Posts: 1920
Joined: Sun Mar 05, 2006 6:31 am

value = "75"
means that the unadjusted value for that item is 75 credits. If a rins dealing station it would be value/20 for the amount of unadjusted rins. This can be adjusted anyway you want by making new dock screens or changing dsRingerSell. When static data comes in for items even more fun stuff can be done like giving a custom rins value.
wreckchance = "0"
it would be
leavesWreck= "0"
And that goes in the first part with mass and thrust.

If you want to do that for stations you would just put this in the events section.

Code: Select all

<OnDestroy>
	(objDestroy gSource) 
</OnDestroy>
Crying is not a proper retort!
Post Reply