Version v1.4.0
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