[Feature Request] Party Placeholders
Closed
[Feature Request] Party Placeholders
This would be nice so players can make their own Party UIs (with TAB plugin for example) so placeholders is all we need to get it done. Another option would be to simply allow to hook other party plugins like (Parties) so if you create a party over there you can join a dungeon with all the grp members.
heres a list of possible placeholders to consider but I will add the most useful ones: https://alessiodp.com/docs/parties/placeholders
Recruit placeholders
- %mdungeons_party_name%
- %mdungeons_party_description%
- %mdungeons_party_players_in_party% current members in grp
- %mdungeons_party_max_players% shows how many players the leader recruits
- %mdungeons_party_password% either parses "yes" or "no"
- %mdungeons_party_dungeon% shows the name of the dungeon being recruited for
- %mdungeons_party_leader% parses leader name
%mdungeons_member_{number}% players in a party might have assigned an internal number so if 1 party has player A,B,C,D
%mdungeons_member_1% parses Player A's name, %mdungeons_member_2% Player 2 and so on.
and here the most important one: %mdungeons_member_{number}_{placeholder}% this will allow to parse almost any PAPI placeholder from that specific member number
%mdungeons_member_1_mmocore_health%,%mdungeons_member_1_mmocore_level% etc...
I hope I provided enough detail for realistic placeholders and hope seeing them being implemented very soon :D <3
added Enhancement label
mentioned in issue #132 (closed)
changed milestone to %1.1.0 - Compatibility Update
added Planned label
added Completed / Resolved label and removed Planned label
Most of these are implemented as of the latest dev build! Check out the wiki to see them all. It took a bit for me to get a good method for displaying the party members due to some internal code issues that I believe I've fixed up now...
The last suggestion you made though, however, is much more complicated, and I am not confident in implementing something like that as there is a chance it'll break for other non-MD plugins, which can be a huge headache for providing support.
No worries, for the last suggestion I realized we can already do that with the right PAPI extensions
If anyone wonders install a PAPI expansions named "ParseOther" this will let u parse anything for any player if I want to make a custom HUD for party members showing their class or HP I would use something like
%parseother_{md_party_member_1}{mmocore_health}% %parseother{md_party_member_2}{mmocore_health}% %parseother{md_party_member_3}{mmocore_health}% %parseother{md_party_member_4}_{mmocore_health}%
so all we really needed was %md_party_member_#% <3 thank you very much consider placeholder support to be fully done on my end for suggestions