How to set max quest level in the source?

10/09/2017 08:36 elitemember21#1
It's known that if you set the max level in Propquest like around 300, the quest wont work or won't be visible.
The guide was released a long time ago to change this but for some reason it was deleted or removed.

Can someone share how to set the max level of quests to like 500 or so?
Looking forward to hear from you.
10/09/2017 11:15 Meutledaron#2
Project.h -> struct QuestProp -> m_nBeginCondLevelMax and m_nBeginCondLevelMin change BYTE to int
10/09/2017 14:23 elitemember21#3
Quote:
Originally Posted by Meutledaron View Post
Project.h -> struct QuestProp -> m_nBeginCondLevelMax and m_nBeginCondLevelMin change BYTE to int
Thank you very much for this. I will try this.

Quote:
Originally Posted by Meutledaron View Post
Project.h -> struct QuestProp -> m_nBeginCondLevelMax and m_nBeginCondLevelMin change BYTE to int
UPDATE: Tried it and it's working in normal quests like Pet tamer. I was able to get a level 400 quest but when I tried to submit it and get my reward i was able to finish it but didn't get a reward and question mark is still color gray.

Any idea?
10/09/2017 21:53 Meutledaron#4
Project.h

BYTE m_nEndCondLevelMin;
to
int m_nEndCondLevelMin;

and

BYTE m_nEndCondLevelMax;
to
int m_nEndCondLevelMax;
10/10/2017 08:37 elitemember21#5
Quote:
Originally Posted by Meutledaron View Post
Project.h

BYTE m_nEndCondLevelMin;
to
int m_nEndCondLevelMin;

and

BYTE m_nEndCondLevelMax;
to
int m_nEndCondLevelMax;

Thanks for the reply.
That's what i did.
It seems the problem is the reward thingy?
I was able to finish the quest but didn't get a reward.
10/10/2017 10:12 Meutledaron#6
There are 4 lines to change in Project.h

m_nBeginCondLevelMin
m_nBeginCondLevelMax
m_nEndCondLevelMin
m_nEndCondLevelMax

There is nothing specific about the level in "SetEndRewardItem"
10/10/2017 17:03 elitemember21#7
Quote:
Originally Posted by Meutledaron View Post
There are 4 lines to change in Project.h

m_nBeginCondLevelMin
m_nBeginCondLevelMax
m_nEndCondLevelMin
m_nEndCondLevelMax

There is nothing specific about the level in "SetEndRewardItem"
You have my thanks. I will try this once i get back home.