![]() |
||||||||||||||||||||||||||||
Understanding and Adding Infocards - Printable Version +- Discovery Gaming Community (https://discoverygc.com/forums) +-- Forum: Discovery Development (https://discoverygc.com/forums/forumdisplay.php?fid=7) +--- Forum: Discovery Developers Forum (https://discoverygc.com/forums/forumdisplay.php?fid=183) +---- Forum: Freelancer Modding Tutorials (https://discoverygc.com/forums/forumdisplay.php?fid=36) +---- Thread: Understanding and Adding Infocards (/showthread.php?tid=204141) |
||||||||||||||||||||||||||||
Understanding and Adding Infocards - jammi - 07-25-2024 This is a brief guide on how to use FL-IE and update infocards in Freelancer. 1. Using Freelancer Infocard Importer/Exporter. 2. Understanding infocards and XML. 3. Implementing base and object infocards. 4. Rumours and Bar NPCs. 5. Custom Rep Bribes. 6. Custom Knowledge Bribes. 1. Using Freelancer Infocard Importer/Exporter. First of all, you're going to need a copy of Freelancer Infocard Importer/Exporter. This can be used as both a viewer to search for particular keywords across game infocards, and also as ![]() NOTE: DO NOT MAKE CHANGES TO THE COPY OF THE GAME YOU CONNECT TO THE SERVER WITH. The file changes will be flagged by the anticheat and you'll cop a ban. Use a duplicate test build for any experimenting you want to do. First close any copies of Freelancer you have running, then open FL-IE. Every time you open FL-IE, you must load the infocards you want to use. To do this, copy and paste the file path to Freelancer's root directory into the "Freelancer path" box. Once this is done, click "Load". After this, FL-IE should provide a list of all the DLLs it has successfully loaded (or not), and how many infocards it has loaded. If any errors are reported and a DLL hasn't been loaded, this is likely because you have a copy of the game running, which is basically "locking" those files. FL-IE will remember the last file path you used, so you won't need to manually re-enter the Freelancer directory each time you use it. The next step will depend on whether you are an official Discovery developer, or simply working on your own project.
To do this, hit the "Import" button, and then select the .txt file you've been working on. FL-IE will present a before-and-after of all the infocards you have added or updated, and provide a confirmation of the number of unchanged, changed and entirely new infocards imported. If this looks right, hit "Save". FL-IE will again provide a log of all of the DLLs it is updating, with a confirmation of "Done" when it is finished. Again, if there are any errors during this process, it is usually because an instance of the game is running. Congratulations, your revised text is now saved to the game! We'll cover how you make this text appear where you want it later on. Finally, a basic but extremely useful feature can be found by clicking the Browse tab. This is the infocard viewer, allowing you to search all of the game's infocards using keywords. When you select an infocard, the top window on the right displays the raw text / XML, while the bottom window on the right displays the formatted end result. 2. Understanding infocards and XML. An infocard is basically a section of text that is linked to a unique serial number, called an IDS reference. This number is then use by the game to decide what text is presented where. There are two categories of infocard:
FL-IE reads infocards in a very simple way. Here is an example of both a NAME and INFOCARD for reference: Code: 33939 Every infocard starts with its unique IDS reference number, then either NAME or INFOCARD, and finally the text itself. Infocard text must all be written on a single line - line breaks in-game are added through text formatting. Including an actual line break in this .txt file will ruin the output when you try to display the infocard in-game. NOTE: Any line in either infocards.txt or one of Freelancer's .ini files that is prefixed by a ;semi colon won't be read by FL-IE or the game itself. This can be used to add comments to make things more readable for humans. Formatting NAME text: NAME text is very simple, being displayed as plaintext. This means you cannot format them with colours, italics, bold, etc. The only formatting that NAME cards can use is linebreaks, which are added by including \n in the text. Formatting INFOCARD text: All infocards must be written in valid XML. Some important tips to remember:
3. Implementing Base and Object Infocards. Now we're going to look at how to assign text to an object in the actual game world. Where you have imported an edited infocards.txt using FL-IE, this means those infocards are now saved to the game's DLLs and associated with a unique IDS reference. This guide will be focusing on how to update the infocard of an existing base or object, rather than how to create new entities from scratch. This is also going to focus on how to use the game's .ini files, rather than system modding tools like Freelancer Mod Studio, although that may be covered in a later tutorial on system modding. Each system in the game has its own .ini file containing all of the bases, objects, zones, NPC encounters, etc inside that system. First, I would suggest opening up DarkStat. This is an incredibly powerful reference tool for all sorts of data in the game, however what we're mainly interested in right now are internal nicknames. Every system and entity within a system has a unique internal nickname. Looking on DarkStat's Bases tab, find a station you are interested in. You will notice that on the right, there is a column for base nickname, and system nickname. For now, lets look at Waterloo Station in New London. This is br01_04_base, with New London itself being br01. Next, in your experimental Freelancer build's main directory, navigate to: DATA\UNIVERSE\SYSTEMS In the SYSTEMS folder, every system in the game has its own subfolder. Open the Br01 folder, then Br01.ini - this is New London's system file. Once it's open, hit CTRL+F and enter br01_04_base. This will give you the following entry: Code: [Object] The parts that are currently of interest to us are IDS_name and IDS_info. As you might expect, IDS_Name is the object's name. Use CTRL+F in your infocards.txt and look up 196661 - you will see that this says "Waterloo Station". Overwriting the infocards.txt entry for this IDS reference, importing it into FL-IE and then saving will change the name of the station in-game. If you want to replace the IDS_name of a dockable base with a new number for some reason (or you are creating a new base), you must also edit another file. Open: DATA\UNIVERSE\universe.ini This file keeps track of which system dockable bases are located in, and makes their names appear properly in your contacts window. Having bases in the wrong system causes crashes, but for now all we're interested in is making sure the name is correct. Look up Waterloo's internal nickname again, and you will find the following entry: Code: [Base] All we need to do here is make sure the strid_name matches the IDS_name assigned in the system file. If you're changing the number, make sure to change it in both places. Next, the IDS_info value works slightly differently depending on whether the object is a dockable base or not. For dockable stations, the IDS_info data is the text that you can see using F9 before you dock with the base. Waterloo is a typical example, providing fluff information about the station class, amenities, crew, etc. Code: <?xml version="1.0" encoding="UTF-16"?><RDL><PUSH/><TEXT>CLASS: Zeus</TEXT><PARA/><TEXT>GRAVITY: Complete</TEXT><PARA/><TEXT>DOCKING: Yes</TEXT><PARA/><TEXT>AMENITIES: Yes</TEXT><PARA/><TEXT>CREW: 1090</TEXT><PARA/><POP/></RDL> The rest of the infocard is hidden until you dock. Interestingly, you'll notice that there is no third infocard parameter in Waterloo's Object entry in the system file. So how does the game know where to find the rest of the base description? For this, we need to look in another file: DATA\INTERFACE\InfocardMap.ini InfocardMap creates linked pairs of infocards for dockable stations. If you use CTRL+F and search for 65727 (Waterloo's IDS_info value), you will find this: Map = 65727, 65728 This is telling the game that when you dock on the object associated with IDS 65727, it must append IDS 65728 to the end of the station's description. If you are editing an existing station's infocard, you don't need to worry too much about this. If you are adding a brand-new station or changing a station's IDS_info number, you will need to add an InfocardMap entry too. Objects that aren't dockable stations are much more straightforward - the full infocard is simply included under a single reference in IDS_info. Note that some kinds of Objects are not able to display infocards. This depends on the Object's Archetype (Waterloo's is largestation1), which is defined in DATA\SOLAR\SolarArch.ini - this is really a system modding issue, so it will be covered in more detail in a later tutorial. An extreme simplification is that only Archetypes with the Type of either MISSION_SATELLITE or STATION can have both IDS_names and IDS_infocards freely assigned. Other types either cannot display infocards at all, or make use of specific hardcoded infocards for their name, infocard or both. 4. Rumours and Bar NPCs. Next we're going to look at how to set up NPCs in a station bar, and assign rumours to them. This primarily focuses on a file called mBases.ini, which is found in: DATA\MISSIONS\mBases.ini. Every dockable base has an entry in mBases. Each entry begins with an [mBase] block, with everything underneath relating to that base until another [mBase] block is encountered. Today we're going to be looking at Planet Holstein as an example. This is what the initial sections of Holstein's entry looks like: Code: [MBase] We'll focus on [BaseFaction] for now. These sections have several functions - for example, before an NPC faction is allowed to dock on a station, it must have an associated [BaseFaction] block defined. This is significant, as an NPC spawning or ending a patrol / trade path with no valid destination in range will cause a crash. Most importantly for our purposes however, [BaseFaction] also lists all of the non-vendor NPCs that are allowed to appear inside the station's rooms. We'll now look at what each of the parameters in a [BaseFaction] block does.
![]() Code: [GF_NPC] This is Arlo Griswold, a corporate liaison for The Core's Holestein office. He's the sort to wear a poorly tailored suit and sunglasses indoors - real swell guy. Lets have a look at the parameters that go into building an NPC:
The above gives you a significant amount of flexibility in how NPCs are portrayed. For example, you can use individual_names for factions that don't mechanically exist in the game ("Holstein Citizen"), or even more subtle effects like espionage. An example of this would be setting an NPC's affiliation to The Order, placing them on a Military / Navy base they are nominally hostile to*, and then providing an individual_name and body type that outwardly displays them as a member of the faction they're hiding inside. Assigned rumours could then be set to a rep value of '3', meaning you'd need to be friendly to The Order before that particular NPC would give you any of their rumours containing secret intel about their spying activities. *NOTE: Don't do this if the hostile faction can spawn NPCs near the station. By defining the faction in a [BaseFaction] block, they'll try to dock on the hostile station and cause a crash. When you assign rumours to an NPC, remember that a player can only view these once per NPC, per character. That means if someone is repeatedly visiting a base, eventually the NPCs will run out of rumours to serve. Assigning missions to some of the NPC can be a way of giving them some permanent utility regardless. Next, we'll look at the blocks that set out the rooms on the base. Code: [MRoom] Character density sets the maximum number of NPCs that are allowed to appear in the room at once. This can be set to any arbitrarily high value you want, however as noted above, each room only has a finite number of hardpoints for NPCs to sit and stand on. You can set the density to 200, but if there's only 5 places to stand, you're still only getting 5 NPCs in the room. The fixture parameter is used to specify which NPCs are vendors that will be permanently stationed in a predefined spot. These are your bartenders, and commodity, equipment and ship dealers. You don't need to define these NPCs in the [BaseFaction] block - you're doing it here instead. 5. Custom Rep Bribes. Finally, we'll be looking at how to set up reputation bribes and knowledge bribes for base NPCs. This is also done through the [GF_NPC] blocks in a station's mBases entry, so see above to familiarize yourself with that file. Rep bribes are used to set your character reputation friendly to a certain faction, although this will damage your reputation with that faction's enemies. Knowledge bribes add information to your navmap by changing what's known as a visit flag for particular object(s). The vanilla game has a small number of standardised infocards it uses for these bribes, which you're probably familiar with. These aren't actually hardcoded, and you can set up your own completely bespoke text for these offers. Lets look at Holstein's bartender: Code: [GF_NPC] This NPC offers a number of different rep bribes and a single knowledge bribe. You can include as many rep or knowledge bribes as you want on a single NPC - the NPC will select one of the valid offers at random for the player so long as they meet the necessary rep requirements. The bribe parameter works as follows:
Code: 504724 As you can see, these are basic plaintext infocards, however the game knows to replace certain parts of the text with relevant information. These include:
Code: 33644 He wears his shades indoors, that's how you know he's charismatic! 5. Custom Knowledge Bribes. Next up, knowledge bribes. These are slightly more involved, and work by manipulating "visit flags". First we'll review how they're used in the [GF_NPC] blocks in mBases: know = 33404, 33405, 500, 3
Code: 33404 ![]() Currently this knowledge bribe doesn't actually do anything. The final piece can be found in another file. We'll now need to open: DATA\INTERFACE\KnowledgeMap.ini KnowledgeMap.ini works a lot like InfocardMap.ini which we looked at earlier on. Basically, when you view the specified infocard, it triggers additional effects. The entry for this knowledge bribe looks like this: Map = 33405, RH04_hiddencache, 1
Despite this, system modders can set a specific visit flag when they design an Object if they want to cause a particular effect. Most often, this is using the visit flag "128", which makes an object impossible to map, meaning it can never be discovered on the map and will appear as "Unknown Object" if you select it. Purchasing a knowledge bribe forces the visit flag to whatever the bribe specifies. This means you can use it to forcibly map secret objects, such as hidden bases. The visit flags the game uses look like this:
For example, if you want your bribe to provide the location of a station, but not any of the internal information you'd get from docking, you'd use a visit flag of 1. If you wanted to map the location and the detailed internal infocard, but not any of the commodity, equipment or ship details, you'd use 3 (1 + 2). If you wanted to provide all information about a base including trade data, you'd use 31 (1+2+4+8+16). To reveal an asteroid field, its infocard and its mining zone, you'd use 44 (4+8+32). You should now experiment with setting some of these knowledge bribes up, and checking whether the correct infocard details have been revealed. If your bribe is working properly, on purchasing the information and closing the confirmation window, your map should immediately open and zoom in on the relevant object. It's also worth noting that you can include multiple "Map =" entries for the same infocard. This means you could for example set up a knowledge bribe to sell players the data on all the stations of a particular faction, system or region. You need to add a new Map entry in KnowledgeMap for each individual Object you want to have mapped. Now, use this information well, and feel free to ask here if you have questions! RE: Understanding and Adding Infocards - jammi - 07-26-2024 Tutorial complete - feel free to ask here if you have questions and need help! |