Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

Jac

Ambassadors
  • Posts

    400
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Jac

  1. Does Skyrim use the <br /> command? That might help instead of using [pagebreak].
  2. Probably, but it might require some scripting. Basically attach a small script to the cubs that checks to see how close the player is to them, and if they're too close and the mother is nearby, have the mother and any others attack the player. Though changing the aggression setting might work as well.
  3. Weird. It's an attached file, so it's probably something DR will need to look into.
  4. Morrowind modding tutorials is now open for business! Post your questions and I'll try to answer.

    1. InsanitySorrow

      InsanitySorrow

      Good work Jack!, glad to see MW getting some love.

  5. I dunno. I'm seeing it and can get to it from here. Is it the Tips on Adding and Creating Dialog link? Everything linked to in here should be in this forum, I just linked them for quicker access.
  6. TIPS ON ADDING AND CREATING DIALOG When creating dialog topics, try to keep them as unique as possible. The reason for this is best explained by Psyringe: Etiquette: Some modders use symbols (+ = * / - ) at the front of their topics while others use short phrases or change the letters of a topic name (e.g. t0gether). Whichever method you choose, it’s important to make it unique. Remember that topic names will show up in dialog as hyperlinked (in blue) if an NPC’s info/response line contains the same words or phrase. Tip: AddTopic should be avoided if you want the NPC adding the topic to be able to talk about it after it has added because topics added with that function won’t show up until the player quits dialog and reenters it. If you’re adding a topic that another NPC will talk about, then AddTopic is fine. Etiquette: When adding info/response lines to an existing topic (i.e. one you did not add) or a greeting, it’s preferable to place the new line(s) somewhere in the middle of the topic or greeting if possible and to clean the insertion points. Adding lines to existing topics causes the CS to mark the line above and below as changed and this could lead to conflicts with other mods that add dialog to that topic or greeting. The best way to do this is to highlight the “changed” line(s) and replace the text with something that’s visible, such as [DELETE]. After you’re done adding dialog and are ready to test, use the TES Advanced Mod Editor (TESAME) program to “erase” these changed lines and revert them back to their original condition. After you do this, the lines will no longer have an asterisk by them and the game engine will no longer consider them changed. To use TESAME: Save your mod and close the CS.Open up TESAME and load your mod.Click on the Type tab to sort by type and scroll down until you see the [DELETE] lines.Click on each one, press the space bar to select it, and then press the <delete> key. Note: you can select and delete multiple entries.Save the mod and test it to make sure the dialog still works.
  7. SIMPLE QUEST TUTORIAL This tutorial will introduce how to write a simple quest. It will include creating journal entries, filtering, and adding info/responses to dialog topics. Open up the Construction Set (CS) and then the dialog window (either by selecting Character->Dialog or by clicking on the text balloon at the top).Click on the journal tab and add the journal topic “<your initials>_mudcrab”. Add a new info/response line of “Finding mudcrab meat” and set that to the quest name. (Note: journal topic names and dialog topics names CANNOT be the same. If they are, you will receive errors.) Below the quest name, add a new line “Teleri has asked me to retrieve some mudcrab meat for her.” Set the index to 10. Below that, add another line: “I returned some meat to Teleri and she gave some gold in exchange.” Set the index to 20 and click the finished box. This tells the game that this is the finished entry and it’s to be moved off of the player’s active quests list.Add the topic “mudcrab meat” by clicking on any dialog topic and selecting “new”. In the info/response box, add a new dialog line and type “Yes, I am short of mudcrab meat. I'll pay you if you find me some, %PCName.” Note: %PCName will show the player’s name in dialog.Set the filters to:ID: Teleri HelviFunction/Variable: Journal->”your journal entry id” < 10.Results box: journal <your journal id> 10Click on the entry and select new to create a blank entry above it. Type: “I don't see any mudcrab meat on you, %PCName.” Set the filters to:ID: Teleri HelviFunction/Variable: Journal->”your journal entry id” = 10.Function/Variable: Item->ingred_crab_meat_01 < 1.Add a new line to the very top and type, “Oh, thank you, %PCName. Here's some gold for your troubles.” (Note, you can copy the previous line and change the filters). Set the filters to:ID: Teleri HelviFunction/Variable: Journal->”your journal entry id” = 10.Function/Variable: Item->ingred_crab_meat_01 >= 1. (This is so the quest will end if the player has more than one piece of mudcrab meat.) In the Results box, add:journal "jac_mudcrab" 20 (sets the journal to the finished entry).player->additem "gold_001" 20 (gives the player 20 gold).player->removeitem "ingred_crab_meat_01" 1 (removes one piece of mudcrab meat).Click the ok button to save your dialog. Save your plugin and load it up to make sure it works properly. If it doesn't, ensure you've followed the above steps exactly.
  8. ADDING DIALOG Adding dialog is a very straightforward process depending upon what and where you’re adding dialog to. Add dialog to an existing topic (e.g. latest rumors): Find and select the topic from the topics tab. In the info/response box, right-click on an existing topic response and select new. Type in your new dialog and select any filters you want for the topic. Add dialog to a new topic Add the topic first.Right click in the tab window and select new. Type in your topic name, and then add the dialog to the info/response window. Follow the above steps for adding dialog to your new topic.Note: dialog is read from the very top line to the bottom, line by line, until the very first line that meets all of the speaker condition filters. This includes the disposition. An easy mistake to make is to have a line with disposition filter set at zero and have a line below it with a higher disposition. In this case, the line with the disposition filter of zero will always show while the line below it never will. These two lines would need to be swapped around for them to show properly. THE CHOICE FUNCTION The choice function is a very powerful and versatile dialog tool. It allows you to: Split long dialog into more manageable chunks by adding a continue choice.Add options for the player to select, which adds to role playing.Add functionality to NPCs, like companions and others (e.g. give your orders mods).You can have from 1 to 999 choices, but remember that you have to enter each choice so choose how many you want before you implement them. The format is Function->choice = <choice #>. Choices should be in reverse numerical order, with the highest number at top counting down to the line that gives the choice. The results box for the info/response line with the choice command is Choice “<choice 1>” 1 “choice 2>” 2, etc. Tip: You do not have to start with 1 as your first choice, but I find it’s easier to keep track of them that way. A simple choice: the continue choice The continue choice is used to split up dialog that exceeds the 512 character limit into two or more “paragraphs.” To implement this: Enter the first paragraph, and then use the above choice command in the results box: Choice “Continue” 1. Insert a blank line above this info line and then enter the second paragraph. Set the filters as follows: <NPC ID>, Disp 0, Function->Choice=1Adding additional choices: is a matter of adding them to the Choice command and inserting the choices above the choice line as shown in the simple choice example. Tip: A good rule of thumb is to filter by NPC ID so that you do not have to worry about your choices overlapping with those from other mods or from the ones Bethesda has already entered. Note: Two lines can use the same choice # provided they have a different NPC ID or other filters set. Otherwise, the line that’s on top will be displayed while the one below will not. If you’re having issues with choices not being shown, make sure that you do not have two lines with the same filters set.
  9. The dialog window in Morrowind is split into four parts: tabs, info/response, speaker condition, and results box. TABS TOPIC TAB The Topic tab is where all of the topics available for the player to click on are located. You can create new topics here or use existing one. To create a new topic, right click on any topic and select new. Type in the topic name and then press enter. Your topic will be added and the list will repopulate in alphabetical order. Info/Response box The Info/Response box is where the NPC replies to topics are located. In here you can: add new responses, change existing responses or delete responses. Adding new responses To add a new response for an NPC, right click on an empty line and select new. An empty line will be created and you can start typing in your new dialog. Tip: I recommend that you click on the white box just below the response box because the line editor will truncate your entry if you exceed its character limit; the response box has a larger limit (512 characters). Speaker conditions The speaker conditions section contains filters that determine when a particular NPC dialog line will show. All NPCs share the dialog database, even dialog added by other mods, so it’s important to ensure that your dialog will only be available to the NPCs you want it to and only under the conditions that you set. Filters ID The id of the NPC that speaks this line (e.g. the id caius cosades) means that only Caius Cosades will have those lines available. Note: Setting this filter prevents the race, class, faction and rank filters from being used. Race The race that will have that line available (e.g. Breton, Imperial): All members of that race can potentially speak that line. Class Same as race, but filters by class (e.g. warrior, knight, savant, alchemist, etc.). Faction Same as race, but based upon the faction the NPC belongs to (e.g. Thieves’ Guild, Fighter’s Guild, etc.) Rank Used in conjunction with the faction filter. This is used to limit the NPC response to any member of the rank within a faction and above. Example: a Knight of the Legion and any NPC with a rank above that will have that response available. Cell The NPC has to be in the cell listed to have that dialog response. Example: The members of the Thieves’ Guild will only have their dialog available if they are in one of the guild halls. If you commanded one of the members to follow you outside of the guild hall, they would loose the dialog that refers to the Thieves’ Guild (i.e. Join the Thieves’ Guild). PCFaction Similar to faction, but this applies to the player character. The NPC will only have this response if the player is in the faction listed here. Example: Imperial Legion NPCs have a different response for players that are members of the Legion versus those that are not when the player asks about joining the Legion. PCRank Same as Rank (see above), but it applies to the player character instead of the NPC. Sex The NPC’s gender. Disp The NPC’s disposition. The NPC’s disposition must be this number or higher for the response to be listed. A disposition of 0 means that the response is always available provided that the other filter conditions are met. Function/variable This holds the functions and variables that can be used to further refine when a response is available. Each filter in this function has different mathematical operators available: greater than, less than, equal to, not equal to, greater than or equal to, and less than or equal to. Journal filters the response by journal index. Can be greater than, less than, equal to, greater than or equal to, less than or equal to, or not equal to.Item filters by items in the player’s inventory. Can be used for if the player has or doesn't have an item, and also item quantity. Example: Freeing slaves: if the player has one or more keys that fit a slave’s bracers, the slave will ask them to unlock the bracers. If the player does not have a key, then the slave will mention that. If you are checking for more than one type of item, each item type (key, ingredient, etc) needs to be on a separate line.Dead The dead count of an NPC. Note: some NPCs, like guards, are generic and can have more than one in the dead count. NPCs with names are unique and there’s usually only one copy of each.Not id when set to equal to 1, this means that the NPC does not have the id listed. Example: the Master Barelo topic. When talking to any Dissident Priest other than Gilvas Barelo will give you the response “Master Gilvas Barelo is the abbot of our monastery, and the head of our secret order.” You can also set this to 0 for non-unique NPCs like guards.Global/local This is for local and global variables. These are used primarily in companion and quest mods and will be discussed in a later chapter.Not faction When set to equal 1, the NPC is not in the faction listed.Not cell When set to equal 1, the NPC is not in the cell listed.Not class When set to equal 1, the NPC is not a member of the class listed.Not race When set to equal 1, the NPC is not a member of the race listed.Not local Used primarily for the NoLore variable to prevent the NPC from having the generic responses to certain topics such as “latest rumors,” “little advice,” etc. Will be covered later.Choice Allows you to include choices. Usage covered later.VOICES TAB The voices tab is where the game stores the spoken voices for the NPCs (alarm, hello, etc.). You’ll be adding to this tab if you’re adding new spoken dialog for NPCs. Adding dialog here is the same as adding it to an existing topic, but you'll need to specify a voice file in the results box. I've never used the Voices Tab, but I can write instructions if necessary. GREETINGS TAB This tab has all of the initial written greetings used by NPCs. It functions similar to the topics tab in that the speaker conditions can be set so that the greeting is only present when the filters are met. Example: when Caius greets you for the first time, he asks if you’re the one that was to report to him. The greetings tab is subdivided into ten greetings numbered 0-9. Technically each greeting division is for a specific purpose: Greeting 0 is used by the guard NPCs for the purpose of handling punishments for crimes committed, while another one of the Greetings is for when an NPC greets a player vampire. Tip: New greetings can be placed in any of the subdivisions, but Greetings 1 seems to be the best place. Guideline: NPCs using the guard class should have their greetings in Greetings 0, especially companions to prevent them from trying to arrest the player. Other NPCs can have their greetings in Greetings 1. PERSUASION TAB This tab holds all of the NPC responses to persuasion attempts (admire, intimate and bribe). Like the other tabs, you can limit the responses to a particular NPC, a class, a race, a gender or leave it open to any NPC. JOURNAL TAB This tab contains all of the journal entries available to the player. To add a journal entry: Create a new journal topic by clicking in the tab window and selecting new. Give your new journal topic a unique name (usually your initials and whatever else you like to use (for example, I use jac_jasmine as a journal name). In the blank info/response window, select new and then type in the quest/journal name – this is what shows up in the journal’s topic name screen in game. Click the box in the Speaker Condition window that says “Quest Name” and give it an index of zero (0). Add journal entries with the first entry starting just under the quest name (this is usually the initial entry the player gets when starting a quest) and give it an index number of ten (10). Additional entries should go in order below it, starting with index twenty (20) and increasing by ten for each entry. This will give you nine (9) possible entries between entries should find you need them. Example: Quest name (index 0).Initial entry – gives the player the quest and where to start (index 10).Mid quest entry – the player got the item/killed the monster/went somewhere but hasn't finished yet (index 20).Finished entry - the player finished the quest (index 30, also the finished box was checked in speaker condition).
  10. Trying to add new dialog in Morrowind can seem a daunting task for the uninitiated, but it's actually fairly easy. This series of tutorials will walk you through what the dialog window entails and how to add your own custom dialog to Morrowind. I'm also attaching the full tutorial here if you want to read and/or refer to it offline. Table of Contents The Main Dialog WindowTopics TabVoices TabGreetings TabJournal TabPersuasion TabAdding Dialog and the Choice FunctionSimple Quest TutorialTips on Adding and Creating DialogDialog Tutorial.doc
  11. I have a sledge hammer if you need it.
  12. The quickest way I can think of is to copy the vanilla follower script and comment out the set follower count line. Then you'll need to attach that script to your follower's quest instead of the vanilla script. You may need to create a new global variable that gets set to one whenever your follower is following so you can use it to filter his lines. The tutorial I linked above will work as well, but it's more complicated than just the small modifications above.
  13. I have no problems with scantily clad women in my games. It's a game, it's not real life. If I can waggle my fingers and make something happen, then I'm not worried about attire.
  14. It's 72 game hours and I recommend a follower mod like AFT to manage your followers.
  15. I think it's ddx 1 or something, but don't quote me on that. I don't know if any of these tutorials are still around, but check the tut thread over on the Officials, TS.
  16. The CS has snap to grid I believe. I don't do house building so I don't know how useful it is.
  17. Try putting that script into the quest script instead. As for AiPackages, you cannot apply one to the player that I know of. Also, I believe they go from top to bottom in terms of priority; you can have a top package only run if certain conditions are met, forcing the game to use a lower one until said conditions are met. Also, you'll want EvaluatePackage() whenever you change packages.
  18. Oh, okay. I think it only works as a dialog fragment. If you want to use it in a quest fragment, you'll need to use <your quest name> as ARCTESTDialogQuestScript.DismissFollower(0,0) and make a property for your quest (QuestProperty as whatever) I believe. This is a script I used for Morte's recall tooth. The (JacMorteScript as JacMorteFollowerScript).DismissFollower() is what you'll need: Scriptname JacMorteToothScript extends ObjectReference Actor Property MorteRef Auto Actor Property PlayerRef Auto Armor Property MorteToothref Auto Message Property MessageBox Auto Quest Property JacMorteScript Auto Faction Property MorteFaction Auto Event OnEquipped(Actor akActor) PlayerRef = Game.GetPlayer() ;Debug.Notification ("Activating Morte's ring.") Utility.Wait(0.1) Int Choice = MessageBox.Show() If Choice == 0 Return ElseIf Choice == 1; move Morte to player MorteRef.MoveTo(PlayerRef, -120 * Math.Sin(PlayerRef.GetAngleZ()), -120 * Math.Cos(PlayerRef.GetAngleZ()), 0, abMatchRotation = true) if MorteRef.IsInFaction(MorteFaction) (JacMorteScript as JacMorteFollowerScript).SetFollower() endif ElseIf Choice == 2; send Morte home (JacMorteScript as JacMorteFollowerScript).DismissFollower() EndIf PlayerRef.UnequipItem(MorteToothRef, False, True) EndEvent
  19. This fragment should work: (GetOwningQuest() as ARCTESTDialogQuestScript).DismissFollower(0,0). Is the name of your script called "ARCTESTDialogQuestScript" and are you using that fragment in the on end of the dialog where you're calling it? I wrote that tutorial, so if something isn't working or isn't clear, I'd like to know so I can update it.
  20. Yes, that's perfect!
  21. You can't really go wrong with ASUS and being a Z board, you can overclock your CPU.
  22. I'm sorely tempted to replace my G2358 with an i5. Maybe if I can convince the missus she needs a faster CPU...
  23. Plus the 970 is a double height card so it takes up two slots instead of one. I have less than an inch of clearance between my sound card and my GPU, which is why I'm getting a larger MB. And Amazon has a great return policy, so I would just call them and tell them you want to swap out your MB with something else. My GPU gets so hot, I can feel the heat on the case...not good. I have a CPU fan like yours and I like it. I can't overclock very far because of the MB, but I haven't had any heat related issues like I used to with my old AMD CPU. Make sure you put some thermal paste on your CPU before you install it and install the fan before you put the MB into the case due to the backplate. Good luck and happy gaming.
×
×
  • Create New...