Verse Library verse

01 Fragment

Logs a simple debug message when the game session initializes for verification.

verse-library/matchmaking-queue-controls/01-fragment.verse

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

# This is our Island Device
# It acts as the brain of our island
actor MyIsland is Actor {
    # When the game starts, this runs once
    OnBegin<override>()<suspends>: void {
        # Print a message to the debug log
        # This helps us know the game is live
        Print("Matchmaking Complete! Game On!")
    }
}

Comments

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