Jump to content
  • 0

Hunting Quests Effecting Whole Map


Question

Posted

Currently when you are doing an hunting quest with a party, the party has to be close by to each other for the kill count to be shared.

I want to make it so that the party gets the kill count shared regardless of their position, in the same map. How do I go about doing this?

Help is appreciated, thanks.

6 answers to this question

Recommended Posts

Posted

Sorry, thought you were talking about the custom hunting missions quests.

 

For the actual quest system then you'll have to change a bit of source.

mob.c

            if( sd->status.party_id )
                map_foreachinrange(quest_update_objective_sub,&md->bl,AREA_SIZE,BL_PC,sd->status.party_id,md->mob_id);

You'll need to make it something like:

            if( sd->status.party_id )
               map_foreachinmap(quest_update_objective_sub, md->bl.m, BL_PC, sd->status.party_id, md->mob_id);
  • Upvote 2
Posted
.Party = 3;             // Party options: 0 (exclude party kills), 1 (include party kills), 2 (same map only), 3 (screen area only)

Just change that to 2.

Posted (edited)

So...I want this for ever single quest in-game..

Making an Oninit script like the one below would do that?

OnInit:
.Party = 3;             // Party options: 0 (exclude party kills), 1 (include party kills), 2 (same map only), 3 (screen area only)
end;
}
Edited by Phenex

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...