Cousin Tribe Ladder

Paid Cousin Tribe Ladder 1.6

This resource is paid, and requires to be purchased
New Feature: Custom Structure Point Values!

You can now assign custom point values to specific structures for your TribeScore raid scoring — instead of only the generic default/metal/tek/industrial/heavy tiers! This will also work for modded structures Like ORP or whatever !

What's new:
- Set custom points for any specific structure type ex :
JSON:
"/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/PrimalItemStructure_MetalGateframe.PrimalItemStructure_MetalGateframe = 25 pts")
  • Works with easy-to-find Blueprint paths look here for them : https://ark.wiki.gg/wiki/Item_IDs
  • Overrides always take priority over the default tiers, including setting a structure to 0 points if you want it excluded from scoring entirely

This gives admins much finer control over how raid points are awarded — reward the structures that matter most to your community!

Check config-commented.json for full setup instructions (see the CustomPoints section).
Now Support the new ASA API 2.02

🌿 Cousin_TribeLadder — PvE Support Added!

Cousin_TribeLadder now includes a complete PvE mode, enabled through the new General.PVEMode configuration option.

When PvE mode is active:

🦖 Wild dinosaur kills are tracked
🥚 Completed tames are recorded
💀 All-cause player deaths remain tracked
📊 /stats displays PvE-specific statistics
🏆 Discord leaderboards show Top Tamers, Top Wild Dino Hunters, and Top Deaths

Existing PvP functionality remains unchanged when PvE mode is disabled.

The database is automatically updated for existing installations, and all new features follow the plugin's existing crash-safety and asynchronous database conventions.
Now Support the new ASA API 2.1
- Discord periodic leaderboard No longer shows duplicate tribe entries. (Tribes need to have the same name accross all maps)

- New tribe_scores table Added to the database (auto-created on startup). This is the new canonical store for tribe rankings.


The new tribe_scores table starts empty on first launch. Previous scores from the old system are not automatically carried over. If you want to preserve existing scores, run this SQL once before restarting the plugin:

SQL:
INSERT INTO tribe_scores (tribe_name, tribe_score, last_updated)
SELECT tribe_name, MAX(tribe_score), UNIX_TIMESTAMP()
FROM players
WHERE tribe_name != '' AND tribe_name != 'NoTribe' AND tribe_id > 0
GROUP BY tribe_name
ON DUPLICATE KEY UPDATE
  tribe_score = VALUES(tribe_score),
  last_updated = VALUES(last_updated);
Latest Version 1.11 -> Small fix for error handling when the plugin's license verification system make HTTPS call to the API end point.

Was happenning if the network call fails (due to DNS issues, network timeout, SSL handshake error, or connectivity problems), the exception was not caught, causing the entire server to crash.
You can now add webhooks to get nice leaderboards and kill feeds in your discord !

Attachments

  • killFeed.png
    killFeed.png
    14.2 KB · Views: 364
  • leaderboard.png
    leaderboard.png
    22.4 KB · Views: 356
Back
Top