Fulqrum Publishing Home   |   Register   |   Today Posts   |   Members   |   UserCP   |   Calendar   |   Search   |   FAQ

Go Back   Official Fulqrum Publishing forum > Fulqrum Publishing > Star Wolves

Star Wolves 3D space RPG with deep strategy and tactical elements

Reply
 
Thread Tools Display Modes
  #101  
Old 03-25-2010, 09:44 PM
Nanaki Nanaki is offline
Approved Member
 
Join Date: Mar 2010
Posts: 338
Default

Quote:
Originally Posted by Goblin Wizard View Post
Forget it. I feel like stupid. I've forgot about limits in carcasses.xml. Sorry to bother you
I have done worse mistakes!
Reply With Quote
  #102  
Old 03-25-2010, 09:56 PM
Rastix Rastix is offline
Approved Member
 
Join Date: Jul 2008
Posts: 79
Default

Quote:
Originally Posted by Nanaki View Post
I was trying to add a fifth Summon ability. There are currently four, SummonNavy, SummonKfni, SummonBerserk, and SummonPrec.
Yep, it's hardcoded. But you can replace existing abilities by your own
Reply With Quote
  #103  
Old 03-25-2010, 10:06 PM
Nanaki Nanaki is offline
Approved Member
 
Join Date: Mar 2010
Posts: 338
Default

Quote:
Originally Posted by Rastix View Post
Yep, it's hardcoded. But you can replace existing abilities by your own
If XMLSchema was not hardcoded, than I could have actually pulled it off. With exception of that it worked perfectly.

Actually, you can get around things by adding levels to abilities. For example, I added a level '5' to the Berserk spawn that summons 6 Elite berserk fighters, and made a new special ability for it. This allows me to add different summons without affecting the other character's abilities.
Reply With Quote
  #104  
Old 03-26-2010, 05:11 AM
Lonck Lonck is offline
Registered Member
 
Join Date: Mar 2010
Posts: 5
Default

do I need to start new game if I make changes? I tried to change Mastiff's HP but doesn't work. Also how can I add missiles to the motherships? an erlier post by Nanaki says something about models. Where are they located?
Reply With Quote
  #105  
Old 03-26-2010, 06:53 AM
Goblin Wizard Goblin Wizard is offline
Approved Member
 
Join Date: Oct 2008
Posts: 508
Default

If you want to see changes on Mastiff (or any other ship) you need to find save before you get it. In this case find save with pirate version mastiff and go to the Elio for aerogrphy quest.
I never tried missile lunchers on mothership so I don't know if they work.
Model files are here ..\Data\OBJECT\*.imd. You need a IMDeditor to change things.

-----------------------------------------------------------------------


I have another problem:

Now buying code looks like below and works ok

Quote:
function _buy_ms(nameMS)
local _tab_MS = {
{"Starhammer_0",1000},
{"Mothership_uel_pl1",2000},
{"Mothership_Lion_pl1",3000}};

local costMS = 0;
for i, sh in _tab_MS do
if (sh[1] == nameMS) then costMS=sh[2];
end;
end;
if (costMS == 0) then return FALSE;
end;

local N=GetPlayerCredits();
if (N>=costMS) then

NewFlight("myGroup_1", "nm", GetShipName(nameMS), "BasePilot", mothership:GetPosition() + Vector3(0, 0, -70), Vector3(0, 0, 1));
mothership_old = mothership;
mothership = SetPlayerMotherShip(ship_nm_1);
PortalTrigger_PORTAL_R:SetObject(mothership);
PortalTrigger_PORTAL_L:SetObject(mothership);
PortalTrigger_PORTAL_U:SetObject(mothership);
PortalTrigger_PORTAL_D:SetObject(mothership);
PortalsActivate_Action();
GetShipName(mothership);
CreateTradeStationDocking(TRADE_STATION,mothership );
CreateRepairStationDocking(STO_Station,mothership, 140,5);
SubPlayerCredits(costMS);

OutputToScreenLog("#UI_MothershipBought",7);
else
OutputToScreenLog("#UI_MothershipBoughtFail",7);
end;
end;
but you can buy only one mothership. If you try to buy second you get CTD. It is caused by group declaration "myGroup_1". Separate group must be attached to each mothership so I changed code slightly (added 3rd column to table) and now looks like this:

Quote:
function _buy_ms(nameMS)
local _tab_MS = {
{"Starhammer_0",1000,"myGroup_1"},
{"Mothership_uel_pl1",2000,"myGroup_2"},
{"Mothership_Lion_pl1",3000,"myGroup_3"}};

local costMS = 0;
for i, sh in _tab_MS do
if (sh[1] == nameMS) then costMS=sh[2];
end;
if (sh[1] == nameMS) then nameG=sh[3];
end;
end;
if (costMS == 0) then return FALSE;
end;

local N=GetPlayerCredits();
if (N>=costMS) then

