The unsolveable Iskander quest

NOTICE: This forum is archived as read only.
Please use the Github Discussions at https://github.com/exult/exult/discussions
Forum rules
NOTICE: This forum is archived as read only.
Please use the Github Discussions at https://github.com/exult/exult/discussions
Locked
Andrea B. Previtera

The unsolveable Iskander quest

Post by Andrea B. Previtera »

At least I remember is name as Iskander. I am talking of BG of course: in one of the dungeons, the one with the tetrahedron, you met two warrior girls trying to avenge their father's death by killing this cyclops.

Well, you went to the cyclops, let him tell you that he wasn't actually guilty, but nontheless you've got no way to return the information to the duo, forever stuck in the dungeon.

Same thing with the unicorn quest, I think: is there some usecode unfinished script perhaps?
SB-X
Posts: 980
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by SB-X »

I never thought they were quests.
Kuroshi
Posts: 67
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by Kuroshi »

Maybe you didn't think that because you couldn't solve them? =)
raven566
Posts: 36
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by raven566 »

I remember a while ago I was looking around in the usecode and saw the conversations for the 2 female warriors and the cyclops. The words to finish the "quest" are in there, but you never see them for some reason.

With the unicorn, you can just keep telling that guy (whatever his name is) that the unicorn says no and that's it.

Something similiar I've noticed: You can keep repeating things to NPCs even after the quests have been finished. For example, in Paws, after you solve the venom theft, you can keep telling Garrit's parents that he is innocent and to punish him and such. Is this a bug in the usecode?
SB-X
Posts: 980
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by SB-X »

I never tried to "solve" them.
Colourless
Site Admin
Posts: 731
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by Colourless »

The probably aren't bugs as such, but things that were unfinished, or classed as "don't care" problems. They are not exactly difficult things to fix in most cases. Many RPGs get such problems.
SnowyThing
Posts: 135
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by SnowyThing »

Most people like the closure for spending lots of time on little side-quests. Maybe thoughtful -added- conversation might be in order. Most people would appreciate it. :P
IgnitusDragonn
Posts: 219
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by IgnitusDragonn »

To explain this problem w/ answers not disappearing, I'll tap into my minor knowledge of usecode and the UCC compiler.

Sample code of a fix would be:

else if (response == "Found venom")
{
say("Thou didst find the venom vial in Garritt's belongings? I am amazed! I am astonished! I am-- sorry."."Thou art a resourceful person. Unfortunately, thy discovery has upset me a great deal.");
UI_remove_answer("Found venom");
}

Where the original didn't have the command to remove the answer.
So thats just an example of what I THINK is the problem.
SnowyThing
Posts: 135
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by SnowyThing »

IgnitisDragonn, thou art the true Avatar.
wjp
Site Admin
Posts: 1708
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by wjp »

else if (response == "Found venom")
{
say("Thou didst find the venom vial in Garritt's belongings? I am amazed! I am astonished! I am-- sorry."."Thou art a resourceful person. Unfortunately, thy discovery has upset me a great deal.");
UI_remove_answer("Found venom");
}
---

You realize this would only work in the current conversation right? As soon as you start a new conversation, the answer will be back.
IgnitusDragonn
Posts: 219
Joined: Thu May 14, 2020 1:34 pm

Re: The unsolveable Iskander quest

Post by IgnitusDragonn »

I didn't understand the problem then, I thought the problem was only in the answer not leaving during the conversation the valid line of reasoning(which I ignored for some reason) would be that it would appear next time you spoke. To fix the actual problem I suppose you'd need to set the game flag that determines whether the quest is still going. Or another fix would be to detect whether the Avatar had the venom in his possession, if you didn't have the venom then the question wouldn't be there.
Or better yet, if you could reset the game flag for Ferwydin to before you found the venom...that would fix it. Or if the conversation code realized you had already asked the question then it would direct you to another question like "How is Garritt?". The game has several of these conversation-bugs.
sqrfruit
Posts: 3
Joined: Thu May 14, 2020 1:34 pm

The unsolveable Unicorn quest

Post by sqrfruit »

After talking to Cosmo about his search, go back and talk to the unicorn. He'll have more to say. Though I don't think it goes any further than that, as Cosmo doesn't say anything more if you go back to talk to him.
-Kate
OS: Win98SE
Sound: ESS Allegro-1 PCI AudioDrive
Video: Trident Blade 3D/MVP4
Locked