Page 1 of 1

Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 10:08
by Yuschri
It seems that I can't take the quest from Old Wizard, i tried many times and no dialogue leading to taking the quest
I have general magic lvl 2 and get the magic exp reset to 0% somehow
but when I ask someone who have a character with lvl 1 general magic he can take it and get the skill with ease
I end up taking Auldsbel way to get the skill :alt-4:

Re: Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 15:41
by wushin
It should have been:
  • "Thanks, that's very kind of you!"
  • "I am studying magic, can you help?"
  • "Actually I am looking for someone teaching me some more magic skills." -> For astral skill
  • "That would be very kind of you!" -> for spell
Can you tell me if these were or weren't dialogue options? and clarify whether you wanted to learn the spell or astral skill?

Re: Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 16:02
by Yuschri
well, someone in game told me that there's should be some dialogue like you mentioned
but, there is no "Actually I am looking for someone teaching me some more magic skills." for me
however the rest of the dialogue was there

ah, I wanted to learn the Astral Soul skill, and already learned the spell from him
I have taken the skill from Auldsbel though

Re: Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 18:12
by gumi
This means you do not have the focusing skill. Luca can teach it to you: https://www.themanaworld.org/index.php/Focusing_Skills

Re: Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 18:21
by wushin
https://github.com/themanaworld/tmwa-se ... l.txt#L511

Auldsbel doesn't check for skill pool, bet you don't have the focus skill yet.

Re: Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 19:07
by SDN
I believe Yuschri have the focus skill, because I'm the one who helped him get it and he's already focused on mallard's eyes. I wonder myself about this bugs. :?

Re: Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 19:10
by gumi
Well he needs to have the Astral magic school too

https://github.com/themanaworld/tmwa-se ... rd.txt#L66

Re: Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 19:14
by SDN
Hmm, i remember he said he already have the astral magic before taking the astral soul, Meko. But it's better the person himself clarifies that one. :D

Re: Old Wizard Astral Soul Skill

Posted: 25 Aug 2015, 20:24
by wushin
Aye, if they had Focus Skill then Auldsbel would teach them Astral Soul Skill, but the Old Wizard wouldn't.

Re: Old Wizard Astral Soul Skill

Posted: 26 Aug 2015, 02:24
by Yuschri
Well, I have the Astral Magic and Focusing skill, but just couldn't get the Astral Soul from the Old Wizard
hmm, not a big problem for me though, because i'm probably not going to use it (I just want to collect all the skill :mrgreen: )

Is it because I have general magic lvl 2? Because the person I ask about it try and get the skill when his character have only lvl 1 general magic

Re: Old Wizard Astral Soul Skill

Posted: 26 Aug 2015, 14:12
by Travolta
I confirm the bug.

Re: Old Wizard Astral Soul Skill

Posted: 26 Aug 2015, 14:18
by Yuschri
Thanks Travolta :)

Re: Old Wizard Astral Soul Skill

Posted: 19 Oct 2015, 22:22
by Rnuomer
I think I've found the problem in his dialog tree, https://github.com/themanaworld/tmwa-se ... wizard.txt

From line 64:

Code: Select all

 if (getskilllv(SKILL_POOL) && (getskilllv(SKILL_MAGIC_ASTRAL) < 1))
This checks if the player has learned about skills, and if their Astral magic level is less than 1.

According to the commit message where the second condition was added (Fix redoable Old Wizard Astral Skill scenario), this line should actually read:

Code: Select all

 if (getskilllv(SKILL_POOL) && (getskilllv(SKILL_ASTRAL_SOUL) < 1))