Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

Journal Entry Tutorial

Page: 1 of 1
 harIII
09-05-2010, 11:16 PM
#1
Journal Entry Tutorial

I can't remember if this area has already been covered but I made this for originally for Canderis in one of his projects and hopefully it will help all of those who are in need of making quests for their mods. Creating your own custom quests is a really easy process, you only need to edit one file and generally use two scripts; one to make a journal entry active and another to check to see if it’s active. So let’s get started.

1. Creating your new quest

First of all you need to open up the file that sets up the journal entries in the game. To do this go to BIFs/dialog.bif/Journal File/global.jrl
In the file is a list of all of the quests and their entries. To make your new quest you need to copy and paste a struct. Here is a description of all the fields you need to use.

1. Comment: Doesn’t really do anything, just for personal reference.

2. Entry List: In here is a list of structs that act as the entries for each quest, for every entry you need a struct.

3. End: If this is set to 0, it will consider the entry as an active quest and if it’s set to 1, it is considered completed.

4. ID: You need to set this to any number (I usually set it to 1 and increase it from there for the following entries).

5. Test: This is where you see the actual information describing the entry of the quest.

6. XP_Percentage: This is how much experience points are earned when the entry is activated. I’ve had a problem with using this so I’ve generally used a script to give me the proper experience. Apparently it is multiplied by a number, I think 5 and the total is what you really receive in the game.

7. Name: This is the name that the quest appears as in the Journal Menu.

8. PlanetID: This field sets what planet name appears on the Quest. You can see what planet number should be set in the Planetary.2da file.

9. PlotIndex: If it does something I’m not familiar with it.

10. Priority: This sets the importance of the quest from highest to lowest meaning does it appear at the top of the list or the bottom. 0 is the highest and 5 is the lowest.

11. Tag: This is the reference used to locate the quest by script.

At this point you should be set and be ready to see the quest in game.

2. Activating the quest and journal entry

At this point you’re ready to activate the quest in game. You need to use this script and somehow execute it in the game, most of the time it is done through dialogs but can be used in cases such as whenever you open a door, pass through a trigger, or kill a target. Note that there are two different ones:


This one will simply activate an entry
void main() {
AddJournalQuestEntry("tag",1);
}

This one will actually change the entry to a prior entry (note that you cannot go backwards with the script above, only forwards - this will allow you to go backwards)
void main() {
AddJournalQuestEntry("tag", 1, TRUE);
}


1 can be whatever number applies to the desired journal entry.

The other script that would be used as a conditional script to check to see if a particular entry of a quest is active which will be mainly used in dialog (note that there are five different scripts):


This script will see if the journal entry equals a specific number:
int StartingConditional() {
return (GetJournalEntry("tag") == 1);
}

This script will see if the journal entry is greater than a specific number:
int StartingConditional() {
return (GetJournalEntry("tag") > 1);
}

This script will see if the journal entry is greater than or equal to a specific number:
int StartingConditional() {
return (GetJournalEntry("tag") >= 1);
}

This script will see if the journal entry is less than a specific number:
int StartingConditional() {
return (GetJournalEntry("tag") < 1);
}

This script will see if the journal entry is less than or equal to a specific number:
int StartingConditional() {
return (GetJournalEntry("tag") <= 1);
}



Remember that the first script to activate the journal can be used in a variety of ways allowing you to be very flexible in how to execute the script while the conditional script will give you a way to make something happen should a particular journal entry be active.

At this point you should be able to go into the game and see the quest once you execute the script. If you need any other information as to how to do this please feel free to ask by pming me here at Lucasforums.
 Nick Vader
09-08-2010, 8:46 AM
#2
Man! Finally... Just... finallyXD.

This will surely help our modding community harIII, and I personally thank you for solving countless problems I was facing...:thmbup1:
 Tigersong
11-14-2012, 2:40 PM
#3
What kind of program should be used to open the journal file?
 Marius Fett
11-14-2012, 5:40 PM
#4
K-GFF is your best bet, Tigersong.
 Tigersong
11-14-2012, 7:06 PM
#5
Well, like all apprentices, I have another question. How do I change existing journal entries? Is it even possible?
 Marius Fett
11-14-2012, 7:19 PM
#6
Ja, you can edit them with K-GFF when you open the global.jrl file. :)
 Hassat Hunter
11-15-2012, 2:53 AM
#7
Hint for anyone using this, atleast for TSL, adding a string with the quest entry breaks KSE. Adding a new dialog.tlk entry and referencing to that will not cause said issue.

Also, TSL has a lot better ways to handle quests in dialog through the dialog editor and pre-set scripts for checking quest status in dialogs...
 Scorge
11-15-2012, 3:51 PM
#8
8. PlanetID: This field sets what planet name appears on the Quest. You can see what planet number should be set in the Planetary.2da file.

I have a question about this, if you don't want to put the planet ID in there can you just leave it blank or -1? I'm asking in case it doesn't bug out.
 Hassat Hunter
11-15-2012, 5:48 PM
#9
For a planetless quest you need to enter -1.
Page: 1 of 1