NewFlight( GetGroupName(nameG), "nm", GetShipName(nameMS), "BasePilot", mothership:GetPosition() + Vector3(0, 0, -70), Vector3(0, 0, 1));
mothership_old = mothership;
mothership = SetPlayerMotherShip(ship_nm_1);
PortalTrigger_PORTAL_R:SetObject(mothership);
PortalTrigger_PORTAL_L:SetObject(mothership);
PortalTrigger_PORTAL_U:SetObject(mothership);
PortalTrigger_PORTAL_D:SetObject(mothership);
PortalsActivate_Action();
GetShipName(mothership);
CreateTradeStationDocking(TRADE_STATION,mothership );
CreateRepairStationDocking(STO_Station,mothership, 140,5);
SubPlayerCredits(costMS);

OutputToScreenLog("#UI_MothershipBought",7);
else
OutputToScreenLog("#UI_MothershipBoughtFail",7);
end;
end;
but unfortunately it doesn't work. No errors and no visible effects. Maybe someone could check the code and find out what's wrong?

Last edited by Goblin Wizard; 03-26-2010 at 08:04 AM.
Reply With Quote
  #106  
Old 03-26-2010, 12:46 PM
Nanaki Nanaki is offline
Approved Member
 
Join Date: Mar 2010
Posts: 338
Default

I am not sure myself, but, I do not see where ship_nm_1 is defined... You are probably better at this than I am, though, so I could be completely clueless.

In other news, I have successfully implimented summoning fleets to the specials.script. With my test script 'MSF Summon 4', you can summon 1 squadron of fighters, 1 squadron of bombers, and 1 Stalingrad-class Battleship.

Last edited by Nanaki; 03-26-2010 at 12:50 PM.
Reply With Quote
  #107  
Old 03-28-2010, 11:24 AM
Lonck Lonck is offline
Registered Member
 
Join Date: Mar 2010
Posts: 5
Default

where can we change the perks properties like accuracy and stuff?
Reply With Quote
  #108  
Old 03-28-2010, 03:44 PM
Nanaki Nanaki is offline
Approved Member
 
Join Date: Mar 2010
Posts: 338
Default

Changing what a perk is done is dependant on the perk itself. Most of the pilot/gunnery/system perk attributes can be found in the data/script/ai/perkdispatcher.script file...

In other news, I have squeezed out all the knowlege I can out of the specials.script, now I am currently working on all Location scripts.

My first mod project is to double the amount of random spawns in all sectors. This is a simple affair, mostly just time-consuming.

My second mod project is to introduce actual civil war, Old Empire and New Empire elements fighting in various sectors (odd how there is no fighting for what is supposedly a 'war'). So far, my plan is that all Old Emipre sectors that get taken over by the New Empire later in the game will have New Empire ships spawning in them. My plan is to also have some boarder New Empire sectors get the occasional Old Empire incursion as well. May also adjust the random spawns on a per-system basis, such as introducing Patrol spawns to Kruger (Kruger is currently a loot bonanza because nothing but traders spawn, in a system crawling with pirates.)

My third mod project after that is... I have not decided yet.

Last edited by Nanaki; 03-28-2010 at 09:41 PM.
Reply With Quote
  #109  
Old 03-29-2010, 03:44 PM
Lonck Lonck is offline
Registered Member
 
Join Date: Mar 2010
Posts: 5
Default

wheres the Alien_Dreadnought_0's ini? I want to make the dreadnought my mothership but can't seem to find the .ini in the TEXTURE\Interface\Carcass\Slots folder. Is it somewhere else? I will try and just add components to shipdescription.xml in the meantime if no .ini exists. Also how are the .ini connected to the ship? How does the game decide which one to use? Also when I change ship HP and shields it doesn't show when I load a saved game but when I change the mesh it shows in game. Is there a way to make them work? If not where are the scripts that give the various motherships? I could change the scripts to give me the same ship throughout the game.

Last edited by Lonck; 03-29-2010 at 04:13 PM.
Reply With Quote
  #110  
Old 03-29-2010, 04:42 PM
Nanaki Nanaki is offline
Approved Member
 
Join Date: Mar 2010
Posts: 338
Default

Well, I accomplished both my Modding goals, and so far the results have been good. Systems are a LOT more active, I also added NESF incursions in seven MSF systems, and NESF ships spawn regularly and engage with MSF patrols. Overall, it works beautifully.

Quote:
wheres the Alien_Dreadnought_0's ini?
Ships that are not meant to be controlled by the player, such as the Stone Arrow, Alien Dreadnought, and Stalingrad Battleship will have no INI and their IMD file will be missing a lot of needed data. I highly recommend not using these ships unless you are well versed in creating INIs and modding IMD files.

Quote:
Also how are the .ini connected to the ship? How does the game decide which one to use?
You know when you click on a ship while docked, where it shows all the ship components and allows you to add/remove components? Thats what the INI handles.

Quote:
Also when I change ship HP and shields it doesn't show when I load a saved game but when I change the mesh it shows in game.
I suggest you load a save before you acquire a certain mothership. Once a ship is spawned, its stats are static. The only way you can change it is by loading a save before that ship spawns.

Quote:
If not where are the scripts that give the various motherships? I could change the scripts to give me the same ship throughout the game.
They are quest scripts (look in the quest folder). Goblin Wizard was working on a script that could allow you to purchase whatever motherships you want, but im not sure if that went anywhere actually.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:34 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.