Verse Library verse

01 Device

Enables a creator profile sign automatically when the island loads, directing players to the creator link.

verse-library/using-creator-profile-link-devices-in-fortnite-creative/01-device.verse

using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }

# This is our welcome sign device
# note: wire this property to your Creator Profile Link device in the UEFN Details panel
WelcomeSign : creator_profile_link_device = creator_profile_link_device{}

# This class holds our island logic
my_island_device := class(creative_device):

    # This runs when the island begins
    OnBegin<override>()<suspends> : void =
        # We wait for the game to start
        Sleep(0.0)

        # Now we turn the sign on so players can see it
        WelcomeSign.Enable()

Comments

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