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!
Disable Maat Quests & AH not showing higher level Items
Re: Disable Maat Quests & AH not showing higher level Items
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
2. Not much is implemented past 75, so you would have to populate the SQL item_* tables yourself with the info
-- Whasf
Re: Disable Maat Quests & AH not showing higher level Items
ty and understood! =)
-
- Developer
- Posts: 539
- Joined: Sun Jul 22, 2012 12:17 am
Re: Disable Maat Quests & AH not showing higher level Items
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 addwhasf 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
Code: Select all
if (INITIAL_LEVEL_CAP ~= 50) then
player:levelCap(INITIAL_LEVEL_CAP)
end
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.
Test Server: Hanekawa | Fantasy World: Naito
An occasionally updated list of what works
Bugs reports go here. | Project chat here.
Things I've found, but don't plan to work on.
An occasionally updated list of what works
Bugs reports go here. | Project chat here.
Things I've found, but don't plan to work on.