โ๏ธConfiguration
Parameter
Description
Example Value
RS = {}
-- Framework Settings
RS.Framework = 'auto'
RS.Item = "spinbottle"
RS.Language = 'en'
-- Bottle & Marker
RS.BottleModel = 'prop_wine_bot_01'
RS.MarkerColor = { r = 0, g = 169, b = 255 }
RS.MarkerType = 0
-- Gameplay
RS.canMoveWhileSpinning = true
RS.ShowWinnerMarker = true
RS.ShowWinnerName = true
RS.OtherPlayersCanSpin = true
-- Notification
RS.UseCustomNotify = false
RS.CustomNotify = function(type, message)
-- Custom logic or fallback to GTA notifications
end
-- Language Messages
RS.CooldownMessages = {
en = "The bottle is already spinning, please wait until it stops!",
-- ...
}
RS.WinnerMessages = {
en = "%s is the chosen one!",
-- ...
}
RS.ErrorMessages = {
en = "Not your bottle",
-- ...
}
-- Framework Detection
function getFramework() ... end
-- ...
Last updated