Old Wizard Astral Soul Skill

Ask for help regarding any technical issue or report any bug or OS independent issues.
Post Reply
Yuschri
Newly Registered User
Posts: 11
Joined: 24 Aug 2015, 19:33
Location: Indonesia

Old Wizard Astral Soul Skill

Post 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:
User avatar
wushin
TMW Adviser
TMW Adviser
Posts: 1759
Joined: 18 Dec 2012, 05:56
Location: RiverBest, Brew City, Merica
Contact:

Re: Old Wizard Astral Soul Skill

Post 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?
The secret to getting all the important stuff done is doing nothing.
Yuschri
Newly Registered User
Posts: 11
Joined: 24 Aug 2015, 19:33
Location: Indonesia

Re: Old Wizard Astral Soul Skill

Post 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
User avatar
gumi
TMW Adviser
TMW Adviser
Posts: 797
Joined: 19 May 2014, 18:18

Re: Old Wizard Astral Soul Skill

Post 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
User avatar
wushin
TMW Adviser
TMW Adviser
Posts: 1759
Joined: 18 Dec 2012, 05:56
Location: RiverBest, Brew City, Merica
Contact:

Re: Old Wizard Astral Soul Skill

Post 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.
The secret to getting all the important stuff done is doing nothing.
User avatar
SDN
Novice
Novice
Posts: 104
Joined: 22 Dec 2014, 12:38
Location: Indonesia

Re: Old Wizard Astral Soul Skill

Post 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. :?
User avatar
gumi
TMW Adviser
TMW Adviser
Posts: 797
Joined: 19 May 2014, 18:18

Re: Old Wizard Astral Soul Skill

Post by gumi »

Well he needs to have the Astral magic school too

https://github.com/themanaworld/tmwa-se ... rd.txt#L66
User avatar
SDN
Novice
Novice
Posts: 104
Joined: 22 Dec 2014, 12:38
Location: Indonesia

Re: Old Wizard Astral Soul Skill

Post 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
User avatar
wushin
TMW Adviser
TMW Adviser
Posts: 1759
Joined: 18 Dec 2012, 05:56
Location: RiverBest, Brew City, Merica
Contact:

Re: Old Wizard Astral Soul Skill

Post by wushin »

Aye, if they had Focus Skill then Auldsbel would teach them Astral Soul Skill, but the Old Wizard wouldn't.
The secret to getting all the important stuff done is doing nothing.
Yuschri
Newly Registered User
Posts: 11
Joined: 24 Aug 2015, 19:33
Location: Indonesia

Re: Old Wizard Astral Soul Skill

Post 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
Travolta
Novice
Novice
Posts: 159
Joined: 26 Mar 2011, 04:29

Re: Old Wizard Astral Soul Skill

Post by Travolta »

I confirm the bug.
Yuschri
Newly Registered User
Posts: 11
Joined: 24 Aug 2015, 19:33
Location: Indonesia

Re: Old Wizard Astral Soul Skill

Post by Yuschri »

Thanks Travolta :)
Rnuomer
Newly Registered User
Posts: 1
Joined: 19 Oct 2015, 22:12

Re: Old Wizard Astral Soul Skill

Post 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))
Post Reply