Based on Tindral WA. Hides if there are more than 4 parasites.
If you want to increase how many parasites are hidden or how many nameplates are check you will need to go into the custom trigger and change:
(for looking through more nameplates, change 40 to be whatever you want. Below I changed it to 80
-- Iterate through nameplates, count NPCs and store unitIds
for i = 1, 80 do
Changed the 3 to how many parasites you want up to show.
-- Show or hide nameplates based on count using stored unitIds
for _, unitId in ipairs(npcUnitIds) do
if npcCount <= 3 then
Note: I'm not changing anything, this was just a quick fix for my raid. Feel free to edit for your own stuff.
Based on Tindral WA. Hides if there are more than 4 parasites.
If you want to increase how many parasites are hidden or how many nameplates are check you will need to go into the custom trigger and change:
(for looking through more nameplates, change 40 to be whatever you want. Below I changed it to 80
-- Iterate through nameplates, count NPCs and store unitIds
for i = 1, 80 do
Changed the 3 to how many parasites you want up to show.
-- Show or hide nameplates based on count using stored unitIds
for _, unitId in ipairs(npcUnitIds) do
if npcCount <= 3 then
Note: I'm not changing anything, this was just a quick fix for my raid. Feel free to edit for your own stuff.
自动创建于:2024-10-02 13:41:16
评论区