UnresolvedMemeware no sky

Posts 1–7 of 7 · Page 1 of 1
Memeware no sky
Theres two types of skies that I wanted to add but I don't know exactly how to.

1.) None (basic)
2.) rainbow (I could careless about this one)

If you help then thank you.
Code:
hook.Add("PreDrawSkyBox", "", function()
	-- this is for no sky
	render.Clear(0, 0, 0, 0)
	
	-- this is for rainbow sky
	local Col = {r=255,g=255,b=255,a=255}
	Col.r = 255*math.abs(math.sin(CurTime()))
	Col.g = 255*math.abs(math.sin(CurTime()+1))
	Col.b = 255*math.abs(math.sin(CurTime()+2))
	
	render.Clear(Col.r, Col.g, Col.b, Col.a)

	-- you need to return true
	return true
end)
Thanks, but I found auto no sky when trying to make no sky as a selection XD
also, for a water mark how would you make it like "Signed in as : (Then profile name)"?
Quote Originally Posted by Psychedelic1337 View Post
Thanks, but I found auto no sky when trying to make no sky as a selection XD
also, for a water mark how would you make it like "Signed in as : (Then profile name)"?
"Signed in as " .. Player:Nick() .. "."
This is the last thing and again sorry for asking so much, but what about no hands? I had it working for sometime before it just quit and showed the hands.
btw I have it as a checkbox.
Quote Originally Posted by Psychedelic1337 View Post
This is the last thing and again sorry for asking so much, but what about no hands? I had it working for sometime before it just quit and showed the hands.
btw I have it as a checkbox.
You need to override thisⓘ hook. Keep in mind that it only works with HL2 weapons, not M9K or FAS weapons.
1 week has passed and no further replies have been made by the OP.

/Moved to the correct section & closed.
Posts 1–7 of 7 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?