Nexus Modding > Game Assets

Mod/tactitics

(1/2) > >>

Blazar:
Hi, after finishing the game i urge for more.
I have started with making new models in a 3D program, but it will take some time before mastering that.
So i want to start with the models you guy's have already made.
I've read the Nexus modding manual, the nexus mod site and this site to get up to speed with the internals of modding nexus.

I want to use this http://www.dogsquad.co.uk/nexus/nexusmod.htm

Question:
1.What exactly is the sequence of editing the texts/tactics/tacticstypes.ini.
Do i have to go use the mod_tools/docs/Nexus tactict.xls file?
Or  do i have to edit it directly in the tacticstypes.ini in the universe map?
And do i then have to change every item of the ship class.

2. For now i only want to try the models out in single missions.
And wanted to use the Nexus Skirmisher for that,
but there aren't  meshes directory or textures/meshes directory.
So i guess that i have to put the files in the main nexus folder
or a mod if i wanted to use the Nexus Skirmisher.

3. In what way could the tacticsTool 2.2 help me with all this?
And do i have to use the mission editor for using the new ships?

4. When i want to use for eg the Hellstorm Hauler i can't find the corresponding
.TEX file in the textures (.TEX files) (10MB). Am i missing something here? 

Finally

5. Did someone already done editing the texts/tactics/tacticstypes.ini
so i could only copy / paste?

Thanks ;)




Lt.Brandon:
Basically what your asking is how you make a mod from what I can see? Messing with the normal game isn't recommended, so you'd want to make your own mod. If your just looking for one that's already done, and want to learn from it then pick up any of the mods on MODDB.

http://www.moddb.com/games/nexus-the-jupiter-incident/mods

If you go the route of making your own mod, heres some useful stuff.

These will give you a start with the tacticstypes.ini,

http://nexusthegame.net/wiki/Shields
http://nexusthegame.net/wiki/Weapons
http://nexusthegame.net/wiki/Engines
http://nexusthegame.net/wiki/Supports
http://nexusthegame.net/wiki/Shipclasses
http://nexusthegame.net/wiki/Shiptypes

I also recommend this tutorial for getting a basic mod going,

http://www.moddb.com/mods/nexusthe-aurora-affair/downloads/nexustji-basics-tutorial2

Blazar:
Thanks,
Yes it is also the purpose of making a mod but only at a later stage, when i have learned the basics.
I thought that i could just use these ships easily. I guess i was wrong.
I have already downloaded the mod tools and a mod to see how it's organised. The Grunt Invasion v1.0 mod.
And i am frequently on the MODDB site as well.

So it isn't simply, to put one of these ship's somewhere and then go?
Many thanks for the links.  :)

Mularac:
You can indeed use the Nexus skirmisher to try out those new models.

Go to the folder \mods\NEXUS Skirmisher SP Settings
There, create a folder named "meshes" and an other one called "textures".
I'll use as an example the kissaki destroyer.
So, lets say we download that file, "kissaki_destroyer.msh". Put that one in the folder named "meshes" you just created (if you want to keep things tidy you can make a subfolder and put it there, it makes no difference). Now, download the texture bundle from the dogsquad site. Before decompressing it, create an other folder named "meshes", but this time not inside the main "NEXUS Skirmisher SP Settings" but the "NEXUS Skirmisher SP Settings\textures" one.
There, decompress the .rar and place all the .tex files.

Ok, so now you've placed the raw models. Now it's time to add them to the base game. In this case the tactics tool can be useful for you.

