An Empty Vessel

Blue Mage
Post Reply
xipies
Posts: 119
Joined: Thu Aug 02, 2012 11:29 pm

An Empty Vessel

Post by xipies » Tue Jul 21, 2015 11:26 pm

Found this out the hard way: DSP uses the answers found on BG wiki. FFXIclopedia has one answer different.

Delaide
Posts: 478
Joined: Sat Jun 14, 2014 8:58 am

Re: An Empty Vessel

Post by Delaide » Wed Jul 22, 2015 4:35 am

I just check the lua for the answers.
https://github.com/DarkstarProject/dark ... /Waoud.lua

Code: Select all

if (csid == 0x003c) then
		if (option == 2) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 6) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 7) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 12) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 13) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 18) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 21) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 24) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 26) then
			player:setVar("SuccessfullyAnswered",success+1);
		elseif (option == 30) then
			player:setVar("SuccessfullyAnswered",success+1);

xipies
Posts: 119
Joined: Thu Aug 02, 2012 11:29 pm

Re: An Empty Vessel

Post by xipies » Wed Jul 22, 2015 9:43 pm

Yeah. That's where I verified it and found which answer was different.

User avatar
TeoTwawki
Developer
Posts: 527
Joined: Mon Jul 15, 2013 9:50 pm

Re: An Empty Vessel

Post by TeoTwawki » Thu Jul 23, 2015 4:52 pm

I'm like 99% sure the "correct" answers on retail are not 100% static and thats why the 2 wiki's disagree in the first place.
Hi, I run The Demiurge server.


Image
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. - Martin Golding
PLS USE [ code ] CODE TAGS [ /code ] WHEN POSTING CODE
DO NOT PRIVATE MESSAGE ME ABOUT BUGS

xipies
Posts: 119
Joined: Thu Aug 02, 2012 11:29 pm

Re: An Empty Vessel

Post by xipies » Thu Jul 23, 2015 10:35 pm

Would help if I read this discussion on wikia. :) Definitely sounding not static.

Post Reply