How to change quest rewards

Page 2 of 2 FirstFirst 12
Results 16 to 18 of 18
  1. #16
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: How to change quest rewards

    Quote Originally Posted by Eliana Gherbaz View Post
    No is not

    I think you need to learn first what code means, for example:
    this is what a switch is:
    https://msdn.microsoft.com/en-us/library/06tc147t.aspx

    Then... in the game, the player makes request to server like this way:
    switch (PlayerRequest)
    {
    case RequestCharList:
    { code to run };
    break;
    case RequestCharCreation:
    { code to run };
    break;
    .
    .
    .
    .
    .
    case RequestMasterDisciple: <---------------this is the one you need to find
    {
    ................ if(player.lvl <=60) --------> CMP xxx,3C <----------this is what you need to change if you want to change the lvl requirement, otherwhise, change the jumps.

    }
    Noted. So how do we convert those codes into HEX codes or whatsoever that it can be notable in dump?

  2. #17
    Valued Member Eliana Gherbaz is offline
    MemberRank
    Oct 2013 Join Date
    122Posts

    Re: How to change quest rewards

    If you dont have the source files, then you will have to work a lot to find the ids of the requests, as I did long time ago, putting breakpoints on each case till i find the one i was looking for.

  3. #18
    Member metan0ia is offline
    MemberRank
    Feb 2014 Join Date
    71Posts

    Re: How to change quest rewards

    first job and second job are considered as main quest right ?



Page 2 of 2 FirstFirst 12

Advertisement