Go to the folder "NEXUS Skirmisher SP Settings\universe\tactics" and open the file named tacticstype.ini.
You now have to make a "SHIPCLASS" and "SHIPTYPE" entry for the new ship. A shipclass is the entry used for each model of a ship in the game, and a shiptype stands for the configuration of that ship, so for example you can have multiple shiptypes for one shipclass (take for example the Noah battleship: it's class is named "cls_Battleship", but there are a lot of shiptypes that use that shipclass, the "styp_ep2_Athen_Battleship", "styp_ep2_Rome_Battleship", etc. Are all Noah battleship class ships).
For now we're gonna limit ourselves to just copy an existant class and edit some minor details, but if you want more info you can find a very complete and detailed guide about the tacticstype.ini.

First part: Shipclass.
Go to the SHIPCLASS 43 in the tacticstype.ini you've just opened, it should display this:

--- Code: ---SHIPCLASS 43
Name "cls_old_KSK_Kensai"
Mesh "earth\old\kissaki"
Serial "KSK CV.%03u"
GUIIcon "icons\tac_old_ksk_kensai"
Efx 5 1
ImpactEfx 1 0.6
FinalEfx 2 0.6
ChannelEfx 3 1
FinalTime 8
Civilization 1
Velocity 150
RotVelFact 250
RangeBehav 2 1
Behaviour 0
TargetType 22
SupportOutput 25
SupportIn 20
Armor 5
DevArmor 5
WeapCntFact 1
HPmax 4500
DeviceRepairHP 16
DetectBase 100
Security 4
Slots 31/35 31 31/32 31/32   39 ;
Slots 51/52 53 ;
Slots 61/63 61 61 61/67   66 66 ;
Slots 71/72 ;
Carrier 10
MaxCarried 4
Available
SHIPCLASS

--- End code ---
Now, copy all that and paste it below, so that you have two of those entries.

As I've said, I won't be explaining here what every atribute does but the two first, "name" and "mesh".
The name is the identifier the tactistype.ini will use to link the shipclasses to the shiptypes and it has to be unique.
So, the first thing you have to do is change the name of the entry you've just created. The second part is the "mesh" atribute. This is a string with a relative path to the ship's model. in our case it would simply be "kissaki_destroyer" (or "<subfoulder you created>\kissaki_destroyer"). Change one of the entries so that it looks like this:


--- Code: ---SHIPCLASS 43
Name "cls_old_KSK_destroyer"
Mesh "kissaki_destroyer"
Serial "KSK CV.%03u"
GUIIcon "icons\tac_old_ksk_kensai"
Efx 5 1
ImpactEfx 1 0.6
FinalEfx 2 0.6
ChannelEfx 3 1
FinalTime 8
Civilization 1
Velocity 150
RotVelFact 250
RangeBehav 2 1
Behaviour 0
TargetType 22
SupportOutput 25
SupportIn 20
Armor 5
DevArmor 5
WeapCntFact 1
HPmax 4500
DeviceRepairHP 16
DetectBase 100
Security 4
Slots 31/35 31 31/32 31/32   39 ;
Slots 51/52 53 ;
Slots 61/63 61 61 61/67   66 66 ;
Slots 71/72 ;
Carrier 10
MaxCarried 4
Available
SHIPCLASS

--- End code ---

And done! Now it's time to add a shiptype. The process is analog. Lets search, for instance, the SHIPTYPE 65:


--- Code: ---SHIPTYPE 65
Name "styp_ep1_Kissaki_frigate"
Class #cls_old_KSK_Frigate
Devices #weap_oliLaser #weap_oliLaser #weap_oMassDrv #weap_oMassDrv #weap_oFlak #weap_oFighter ;
Devices #eng_bChemEng #eng_secChemEng ;
Devices #supp_boWGen #supp_oSGen #supp_ores #supp_ores #supp_osensor #supp_osEcm ;
SHIPTYPE

--- End code ---

And add a new one modifying the name and "class" attribute, like this, for example:


--- Code: ---SHIPTYPE 65
Name "styp_Kissaki_destroyer"
Class #cls_old_KSK_destroyer //has to be the same name that our shipclass
Devices #weap_oliLaser #weap_oliLaser #weap_oMassDrv #weap_oMassDrv #weap_oFlak #weap_oFighter ;
Devices #eng_bChemEng #eng_secChemEng ;
Devices #supp_boWGen #supp_oSGen #supp_ores #supp_ores #supp_osensor #supp_osEcm ;
SHIPTYPE

--- End code ---

And done!
You may've noticed that the new shipclass and shiptype have the same number as an other shipclass/shiptype, and that's not ok. However, that's where the tactics tool comes in.
Open it up, select your tacticstype.ini file with the "select file" option, then under the "tags" category un-click the one that says "DEVICETYPE" and select the "re-organize the file" option. it should end up looking like this:



Click on Run, skip the warning and done. All that is left is to replace the old tacticstype.ini with the one generated by the tool. You can now select your new ship from the skirmisher

Blazar:
Wow, Mularac. Great tutorial about my question. This is exactly what i meant.
And it works perfectly! ;D
There was one thing though:
there was no tactics folder in the NEXUS Skirmisher SP Settings\universe\.
So i copied the tactics folder from  NEXUS Skirmisher but the tacticstype.ini file was different from your example.
So i copied tacticstype.ini from the main Nexus folder.
The rest went smooth.

Furthermore now there occurs a strange bug during a skirmish.
Just before a ship gets destroyed the Angelwing murges with it. Some times 2 Angelwings in a cross.
And sometimes the Angelwing just pops up out of nowhere.  ???

But nonetheless it's an awesome little mod.
Many thanks dude!!!  ;) 


Navigation

[0] Message Index

[#] Next page

Go to full version