πŸ‘¨β€πŸ’»Events, exports, snippets

  • Event to manually make the resource check the player's play time and add/remove new player mode if needed.

    TriggerServerEvent("mester_newplayerCheck")
  • Export to manually remove new player mode, from a specified player.

    --@type res boolean
    --@type err string
    local res, err = exports["mester_newplayer"]:removeNewPlayer(playerId)
  • Export to get remaining minutes of new player mode, for the specified player.

    --@type mins int, boolean
    --@type err string
    local mins, err = exports["mester_newplayer"]:getNewMinutes(playerId)

Last updated