Jump to content
  • 0
Dori

Hunting Quests Effecting Whole Map

Question

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.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

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
Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.