Alright, I've already mentioned it quietly. I'd like to work on the Devlin Opera, or at least try what I can do.
You may wonder what makes me different than all the ones before me who wanted to add to that basically non-existing storyline... Well, nothing really. But like I said, I can try and learn. I'd say I have a solid understanding of the game code although I would have a lot of questions, especially when it comes to the intricacies of the mod.
Here are a few already:
1) In the other thread @Jack Rackham made the talking head for BeatriceB,
could you send me the one for BeatriceA that you have but isn't in the mod? Also, would it be possible to add another talking head for Blaze Devlin?
2) Also mostly to Jack: Your characters like Woodes Rogers or Edgar Allan Poe have their own unqiue voice clips, where did you get them? I want to add some voices too but don't know where to get them and could use some inspiration...
3) I don't understand the initQuestItems code at all: I'm trying to add a treasure map that you get together with the letter. With copy paste it looks like that:
What do all the variables mean, including the empty ones? The 3 is the icon for the inventory, I figured that out, but I don't know the rest. Right now when I give them both to the character, I only get the new one (map overwrites letter?).
You may wonder what makes me different than all the ones before me who wanted to add to that basically non-existing storyline... Well, nothing really. But like I said, I can try and learn. I'd say I have a solid understanding of the game code although I would have a lot of questions, especially when it comes to the intricacies of the mod.
Here are a few already:
1) In the other thread @Jack Rackham made the talking head for BeatriceB,

2) Also mostly to Jack: Your characters like Woodes Rogers or Edgar Allan Poe have their own unqiue voice clips, where did you get them? I want to add some voices too but don't know where to get them and could use some inspiration...
3) I don't understand the initQuestItems code at all: I'm trying to add a treasure map that you get together with the letter. With copy paste it looks like that:
Code:
void InitQuestItems()
{
int n = QUESTITEMS_QUANTITY;
//--------------------------------------------------------------------------------------------------------------------------------------------------
// QUEST ITEMS
//------------------------------------------------------------------------------------O---------QUEST SETTINGS---------------------------O------
// QUEST ITEMS: ItmIndex picIndex | startLocation , startLocator |
// | itmID modelID | | setshown | useLocation , useLocator |
// | | txtname | picTexture | | | shownval | | quest , tex , pic |
//----------------|--|-------------------|-----------------------|----------|---|-----O-|-|--------|------|-----------|------------------O------
n = InitQuestItem(n,"a_letter", "a_letter", "", 4, 3, 0,0, "","", "","", "","",""
n = InitQuestItem(n,"first_part_map", "first_part_map", "", 4, 3, 0,0, "","", "","", "","","" );
QUESTITEMS_QUANTITY = n;
}