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
  #1  
Old 06-10-2010, 01:36 PM
Trucidation
Guest
 
Posts: n/a
Default

Tracking down the pilot was easy. Dialog xml file gives <pilot_name>, which you look up in \Data\Game\Pilots.xml, which points to a string in \Data\LocData\English\m_pilots.loc.

In this guy's case, just match the blue stuff:
1) Dialog.xml: <pilot_name> --> VksOfficer
2) Pilots.xml: <GamePilot name="VksOfficer">; and callsign --> #M_pilot_Name_VksOfficer
3) m_pilots.loc: #M_pilot_Name_VksOfficer = MSF lieutenant (whom I renamed, as seen in the screenshot)

The pilot's icon, perks, and all other crap are in Pilots.xml so if you feel like changing more stuff it's all in there.
Attached Images
File Type: jpg StarWolves3--689.JPG (62.0 KB, 42 views)
Reply With Quote
  #2  
Old 06-10-2010, 01:58 PM
Nanaki Nanaki is offline
Approved Member
 
Join Date: Mar 2010
Posts: 338
Default

Quote:
The pilot's icon, perks, and all other crap are in Pilots.xml so if you feel like changing more stuff it's all in there.
Changing perk trees is a helluva rollercoaster, considering that you have to also edit pilotdefinitions.script as well as the texture file for the Pilot perks. Although I did make a perk tree with practically every perk in the game on it.

You can also change the pilot face icon for the pilot perks.
Reply With Quote
  #3  
Old 06-10-2010, 02:25 PM
Goblin Wizard Goblin Wizard is offline
Approved Member
 
Join Date: Oct 2008
Posts: 508
Default

Quote:
Originally Posted by Rastix View Post
"FILETYPE STANDART" wouldn't work properly with "active dialogs" tasks
This is actually true. Not only active dialogs are affected. It's hard to explain because not each dialog is displayed wrong. From time to time you'll see "#string_name String not found".
Reply With Quote
  #4  
Old 06-10-2010, 06:02 PM
Rastix Rastix is offline
Approved Member
 
Join Date: Jul 2008
Posts: 79
Default

Quote:
Originally Posted by Goblin Wizard View Post
This is actually true. Not only active dialogs are affected. It's hard to explain because not each dialog is displayed wrong. From time to time you'll see "#string_name String not found".
I know 2 ways to avoid filetype_dynamic if you'll want to make your own story but i am recommend waiting for patch 1.12 as it gives new filetype specially for modding
Reply With Quote
  #5  
Old 06-10-2010, 06:45 PM
Goblin Wizard Goblin Wizard is offline
Approved Member
 
Join Date: Oct 2008
Posts: 508
Default

Quote:
Originally Posted by Rastix View Post
I know 2 ways to avoid filetype_dynamic if you'll want to make your own story but i am recommend waiting for patch 1.12 as it gives new filetype specially for modding
I'm not good at waiting so what's your solutions?

"To be 100% sure everything works you have to type whole text in the xml file." - Is that kind of solution?
Reply With Quote
  #6  
Old 06-10-2010, 09:16 PM
Rastix Rastix is offline
Approved Member
 
Join Date: Jul 2008
Posts: 79
Default

I don't know anything about THIS method
Reply With Quote
  #7  
Old 06-11-2010, 12:30 AM
Trucidation
Guest
 
Posts: n/a
Default

Perhaps you mean entering the text directly into the Dialog xml instead of making it refer to a loc file? I'm not sure if that works, I'll go test if it allows you to enter text instead of a #string in the <message> and <answer> tags.

Edit:
Ah, yes it seems to work. I edited the XML and replaced the #string with plaintext (screenshot 1) and tried it in the game (screenshot 2). I guess this is what he meant by putting the text directly into the XML.

The xml file doesn't specify the name of the loc file it refers to, I guess the game simply recycles the name. I suppose if we put all the text into the xml, you still need the loc file but we can leave empty except for the header comments.

Edit:
Fixed the screenshot, was using an old one.
Attached Images
File Type: jpg StarWolves3--691.JPG (61.1 KB, 39 views)
File Type: jpg StarWolves3--692.JPG (52.0 KB, 50 views)

Last edited by Trucidation; 06-11-2010 at 02:46 AM.
Reply With Quote
  #8  
Old 06-11-2010, 07:18 AM
Goblin Wizard Goblin Wizard is offline
Approved Member
 
Join Date: Oct 2008
Posts: 508
Default

Quote:
Originally Posted by Rastix View Post
I don't know anything about THIS method
What about your solutions? Please, share your secrets.
Reply With Quote
  #9  
Old 06-10-2010, 03:47 PM
Trucidation
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Nanaki View Post
Changing perk trees is a helluva rollercoaster, considering that you have to also edit pilotdefinitions.script as well as the texture file for the Pilot perks.
Hmm, the definitions are in \Data\Scripts\include\PilotProperties.script, you mean, not "pilotdefinitions.script"? couldn't find that.

I understand what you mean about the UI. \Data\TEXTURE\Interface\Pilot\PerkTree\ pretty much tells me each pilot has to have their own graphic, and the .ini file to show which perk slot goes where.

But this doesn't tell us the prerequisites perks, right? E.g. to learn skill X, skill Y must be learned first <-- where is this determined?
Edit:
Hmm, is it those ugly properties_<pilot name> = { ... } structures inside PilotProperties.script? That does look likely but I don't understand the { numbers } stuff. Wait, I think I got it... the number is the perk's cost in exp points, then anything following that in the nested {} are the prerequisites. Ok, I think I understand.

Last edited by Trucidation; 06-10-2010 at 04:01 PM.
Reply With Quote
  #10  
Old 06-10-2010, 03:57 PM
Nanaki Nanaki is offline
Approved Member
 
Join Date: Mar 2010
Posts: 338
Default

Quote:
Hmm, the definitions are in \Data\Scripts\include\PilotProperties.script, you mean, not "pilotdefinitions.script"? couldn't find that.
Yeah, I must have been half-asleep when I originally typed that.

Quote:
But this doesn't tell us the prerequisites perks, right? E.g. to learn skill X, skill Y must be learned first <-- where is this determined?
Pilotproperties.script.

Quote:
Hmm, is it those ugly properties_<pilot name> = { ... } structures inside PilotProperties.script? That does look likely but I don't understand the { numbers } stuff.
Lets grab an example.

F_Weapon_Laser = {50,{"Gunnery_2"},{"F_Weapon_HC","F_Weapon_AC"}},

F_weapon_Laser is the perk.
50 is the amount of skill points required to purchase the perk.
{"Gunnery_2"} is the skill required to purchase the perk. You can have multiple pre-requisites.
{"F_Weapon_HC","F_Weapon_AC"} is rarely used in most perks (usually blank), and it means that if you purchase either F_Weapon_HC Perk, or F_Weapon_AC Perks, then you cannot get F_Weapon_Laser perk.

Last edited by Nanaki; 06-10-2010 at 04:01 PM.
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 11:42 AM.


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