Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If someone wonna have RGB menu. #15

Open
SkajKo opened this issue Feb 13, 2020 · 0 comments
Open

If someone wonna have RGB menu. #15

SkajKo opened this issue Feb 13, 2020 · 0 comments
Labels

Comments

@SkajKo
Copy link

SkajKo commented Feb 13, 2020

At the top of code:

theme = "rgb" -- Feel free to make your own
themes = {"infamous", "basic", "dark", "skid", "rgb"}

Find this in code:

function WarMenu.SetTheme(id, theme)

Replace all this code to this:


> rgb = {r = 64, g = 64, b = 64}
> 
> function WarMenu.SetTheme(id, theme)
>     if theme == "basic" then
>         WarMenu.SetMenuBackgroundColor(id, 81, 231, 251, 125)
>         WarMenu.SetTitleBackgroundColor(id, 92, 212, 249, 80)
>         WarMenu.SetTitleColor(id, 92, 212, 249, 230)
>         WarMenu.SetMenuSubTextColor(id, 255, 255, 255, 230)
>         WarMenu.SetMenuFocusColor(id, 40, 40, 40, 230)
>         WarMenu.SetFont(id, 7)
>         WarMenu.SetMenuX(id, .75)-- [0.0..1.0] top left corner
>         WarMenu.SetMenuY(id, .1)-- [0.0..1.0] top
>         WarMenu.SetMenuWidth(id, 0.23)-- 0.23
>         WarMenu.SetMaxOptionCount(id, 12)-- 10
>         
>         titleHeight = 0.11 --0.11
>         titleXOffset = 0.5 -- 0.5
>         titleYOffset = 0.03 --0.03
>         titleSpacing = 2 -- 2
>         buttonHeight = 0.038 --0.038
>         buttonScale = 0.365 --0.365
>         buttonTextXOffset = 0.005 --0.005
>         buttonTextYOffset = 0.005 --0.005
>         
>         themecolor = '~b~'
>         themearrow = "+"
>     elseif theme == "dark" then
>         WarMenu.SetMenuBackgroundColor(id, 180, 80, 80, 125)
>         WarMenu.SetTitleBackgroundColor(id, 180, 80, 80, 90)
>         WarMenu.SetTitleColor(id, 180, 80, 80, 230)
>         WarMenu.SetMenuSubTextColor(id, 255, 255, 255, 230)
>         WarMenu.SetMenuFocusColor(id, 40, 40, 40, 230)
>         WarMenu.SetFont(id, 1)
>         WarMenu.SetMenuX(id, .75)
>         WarMenu.SetMenuY(id, .1)
>         WarMenu.SetMenuWidth(id, 0.23)-- 0.23
>         WarMenu.SetMaxOptionCount(id, 12)-- 10
>         
>         titleHeight = 0.11 --0.11
>         titleXOffset = 0.5 -- 0.5
>         titleYOffset = 0.03 --0.03
>         titleSpacing = 2 -- 2
>         buttonHeight = 0.038 --0.038
>         buttonScale = 0.365 --0.365
>         buttonTextXOffset = 0.005 --0.005
>         buttonTextYOffset = 0.005 --0.005
>         
>         themecolor = '~r~'
>         themearrow = ">"
>     elseif theme == "skid" then
>         WarMenu.SetMenuBackgroundColor(id, 5, 160, 1, 125)
>         WarMenu.SetTitleBackgroundColor(id, 5, 233, 1, 255)
>         WarMenu.SetTitleColor(id, 5, 233, 1, 200)
>         WarMenu.SetMenuSubTextColor(id, 255, 255, 255, 230)
>         WarMenu.SetFont(id, 0)
>         WarMenu.SetMenuX(id, .75)
>         WarMenu.SetMenuY(id, .1)
>         WarMenu.SetMenuWidth(id, 0.23)-- 0.23
>         WarMenu.SetMaxOptionCount(id, 12)-- 10
>         
>         titleHeight = 0.11 --0.11
>         titleXOffset = 0.5 -- 0.5
>         titleYOffset = 0.03 --0.03
>         titleSpacing = 2 -- 2
>         buttonHeight = 0.038 --0.038
>         buttonScale = 0.365 --0.365
>         buttonTextXOffset = 0.005 --0.005
>         buttonTextYOffset = 0.005 --0.005
>         
>         themecolor = '~u~'
>         themearrow = "~u~>"
> 	elseif theme == "infamous" then
>         WarMenu.SetMenuBackgroundColor(id, 38, 38, 38, 80)
>         WarMenu.SetTitleBackgroundColor(id, 92, 212, 249, 170)
>         WarMenu.SetTitleColor(id, 240, 240, 240, 255)
>         WarMenu.SetMenuSubTextColor(id, 240, 240, 240, 255)
>         WarMenu.SetMenuFocusBackgroundColor(id, 100, 220, 250, 180)
>         WarMenu.SetFont(id, 4)
>         WarMenu.SetMenuX(id, .725)
>         WarMenu.SetMenuY(id, .1)
>         WarMenu.SetMenuWidth(id, 0.25)-- 0.23
>         WarMenu.SetMaxOptionCount(id, 12)-- 10
>         
>         titleHeight = 0.07 --0.11
>         titleXOffset = 0.2 -- 0.5
>         titleYOffset = 0.005 --0.03
>         titleScale = 0.7 -- 1.0
>         titleSpacing = 1.5
>         buttonHeight = 0.033 --0.038
>         buttonScale = 0.360 --0.365
>         buttonTextXOffset = 0.003 --0.005
>         buttonTextYOffset = 0.0025 --0.005
>         
>         themecolor = "~s~"
>         themearrow = ">>"
> 	elseif theme == "rgb" then
>         Citizen.CreateThread(function()
> 	        while true do
> 	        	Wait(1)
> 	            rgb = RGBRainbow(1)
>                 WarMenu.SetMenuBackgroundColor(id, 38, 38, 38, 80)
>                 WarMenu.SetTitleBackgroundColor(id, 92, 212, 249, 170)
>                 WarMenu.SetTitleColor(id, rgb.r, rgb.g, rgb.b, alpha)
>                 WarMenu.SetMenuSubTextColor(id, 240, 240, 240, 255)
>                 WarMenu.SetMenuFocusBackgroundColor(id, rgb.r, rgb.g, rgb.b, alpha)
>                 WarMenu.SetFont(id, 4)
>                 WarMenu.SetMenuX(id, .725)
>                 WarMenu.SetMenuY(id, .1)
>                 WarMenu.SetMenuWidth(id, 0.25)-- 0.23
>                 WarMenu.SetMaxOptionCount(id, 12)-- 10
>         
>                 titleHeight = 0.07 --0.11
>                 titleXOffset = 0.2 -- 0.5
>                 titleYOffset = 0.005 --0.03
>                 titleScale = 0.7 -- 1.0
>                 titleSpacing = 1.5
>                 buttonHeight = 0.033 --0.038
>                 buttonScale = 0.360 --0.365
>                 buttonTextXOffset = 0.003 --0.005
>                 buttonTextYOffset = 0.0025 --0.005
>         
>                 themecolor = "~s~"
>                 themearrow = ">>"
> 			end
> 		end)
> 	end
> end
> 
> function RGBRainbow(frequency)
>     local result = {}
>     local curtime = GetGameTimer() / 1500
> 
>     result.r = math.floor(math.sin(curtime * frequency + 0) * 127 + 128)
>     result.g = math.floor(math.sin(curtime * frequency + 2) * 127 + 128)
>     result.b = math.floor(math.sin(curtime * frequency + 4) * 127 + 128)
> 
>     return result
> end
> 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants