[MOD]DeadAir Mods pt2

The place to discuss scripting and game modifications for X4: Foundations.

Moderators: Scripting / Modding Moderators, Moderators for English X Forum

XoSPECTRE

Re: [MOD]DeadAir Mods pt2

Post by XoSPECTRE »

Im trying replace caladri missile launcherch whith other weapons just to test how it behive but i can see only xl ships can normaly change to new weapons but all L and M class ship ate extremely random and on new game start somenof them dont have weapons but some of them have what im doing wrong i changes wares component and macro in librarys and md and index folders
User avatar
Reisser
Posts: 764
Joined: Mon, 28. Feb 05, 15:39
x4

Re: [MOD]DeadAir Mods pt2

Post by Reisser »

A question about DeadAir AI tweaks:

Since I've been using them, I've had to notice that in large fleet battles (Xenon / Argon), sometimes significantly fewer containers have fallen.

In similar battles at the same place, 10-20 containers were left over the thumb (things like tuning parts, spacefly eggs, skill books, components of various kinds, ...) - a found feast for my dedicated collector :)

Now, even after the sector was full of wrecks, there was just one tuning part in space :o

I watched the whole thing yesterday for over 2 hours without it becoming significantly more (apart from the wrecks ... they kept increasing)

Before that I didn't use a mod that could have increased the drop rate. From yesterday the DeadAir AI tweaks.

Could that be because of this? At least a few things about the loot will be changed according to the readme.
Meine Mods bei NexusMods: RS Loss Report RS Bribe for Scandata RS Colors RS Marine Special Training
Meine Mod-Collection bei NexusMods: X4 7.0 VRO Hard Times
DeadAirRT
Posts: 1124
Joined: Fri, 25. Jan 19, 03:26
x4

Re: [MOD]DeadAir Mods pt2

Post by DeadAirRT »

Reisser wrote: Tue, 17. May 22, 11:11 A question about DeadAir AI tweaks:

Since I've been using them, I've had to notice that in large fleet battles (Xenon / Argon), sometimes significantly fewer containers have fallen.

In similar battles at the same place, 10-20 containers were left over the thumb (things like tuning parts, spacefly eggs, skill books, components of various kinds, ...) - a found feast for my dedicated collector :)

Now, even after the sector was full of wrecks, there was just one tuning part in space :o

I watched the whole thing yesterday for over 2 hours without it becoming significantly more (apart from the wrecks ... they kept increasing)

Before that I didn't use a mod that could have increased the drop rate. From yesterday the DeadAir AI tweaks.

Could that be because of this? At least a few things about the loot will be changed according to the readme.
My changes only add training seminars to drops, it does not change how many drops you get.
siath70
Posts: 459
Joined: Sun, 11. Jan 04, 03:03
x4

Re: [MOD]DeadAir Mods pt2

Post by siath70 »

Quick question can you pass vars from simple menu API to an AI script?

I am trying to create a MD menu and can't get the vars passed to an AI script diff file.
DeadAirRT
Posts: 1124
Joined: Fri, 25. Jan 19, 03:26
x4

Re: [MOD]DeadAir Mods pt2

Post by DeadAirRT »

siath70 wrote: Thu, 19. May 22, 00:48 Quick question can you pass vars from simple menu API to an AI script?

I am trying to create a MD menu and can't get the vars passed to an AI script diff file.
Ai scripts only have access to globals afaik. Kuertee would know more than i do.
siath70
Posts: 459
Joined: Sun, 11. Jan 04, 03:03
x4

Re: [MOD]DeadAir Mods pt2

Post by siath70 »

DeadAirRT wrote: Thu, 19. May 22, 05:08
siath70 wrote: Thu, 19. May 22, 00:48 Quick question can you pass vars from simple menu API to an AI script?

I am trying to create a MD menu and can't get the vars passed to an AI script diff file.
Ai scripts only have access to globals afaik. Kuertee would know more than i do.
Cool thanks!
kuertee
EGOSOFT
EGOSOFT
Posts: 818
Joined: Sun, 14. Dec 03, 13:05
x4

Re: [MOD]DeadAir Mods pt2

Post by kuertee »

DeadAirRT wrote: Thu, 19. May 22, 05:08
siath70 wrote: Thu, 19. May 22, 00:48 Quick question can you pass vars from simple menu API to an AI script?

I am trying to create a MD menu and can't get the vars passed to an AI script diff file.
Ai scripts only have access to globals afaik. Kuertee would know more than i do.
yah, aiscripts don't have access to md scripts.
i pass vars from md to aiscript by setting a global var to the cue when it is initialised.
e.g. in MD:

Code: Select all

<cue name="Foo" namespace="this">
<actions>
<set_value name="global.$Foo" exact="this" />
<set_value name="$var" exact="'foo bar'" />
</actions>
in aiscript:

Code: Select all

...
<set_value name="$var" exact="global.$Foo.$var" />
<debug_text text="'$var" />
...
that's how i pass vars from Extension Options to aiscripts in our Kuda AI Tweaks mod.
i.e. the actual vars used in the aiscripts and are accessible from the Extension Options are scoped in an MD cue.
siath70
Posts: 459
Joined: Sun, 11. Jan 04, 03:03
x4

Re: [MOD]DeadAir Mods pt2

Post by siath70 »

kuertee wrote: Thu, 19. May 22, 07:16
DeadAirRT wrote: Thu, 19. May 22, 05:08
siath70 wrote: Thu, 19. May 22, 00:48 Quick question can you pass vars from simple menu API to an AI script?

I am trying to create a MD menu and can't get the vars passed to an AI script diff file.
Ai scripts only have access to globals afaik. Kuertee would know more than i do.
yah, aiscripts don't have access to md scripts.
i pass vars from md to aiscript by setting a global var to the cue when it is initialised.
e.g. in MD:

Code: Select all

<cue name="Foo" namespace="this">
<actions>
<set_value name="global.$Foo" exact="this" />
<set_value name="$var" exact="'foo bar'" />
</actions>
in aiscript:

Code: Select all

...
<set_value name="$var" exact="global.$Foo.$var" />
<debug_text text="'$var" />
...
that's how i pass vars from Extension Options to aiscripts in our Kuda AI Tweaks mod.
i.e. the actual vars used in the aiscripts and are accessible from the Extension Options are scoped in an MD cue.
Thank you very much for the help, you guys are the best!
Necessarious
Posts: 2
Joined: Mon, 25. May 15, 19:35
x4

Re: [MOD]DeadAir Mods pt2

Post by Necessarious »

I've probably missed it somewhere but is there any reason why the Eve Factions wont place orders at my shipyards/wharfs?
DeadAirRT
Posts: 1124
Joined: Fri, 25. Jan 19, 03:26
x4

Re: [MOD]DeadAir Mods pt2

Post by DeadAirRT »

Necessarious wrote: Sat, 21. May 22, 21:00 I've probably missed it somewhere but is there any reason why the Eve Factions wont place orders at my shipyards/wharfs?
There's nothing in particular blocking it. You would need their weapon blueprints since they don't use other factions. You would also need the blueprint for the engine for cruiser sized larges.
Necessarious
Posts: 2
Joined: Mon, 25. May 15, 19:35
x4

Re: [MOD]DeadAir Mods pt2

Post by Necessarious »

DeadAirRT wrote: Sat, 21. May 22, 21:09
Necessarious wrote: Sat, 21. May 22, 21:00 I've probably missed it somewhere but is there any reason why the Eve Factions wont place orders at my shipyards/wharfs?
There's nothing in particular blocking it. You would need their weapon blueprints since they don't use other factions. You would also need the blueprint for the engine for cruiser sized larges.
Idk then. I have their BluePrints and Weapons. Right now I built one so I could solely support the Amarr but they will not order any ships at all. I literally have bought no other blueprints but the blueprints I can get from Amarr. Im trying to do an Amarr only playthrough. Even though I dont have the Argon or Antigone weapons they are the ones that order ships from my Wharf half the Universe away. I havnt really tested it for the L and XL Shipyards yet.
DeadAirRT
Posts: 1124
Joined: Fri, 25. Jan 19, 03:26
x4

Re: [MOD]DeadAir Mods pt2

Post by DeadAirRT »

Necessarious wrote: Sun, 22. May 22, 04:55
DeadAirRT wrote: Sat, 21. May 22, 21:09
Necessarious wrote: Sat, 21. May 22, 21:00 I've probably missed it somewhere but is there any reason why the Eve Factions wont place orders at my shipyards/wharfs?
There's nothing in particular blocking it. You would need their weapon blueprints since they don't use other factions. You would also need the blueprint for the engine for cruiser sized larges.
Idk then. I have their BluePrints and Weapons. Right now I built one so I could solely support the Amarr but they will not order any ships at all. I literally have bought no other blueprints but the blueprints I can get from Amarr. Im trying to do an Amarr only playthrough. Even though I dont have the Argon or Antigone weapons they are the ones that order ships from my Wharf half the Universe away. I havnt really tested it for the L and XL Shipyards yet.
Oh did you get the ishield bp too? Afaik it should work fine, their economy should be mostly fine where they can mostly handle their own ship building. If they happen to get low on turret components then it should definitely pick up.
XoSPECTRE

Re: [MOD]DeadAir Mods pt2

Post by XoSPECTRE »

Is there some ships updates comming soon ? More factions or something ?
DeadAirRT
Posts: 1124
Joined: Fri, 25. Jan 19, 03:26
x4

Re: [MOD]DeadAir Mods pt2

Post by DeadAirRT »

XoSPECTRE wrote: Mon, 23. May 22, 13:50 Is there some ships updates comming soon ? More factions or something ?
Are you really asking me this?
Scoob
Posts: 11170
Joined: Thu, 27. Feb 03, 22:28
x4

Re: [MOD]DeadAir Mods pt2

Post by Scoob »

Hi,

Perhaps it's been there a while but I just noticed that alongside the "TaterTrader" option I'm used to near the bottom of the Default Behaviour list, there's also a "Dead Tater" option just below the vanilla Local and Advanced AutoTrade options. I've never noticed this before, and I seem to be unable to find a description on it. Considering you took over the maintenance of TaterTrader from ludsloe (sp?) have I been using the wrong one?

(Caveat: it's very late, I'm very tired and I just noticed this as I was about to log off for the eve)
DeadAirRT
Posts: 1124
Joined: Fri, 25. Jan 19, 03:26
x4

Re: [MOD]DeadAir Mods pt2

Post by DeadAirRT »

Scoob wrote: Sun, 29. May 22, 01:42 Hi,

Perhaps it's been there a while but I just noticed that alongside the "TaterTrader" option I'm used to near the bottom of the Default Behaviour list, there's also a "Dead Tater" option just below the vanilla Local and Advanced AutoTrade options. I've never noticed this before, and I seem to be unable to find a description on it. Considering you took over the maintenance of TaterTrader from ludsloe (sp?) have I been using the wrong one?

(Caveat: it's very late, I'm very tired and I just noticed this as I was about to log off for the eve)
I put it in the patch notes but it's my rewrite of tater trader. There's a lot of info for it in the picture guide on the workshop page.
Scoob
Posts: 11170
Joined: Thu, 27. Feb 03, 22:28
x4

Re: [MOD]DeadAir Mods pt2

Post by Scoob »

DeadAirRT wrote: Sun, 29. May 22, 03:37
I put it in the patch notes but it's my rewrite of tater trader. There's a lot of info for it in the picture guide on the workshop page.
Thanks. I have the GoG version of the game, so don't go near the Steam Workshop, only ever downloaded TT from Github - didn't know it was on the workshop too, will check it out, cheers.
Dvirus
Posts: 21
Joined: Sun, 7. Dec 14, 16:16
x3tc

Re: [MOD]DeadAir Mods pt2

Post by Dvirus »

Love your mods,

One question. When will you update your VRO-Lite mod to the last VRO version ?.

"Patch 3.3.5 and 3.3.6 from VRO"
It's Just a Virus
DeadAirRT
Posts: 1124
Joined: Fri, 25. Jan 19, 03:26
x4

Re: [MOD]DeadAir Mods pt2

Post by DeadAirRT »

Dvirus wrote: Mon, 30. May 22, 13:44 Love your mods,

One question. When will you update your VRO-Lite mod to the last VRO version ?.

"Patch 3.3.5 and 3.3.6 from VRO"
So I'm at a crossroads basically. I am probably going to be fully removing the added ships except the xenon stuff and the battleships from VRO-lite. The problem is that it takes a lot of work over time to continue to have them or a lot of time up front to remove them from the mod. If you like the ships added in VRO i would suggest switching over.
Dvirus
Posts: 21
Joined: Sun, 7. Dec 14, 16:16
x3tc

Re: [MOD]DeadAir Mods pt2

Post by Dvirus »

DeadAirRT wrote: Mon, 30. May 22, 14:25
Dvirus wrote: Mon, 30. May 22, 13:44 Love your mods,

One question. When will you update your VRO-Lite mod to the last VRO version ?.

"Patch 3.3.5 and 3.3.6 from VRO"
So I'm at a crossroads basically. I am probably going to be fully removing the added ships except the xenon stuff and the battleships from VRO-lite. The problem is that it takes a lot of work over time to continue to have them or a lot of time up front to remove them from the mod. If you like the ships added in VRO i would suggest switching over.
Hi DeadAiRT,

Thanks for your reply,

I use all your mods (love it!), and I'm still not sure if I will use VRO... What is your opinion about is the best way to play?, is without VRO? and why not use the full version of VRO along with your mods (to much change?) (what is your experience with your mods and VRO (full))

And when are you going to update your VSO lite version with just the XENON and battleships? (I think that will be a great idea to).
It's Just a Virus

Return to “X4: Foundations - Scripts and Modding”