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
  #491  
Old 02-12-2015, 10:29 AM
Neo Genesis Neo Genesis is offline
Approved Member
 
Join Date: Apr 2014
Posts: 74
Default

Quote:
Originally Posted by nocalora29 View Post
Alright, I will look into it, Thanks.

Could you post also the Log files somewhere or Upload them when things like these occur?, Especially when Dialog options aren't working, Since they just call functions from the lua files from the Game. would help me alot

These 2 files are important
LOGfile.txt
And
ScriptErrors.log

The Others motherships never Were supposed to have GUI Slots, but I can also make some for them, could be pretty hard on the Dreadnaught tho, but I will try.

In Editing the Other Motherships. Maybe you can get the files from the SW1 Mothership Mod . All the Motherships there have GUI Slots including Battleship & Dreadnaught (http://forum.1cpublishing.eu/showthread.php?t=16158)
Reply With Quote
  #492  
Old 02-12-2015, 01:01 PM
nocalora29's Avatar
nocalora29 nocalora29 is offline
¯\_ ͯ‿ ͯ_/¯
 
Join Date: Dec 2011
Posts: 517
Default

Really good Idea!, I've added the gui slots Right away.

Thanks.

EDIT

@Lotrek:

I Think I have fixed now all the problems that you Told me... need m0ar.

BTW: I Also would like some Testing on the System Management script That I worked on, Try it out. You can configure the SysM_Kobra System from the Maintance Station Dialog. should there somwhere, then visit corrino and Fly to the Kobra system.

Im wondering what the results will be with your Awesome testing Skills
__________________
Discord: Nocalora#6847 | SW3.Expansion Thread | SWX.MouseMovementFix | SWX.TUVMark+Src (.tuv editing Tool) | SWX.SLOTMark+Src (.ini Slots editing Tool)

Last edited by nocalora29; 02-12-2015 at 02:11 PM.
Reply With Quote
  #493  
Old 02-12-2015, 02:17 PM
Lotrek Lotrek is offline
Approved Member
 
Join Date: Jan 2012
Posts: 309
Default

I've gone through GW's original script and the GW script you have in your version and I can see no difference with the GK turrets. I know in the previous version I was able to buy them.

Here is the snippet from Data\Scripts\include\GW that I am referring to:

--------------------------------------------------------------------------------
---- Buy MS EQUIPMENT section --------------------------------------------------
--------------------------------------------------------------------------------

function buy_THGK3()
buy_ms_eq("THGK3");
end;

function buy_TLGK3()
buy_ms_eq("TLGK3");
end;

function buy_TPGK3()
buy_ms_eq("TPGK3");
end;

function buy_TRGK3()
buy_ms_eq("TRGK3");
end;


function buy_ms_eq(eq_name)
local tab_ms_eq = {
{"THGK3",350000},
{"TLGK3",350000},
{"TPGK3",350000},
{"TRGK3",350000}
};

local cost = 0;
for k, x in tab_ms_eq do
if (x[1] == eq_name) then
cost = x[2];
end;
end;
if (cost == 0) then return FALSE;
end;

local cash = GetPlayerCredits();
if (cash >= cost) then
mothership:AddModuleToInventory(eq_name, 1);
SubPlayerCredits(cost);
OutputToScreenLog("#UI_item_buy_ok",7);
else
OutputToScreenLog("#UI_buy_fail",7);
end;
end;

I checked Data/Game/Modules and THGK3, TLGK3, TPGK3, TRGK3 are all there with complete parameters. All the referenced items are located in Data\TEXTURE\Interface\Module\32. As far as I can tell, the above script should work.

I looked at the script in your mod used to buy the MD-5 black hole Particle Accelerator under option 9 Star Equipment:

-- //////////////////////////// --
-- // Star Equipment Section // --
--//////////////////////////// --

function buy_RG4()
buy_ms_eq("RG4");
end;


function buy_ms_eq(eq_name)
local tab_ms_eq = {
{"RG4",75000},
};

local cost = 0;
for k, x in tab_ms_eq do
if (x[1] == eq_name) then
cost = x[2];
end;
end;
if (cost == 0) then return FALSE;
end;

local cash = GetPlayerCredits();
if (cash >= cost) then
mothership:AddModuleToInventory(eq_name, 1);
SubPlayerCredits(cost);
OutputToScreenLog("#UI_item_buy_ok",7);
else
OutputToScreenLog("#UI_buy_fail",7);
end;
end;

Comparing the two scripts they seem identical with the exception of the item they are to buy. The black hole script works, the GK turret one does not. I am at a loss as to why at this point since they seem to be the same code.
Reply With Quote
  #494  
Old 02-12-2015, 02:20 PM
nocalora29's Avatar
nocalora29 nocalora29 is offline
¯\_ ͯ‿ ͯ_/¯
 
Join Date: Dec 2011
Posts: 517
Default

Yes, I Used it as an Template, but it is fixed in v0.3.1: See Signature.
__________________
Discord: Nocalora#6847 | SW3.Expansion Thread | SWX.MouseMovementFix | SWX.TUVMark+Src (.tuv editing Tool) | SWX.SLOTMark+Src (.ini Slots editing Tool)
Reply With Quote
  #495  
Old 02-12-2015, 02:30 PM
Lotrek Lotrek is offline
Approved Member
 
Join Date: Jan 2012
Posts: 309
Default

OK I d/l both Nanaki's Fleet Mod & GW's Mothership Mod and SW3.Expansion Mod v0.3.1.

I was able to buy the GK turrets but alas another error has occurred. When I hover over them in my inventory or right click them I get: Not found String: #String_LDESC_GK1 The same goes for GK2, GK3, and GK4.

I'll do more testing later, gotta run some errands.
Reply With Quote
  #496  
Old 02-12-2015, 02:36 PM
nocalora29's Avatar
nocalora29 nocalora29 is offline
¯\_ ͯ‿ ͯ_/¯
 
Join Date: Dec 2011
Posts: 517
Default

Pls note that Nanaki's Fleetmod and Motherships Mod from Goblin_Wizard are both in the Mod itself. No need to Download it through the Merged Version, its only for people that just want to play with these two Mods.

It also would Break some additional Stuff when you Install it with the SW3.Expansion Mod.

-About the Problem:
Oh, seems to be only an Invalid string the Modules.xml File, I get right to it. Will post Quick fix when its done.

EDIT: Fix Modules.xml

Also: Be sure to read that readme.txt
__________________
Discord: Nocalora#6847 | SW3.Expansion Thread | SWX.MouseMovementFix | SWX.TUVMark+Src (.tuv editing Tool) | SWX.SLOTMark+Src (.ini Slots editing Tool)

Last edited by nocalora29; 02-12-2015 at 02:56 PM.
Reply With Quote
  #497  
Old 02-12-2015, 10:52 PM
Lotrek Lotrek is offline
Approved Member
 
Join Date: Jan 2012
Posts: 309
Default

Ok I did a fresh install of the game, installed the Voiceover mod and the expansion mod, overwrote Modules with the file you attached to your last message.

Cavalier/Butcher still cannot place in a hanger, same error popup.

The problem with GK turrets persists even with the new Modules file.

Bastard has 2 missile and 1 smallgun slots in it's GUI but you cannot place anything in them. If you double click a missile or a small gun from your inventory they install but do not show on the GUI, just disappear from your inventory. I launched the bastard and put it in combat. There were 2 misslies installed and I saw a small gun machine gun animation so they did get installed from the double click but you cannot see them in the template.

I checked all the new motherships and all but the portal transport have templates. Also, the portal transport does not move in any direction.

I tested the Swarm Shipyard function. In all options it stated a 6 ship fleet should appear. In all options I had (2) 6 ship fleets appear.

I tested the Corporation Services function. I found no problems. All functions worked as listed.

I tested the Escort Contracts with FTU section of the mod. A fleet appeared, a mission was added to my log. When I scrapped the mission from the menu, the fleet disappeared and the mission was erased from my log. Seems ok.

I tested the Attack Contracts with FTU section of the mod. A fleet appeared, a mission is added to my log but I get a message in the chat window: "[Nocalora] Not found string: #L_DR5_MSG_Contracts_FTU_Attack_List". When I tried to scrap it I got a messge that it was removed, the fleet disappeared but the Mission was still in my log.

I am doing my testing in Endoria 1. I attempted to fly to Torr but the Torr gate in Endoria 1 does not work. I flew the back way to Kyoto to get to Torr and it worked. Also the Torr>Endoria 1 portal does work.

Attached is a Logfile of my continuing a game, docking with a maintenance station and attempting to obtain a FTU attack contract and scrapping it.
Attached Files
File Type: zip LOGfile.zip (4.1 KB, 2 views)
Reply With Quote
  #498  
Old 02-13-2015, 01:28 PM
nocalora29's Avatar
nocalora29 nocalora29 is offline
¯\_ ͯ‿ ͯ_/¯
 
Join Date: Dec 2011
Posts: 517
Default

Thanks for Reporting that.

I think I have fixed these Problems now, But about the Bastard:
The Fighters GUI now Completely works for me. I just didn't add it in. I Will upload v0.3.2 in the Signature soon, which will include the following Fixes:

The Missing string also got Fixed, Including the Remove Quests Function.
Bastard GUI


--
About the Corvettes: Im also dealing with this Issue now strangely... I see no reason at all Why these Ships are now Inaccessible. But I will definitely try to Fix it.

About the Endoria-1 Portal Issue: I Never thought something in my Mod would break an Portal, Maybe because some Script messed up or Something...

But I will Look Into it, expect v0.3.2 in no Time
__________________
Discord: Nocalora#6847 | SW3.Expansion Thread | SWX.MouseMovementFix | SWX.TUVMark+Src (.tuv editing Tool) | SWX.SLOTMark+Src (.ini Slots editing Tool)

Last edited by nocalora29; 02-14-2015 at 02:37 PM.
Reply With Quote
  #499  
Old 02-13-2015, 03:04 PM
Lotrek Lotrek is offline
Approved Member
 
Join Date: Jan 2012
Posts: 309
Default

Great, happy to help. I look forward to 3.2 and continued testing.
Reply With Quote
  #500  
Old 02-14-2015, 02:37 PM
nocalora29's Avatar
nocalora29 nocalora29 is offline
¯\_ ͯ‿ ͯ_/¯
 
Join Date: Dec 2011
Posts: 517
Default

Updated Sig. But I think the Corvette Issue still remains, its on My "Fix-This-Without-Making-More-Errors" List tho, atleast its now in English. Pretty weird tho, I Think I need to think of an more clever way to "Bypass" this.
Well, I Didn't come around to test out the Endoria-1 Torr portal, still needs to be Done.

In this Quick version update I just focused on the bug fixes and An new Mission Type. Have Fun
__________________
Discord: Nocalora#6847 | SW3.Expansion Thread | SWX.MouseMovementFix | SWX.TUVMark+Src (.tuv editing Tool) | SWX.SLOTMark+Src (.ini Slots editing Tool)
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 10:37 PM.


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