TorNix~|nR Posted September 30, 2018 Share Posted September 30, 2018 Hello guys, I have weird problem on the scoreboard, the names and teams.. etc doesn't show normally I don't know why? is there any way to fix it Link to comment
Dimos7 Posted September 30, 2018 Share Posted September 30, 2018 It dxscoreboard or your own? 1 Link to comment
TorNix~|nR Posted October 2, 2018 Author Share Posted October 2, 2018 yes, dxscoreboard but I edit it a little bit Link to comment
sanyisasha Posted October 3, 2018 Share Posted October 3, 2018 Look like it's because the script use a black text for "bordering". Try to find dxDrawText duplicates where the "tocolor" arugment is tocolor(0,0,0,255) 1 Link to comment
TorNix~|nR Posted October 4, 2018 Author Share Posted October 4, 2018 it's already like that, any other help please? Link to comment
TorNix~|nR Posted October 6, 2018 Author Share Posted October 6, 2018 anyone help me please? Link to comment
MandaBraza Posted October 6, 2018 Share Posted October 6, 2018 (edited) Are you using dxCreateRenderTarget? looks like yes, if yes, use dxSetBlendMode. here's an example from wiki: function updateRenderTarget() dxSetRenderTarget(yourRenderTarget, true) dxSetBlendMode("modulate_add") -- Set 'modulate_add' when drawing stuff on the render target dxDrawText("Testing "..getTickCount(), 0, 0, 0, 0, tocolor(255, 255, 255, 255), 2, "clear") dxSetBlendMode("blend") -- Restore default blending dxSetRenderTarget() end As @sanyisasha said, seems had another dxDrawText in background of 1st one. Edited October 6, 2018 by MandaBraza 1 Link to comment
TorNix~|nR Posted October 8, 2018 Author Share Posted October 8, 2018 @MandaBraza, thank you so much, it's working ^^ Link to comment
MandaBraza Posted October 9, 2018 Share Posted October 9, 2018 5 hours ago, TorNix~|nR said: @MandaBraza, thank you so much, it's working ^^ You're welcome! 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now