Skip to content

Version v1.4.0

Compare
Choose a tag to compare
@Raytwo Raytwo released this 07 Feb 16:09
· 1 commit to master since this release
21cb458

New feature(s)

Added support for new Lua commands:

HasPurchasedSeasonPass

Returns a boolean to check if the player owns the season pass

Argument(s):
None

Example:

-- Check if the player has the purchased the Season Pass.
local result = HasPurchasedSeasonPass()

if result == true then
    Log("Owns season pass")
else
    Log("Does not own season pass")
end