Exports
These pages document the available client and server exports for PR.
📄️ Client Exports
This page documents the client exports that can be used with Pager Reborn.
📄️ Server Exports
This page documents the server exports that can be used with Pager Reborn.
How to Use
When using exports with PR, it is important to call them exactly as shown below:
exports["inferno-pager-reborn"]:exportNameHere(param1, param2)
You must put the resource name in square brackets and quotations, followed by a colon and the export name.
You cannot write exports.inferno-pager-reborn, and you cannot use a period (.) after the square brackets.
See the examples below:
exports["inferno-pager-reborn"]:hasPager(player) -- CORRECT
exports["inferno-pager-reborn"].hasPager(player) -- WRONG
^
exports.inferno-pager-reborn:hasPager(player) -- WRONG
^
exports.inferno-pager-reborn.hasPager(player) -- WRONG
^ ^