Talk:Bethesda Tutorial Radiant Quests

From the CreationKit Wiki
Revision as of 21:41, 6 February 2015 by imported>Lmstearn (→‎Some ThiefLocation Aliases not Filling)
Jump to navigation Jump to search

Alias_ThiefLocation.GetReference().AddToMap() is giving me problems: claiming that 'GetReference' doesn't exist, etc. I've configured ThiefLocation as shown and for whatever reason, it won't work. Any info on what I'm doing wrong? --Roarian 22:45, 11 February 2012 (EST)

Found what was wrong with the existing explanation and fixed it to the best of my ability. --Roarian 00:39, 12 February 2012 (EST)

Engine Bug regarding the Map

Get the radiant quest to kill the thief at Bthalft and return to Mixwater Mill via clicking "M" on the quest objective. The quest arrow on Mixwater Mill shows up all fine and dandy, but the mill icon to facilitate fast travel never pops up. Travel to another location e.g Broken Limb Camp, and the Mill icon returns. The bug might not be replicated at higher resolutions (mine was 1366 X 768)--Lmstearn (talk) 2015-02-04T06:31:57 (EST)

Dirty Thief is still at Reachwind Eyrie

Even though Reachwind Eyrie is not a radiant location anymore, the Dirty Thief (albeit disabled) is still there. This may not be of concern to all perfectionists, but placed him in a corner of MixwatermillWorkershouse anyway.--Lmstearn (talk) 2015-02-06T00:11:27 (EST)

"But That is Left as an Exercise for the Reader" -Hold Locations

--Spoiler Alert--

  • Create 9 location aliases for the Holds for the specific locations:
   EastmarchHoldLocation
   FalkreathHoldLocation
   HaafingarHoldLocation
   HjaalmarchHoldLocation
   PaleHoldLocation
   ReachHoldLocation
   RiftHoldLocationHoldLocation
   WhiterunHoldLocation
   WinterholdHoldLocation
  • Reorder the Quest Alias list thus:
   ThiefLocation
   LocationMarker
   Thief
   Bendu
   Amulet
   Gilfre
   All the hold aliases
  • Go to Dialogue Views and add a condition in the Topic info for GSQ01MeetingBenduYes, "Oh Thank you so much...":
   Function Name: GetIsEditorLocAlias
   Fill the alias with the name supplied for the EastmarchHoldLocation (mine was EastmarchHold)
   Run on Quest Alias, and choose the LocationMarker for the Alias.
  • Change the middle part of the info response to something like: "It's been taken to a place somewhere in the Hold of Eastmarch." and change the recorded wav file accordingly.


  • Right click on the white topic info box and select copy. Do this 8 times, the new topic boxes may require resizing and re-positioning during the copy.


  • For each Hold: Fill the condition alias with the appropriate Hold, change the info response, and make a new recording.--Lmstearn (talk) 2015-02-06T05:50:34 (EST)

Some ThiefLocation Aliases not Filling

This happens in perhaps as much as 1 in 3 game loads. But here we are using a game save that's more than halfway to completion. Some of the radiant locations have already been reserved by other quests. In an attempt o get an idea of what they are, trying something like

   Location myThiefLocation = Alias_ThiefLocation.GetLocation()
   Debug.MessageBox(myThiefLocation)


in the Stage 0 fragment. Unfortunately this fails because the quest doesn't even reach stage 0. To avoid the solitary "Sorry, Not right now" a workaround might be to:

  • Use "optional"


  • This requires "optional" anyway:
   EmptyRefAlias
   ForceLocationTo_-_LocationAlias


  • Get the mod subscribers to start a new game. :P --Lmstearn (talk) 2015-02-06T16:54:26 (EST)