Verse Library verse

01 Fragment

Displays the remaining prop count and ping cooldown status on the heads-up display when the match begins.

verse-library/setshowpropsremaining/01-fragment.verse

using { /Fortnite.com/Devices }

# This is our main script. It runs when the game starts.
OnStart: callable <async>() = {
    # 1. Get a reference to the Prop O' Matic Manager device.
    # We assume you named your device 'PropManager' in the editor.
    manager := PropOmaticManagerDevice
    
    # 2. Turn ON the "Props Remaining" counter on the HUD.
    # This is like turning on the storm timer display.
    manager.SetShowPropsRemaining(true)
    
    # 3. Turn ON the "Ping Cooldown" indicator.
    # This lets seekers know when they can use their spy ability again.
    manager.SetShowPropPingCooldown(true)
}

Comments

    Sign in to vote, comment, or suggest an edit. Sign in