Daggerfall Unity
0 of 0

File information

Last updated

Original upload

Created by

Jagget

Uploaded by

Jagget

Virus scan

Safe to use

Tags for this mod

25 comments

  1. IvanKuzyk
    IvanKuzyk
    • supporter
    • 5 kudos
     I don't know if the problem is in this modification, but I can't complete quests in the Mage Guild
    1. Jagget
      Jagget
      • supporter
      • 7 kudos
      Where did you get this quest? Is it the vanilla in-game quset or one of the quest packs? If it is the native in-game quest, this mod have nothing to do with it. If it's the quest pack, there could be options. 
    2. IvanKuzyk
      IvanKuzyk
      • supporter
      • 5 kudos
       Mostly from the JF and QP1 quest packs. I noticed that if you take a quest that needs to be completed in the same city where I took it, then in order to pass it, you need to restart the game.
  2. adamat0m
    adamat0m
    • member
    • 3 kudos
    player within <distance> units of foe <foe> doesn't work unless Actions Framework is enabled. Is this intended? Maybe it would be good to add it as a dependency unless it's something on my end. I had assumed we didn't need that mod anymore.

    "QuestActionsExtension continues the work started by Actions Framework.It includes the same 3 actions from Actions Framework and adds more new ones.It also supports triggers from Health Quest Actions mod"
    1. Jagget
      Jagget
      • supporter
      • 7 kudos
      You don't need Action Framework anymore. Keep in mind, that "player within 6 units" is just 1 in-game meter. I cannot change that for backward compatibility. But all 3 actions from Action Framework are carefully ported without any changes.

      Quest: __DEMO01
      DisplayName: Knight is close

      QRC:
      QuestComplete: [1004]
      I found a Knight!

      QBN:
      Place _house_ local house2
      Foe _F0_ is Knight
      change foe _F0_ infighting false
      place foe _F0_ at _house_

      _found_ task:
       player within 6 units of foe _F0_

      _close_ task:
       when _found_
       say 1004
       end quest
    2. IvanKuzyk
      IvanKuzyk
      • supporter
      • 5 kudos
      .
  3. adamat0m
    adamat0m
    • member
    • 3 kudos
    Would be really cool to see a mod for sandstorms in the desert and blizzards in the snow using the:

    reduce player health by <percent> every <interval> seconds

    And it's other derivatives.
    1. haloterm
      haloterm
      • premium
      • 3 kudos
      I think this idea would better fit the existing Climates & Calories mod.

      While we can use a quest for weather type and use the new actions to reduce health, I think to make hazards work in a good way, climate zones and protective equipment should be taken into account as well. Not sure if this could be done with quests (and adding more and more triggers and actions could become problematic in the long run; yesterday in the Discord server it was implied that the regex way of parsing quests may come to its limits soon).
    2. Jagget
      Jagget
      • supporter
      • 7 kudos
      There is standard quest trigger for climate

      climate (desert|desert2|mountain|mountainwoods|rainforest|ocean|swamp|subtropical|woodlands|hauntedwoodlands)

      climate base (desert|mountain|temperate|swamp)
  4. haloterm
    haloterm
    • premium
    • 3 kudos
    Thanks for the update!

    Do you think a feature could be added which allows me to check if a player is at a certain map coordinate (exact coordinate or in a radius of ... units around)?

    (This would allow me to do wilderness quests, esp. in conjunction with World of Daggerfall's added landmarks. For writing my quest I could simply walk to, say, a camp to find out its X/Y coordinate, and then, in the quest I could use a custom action to check if the player is at or around said X/Y coordinate to start everything else- The quest description would tell the player the location indirectly, like "in that camp two days travel east of ... there is... go there!").
    1. Jagget
      Jagget
      • supporter
      • 7 kudos
      "in that camp two days travel east of ... there is... go there!
      So Morrowind-like! Love it! Will definitely try to implement this trigger.
    2. haloterm
      haloterm
      • premium
      • 3 kudos
      This would be really awesome! Thanks for trying!
    3. Jagget
      Jagget
      • supporter
      • 7 kudos
      Incoming in 1.3.0  
    4. haloterm
      haloterm
      • premium
      • 3 kudos
      Thank you!!

      One question about the 2nd variant:

      player currentmappixel x y delta
      Is delta the radius (in map pixels) around the given x/y coordinate?
    5. Jagget
      Jagget
      • supporter
      • 7 kudos
      That's correct. Euclidean distance between 2 points
  5. adamat0m
    adamat0m
    • member
    • 3 kudos
    Having trouble with "possesses". I tried with an odd item "Telescope" but it's not working. Are there only certain things you can do with it, or certain items it works with?

    _possesses_ task:
        player possesses 1 items class 26 subclass 254

    _spawn_ task:
        when _possesses_
        say 1016
        create foe _goblin3_ every 0 minutes 1 times with 100% success
        change foe _goblin3_ infighting true
        say 1021
        say 1055
        start timer _end

    Tried "item class" instead of "items class" in case of typo. DIdnt work. Tried a different more common item. Didnt work either. Maybe theres only certain things the "when _possesses_" task can perform?

     specials Class
        Telescope 26, 0

    public enum QuestItems  //checked
        {
            Telescope = 254,
    1. Jagget
      Jagget
      • supporter
      • 7 kudos
      `possesses` command works with mundane items. Did you encounter the Telescope in the wild? Or was it created by this quest? If it's a part of the quest, it should be treated differently. Like, using actions like `clicked item`, `take item`, or `toting`, maybe. Need more info on that Telescope object. 
    2. adamat0m
      adamat0m
      • member
      • 3 kudos
      Im trying something complicated. The telescope is an item found in a dungeon needed to return to an NPC as a part of a different quest. I need to start a new quest separately at a later point, in order to spawn DEX enemies in without them defaulting to rats - the wrong enemy. More info is available about that on my arenafall enhanced mod page.

      Hence you pick up the telescope, and enemies spawn in correctly.

      So, I figured if I tried this workaround, I could still use toting for quest one to return the item to an NPC as normal and for quest two spawn the enemies upon having the item in your inventory.

      Maybe it doesn't work with quest items?

      I figured I could make it permanent and it may work. I will continue testing but perhaps the telescope is just not an item the quest action will work on.


      Edit -

      Wow I'm dumb. I could just "start quest" action on the task for picking up the telescope.

      I was so eager to try something from this mod that I rushed without thinking the obvious 😉
    3. Jagget
      Jagget
      • supporter
      • 7 kudos
      Yeah, the quest items are covered by standard commands. I'm bringing commands for non-green items. 

      I love your enthusiasm Thank you for using this mod. 
  6. haloterm
    haloterm
    • premium
    • 3 kudos
    Ah, this is useful! Can I simply replace the current installed Action mod with your's?
    1. DarthVader99
      DarthVader99
      • member
      • 0 kudos
      I'm also wondering this, as I'm using another mod that requires Actions (Captured) and I'd love to just replace Actions with this if other mods would logically work due to the same function + more.
    2. Barum
      Barum
      • member
      • 1 kudos
      I'm pretty sure you can just use this instead of Actions Framework, since it does the same and more; better wait on the confirmation by the mod author though.
    3. Jagget
      Jagget
      • supporter
      • 7 kudos
      Yes, it adds the same functions as Action Framework, so you can simply replace it with this mod.

      Health Quest Actions (required by the Captured mod) are not included yet.
    4. haloterm
      haloterm
      • premium
      • 3 kudos
      Thanks for confirming!

      Health Quest Actions? - Ah, this is another mod by another dev, ok.
    5. DarthVader99
      DarthVader99
      • member
      • 0 kudos
      Ahh yes my mistake, I mixed up Health Quest Actions and Action Framework!