Disable Maat Quests & AH not showing higher level Items

Post Reply
Vicrelant
Posts: 7
Joined: Sun Nov 11, 2012 5:03 pm

Disable Maat Quests & AH not showing higher level Items

Post by Vicrelant » Sun Nov 11, 2012 5:36 pm

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!

User avatar
whasf
Site Admin
Posts: 1312
Joined: Thu Jul 19, 2012 9:11 pm

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

Post by whasf » Mon Nov 12, 2012 8:00 am

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
-- Whasf

Vicrelant
Posts: 7
Joined: Sun Nov 11, 2012 5:03 pm

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

Post by Vicrelant » Mon Nov 12, 2012 8:37 am

ty and understood! =)

PrBlahBlahtson
Developer
Posts: 539
Joined: Sun Jul 22, 2012 12:17 am

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

Post by PrBlahBlahtson » Tue Dec 04, 2012 7:02 pm

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.

Post Reply