*SPOILERS*
My game seems to have been bugged in some way. Edwin got transformed to Edwina by the Nether scroll quest. I also got the Five Flagorn's playhouse. The problem is that neither of the plots seem to advance any further. Edwin is stuck as Edwina, and I haven't had the encounter with someone seeking Edwin, that I read that you should get. The Five Flagorns quest (I'm playing a Blade) have only advanced to where I have chosen who is to play the lead role, and then he tells me to come back when rehearsals are done in 6-7 weeks. Problem is this: even if I travel around so 50+ days have passed from he telling me this, nothing happens! Nor does Edwins quest progress.
I've done pretty much everything possible in SoA now (including the entire Watcher's Keep while waiting for the stronghold quest to progress, which it didn't). I want to see theese two quests out though, especially the stronghold one. Any ideas on what to do to force them forward?
Maybe spawning the NPC that should approach Edwina? (Don't know his name). Also maybe spawning the Playhouse messenger-boy will work (again, name?). Change some global vars?
Help appreciated
Bugged Edwina and Bard stronghold?
- GenericUser1994
- Posts: 21
- Joined: Sun Mar 08, 2009 6:30 pm
- Contact:
Bugged Edwina and Bard stronghold?
Reading this text constitutes a copyright infringement. You are under arrest.
I had the same problem with the playhouse, Higgold appeared for the first time, but the messenger boy never appeared to tell me that Higgold is waiting for me.I continued playing the game, because I've already done playhouse quests before when I played the game.I never tried solving that problem, but I guess that in my case spawning messenger boy or Higgold should solve the problem, you just have to spawn 'correct' Higgold/messenger according to the codes.
A bit off-topic, but still:I had quite few bugs with a playhouse in the past, the major bug was when my class was FIGHTER but after I betrayed Raelis Shai and her party to Lord Darkwood, Samuel appeared and gave me the deed for playhouse!
I don't know about Edwin - in my game he never changed to Edwina because I chose 'wrong' dialogue option when he found the Nether scroll.
A bit off-topic, but still:I had quite few bugs with a playhouse in the past, the major bug was when my class was FIGHTER but after I betrayed Raelis Shai and her party to Lord Darkwood, Samuel appeared and gave me the deed for playhouse!
I don't know about Edwin - in my game he never changed to Edwina because I chose 'wrong' dialogue option when he found the Nether scroll.
- GenericUser1994
- Posts: 21
- Joined: Sun Mar 08, 2009 6:30 pm
- Contact:
Did some trial and error NPC-spawning and found out that Edwins quest was solved by spawning a guy called Degardan (only his creature code is DEGARD). The code for Meck the messenger boy was harder to figure out. Infinity explorer and checking out the scripts led me to find the code below. Basically the stronghold quest stops advancing in chapter 7. Which sucks imo, because I am in Chapter7 and now I won't be able to play this quest to the end. Spawning the messenger boy will do nothing btw (bdgoph01 is Meck).
Code: Select all
IF
GlobalTimerExpired("MeetHiggin","GLOBAL")
!Global("Chapter","GLOBAL",4)
!Global("Chapter","GLOBAL",5)
!Global("Chapter","GLOBAL",7)
AreaType(CITY)
!AreaCheck("AR2000")
Global("BardPlot1","GLOBAL",3)
OR(3)
AreaType(OUTDOOR)
AreaCheck("AR0522")
AreaCheck("AR0511")
THEN
RESPONSE #100
SetGlobal("BardPlot1","GLOBAL",4)
SetGlobal("BardPlotOn","GLOBAL",1)
CreateCreatureObjectOffScreen("bdgoph01",Player1,0,0,0)
EN
Reading this text constitutes a copyright infringement. You are under arrest.