Page 1 of 1

Disable Maat Quests & AH not showing higher level Items

Posted: Sun Nov 11, 2012 5:36 pm
by Vicrelant
I have 2 questions.

1. How does one disable the Maat quests so can just level to 99?
2. Why does the AH not show anything above level 90 when there are other items on the AH table that are 90+?

For the Maat question in the settings.lau this is posted:
MAX_LEVEL = 99; -- Level max of the server, works by disabling Maat quests.

Does this mean if I posted it at 99 then it can bypass the Maat quests?

Thanks!

Re: Disable Maat Quests & AH not showing higher level Items

Posted: Mon Nov 12, 2012 8:00 am
by whasf
1. The MAX_LEVEL settings.lua directive should do it
2. Not much is implemented past 75, so you would have to populate the SQL item_* tables yourself with the info

Re: Disable Maat Quests & AH not showing higher level Items

Posted: Mon Nov 12, 2012 8:37 am
by Vicrelant
ty and understood! =)

Re: Disable Maat Quests & AH not showing higher level Items

Posted: Tue Dec 04, 2012 7:02 pm
by PrBlahBlahtson
whasf wrote:1. The MAX_LEVEL settings.lua directive should do it
2. Not much is implemented past 75, so you would have to populate the SQL item_* tables yourself with the info
Actually I think Max_Level with vanilla LUAs will only affect which quests Maat offers. One would have to alter server.lua (now player.lua) and add

Code: Select all

	if (INITIAL_LEVEL_CAP ~= 50) then
		player:levelCap(INITIAL_LEVEL_CAP)
	end
to the CharCreate() function, but that would only affect new players.

Alternatively, change your char_jobs table so that the default value for genkai is whatever you'd prefer.

Either way, existing characters will need to be manually edited in char_jobs.genkai.

Sorry to necro an old thread.