- Initiateur de la discussion
KarboM09
Geek suprême
- Messages
- 229
- Score réaction
- 40
- Points
- 130
Bonjour,
j'aimerais faire un scroll mais dans ce scroll j'aimerais qu'il y est les joueurs co sur le serveur avec un fond (Comme un bouton).
On ma fais sa mais sa ne marche pas :/
Merci!
j'aimerais faire un scroll mais dans ce scroll j'aimerais qu'il y est les joueurs co sur le serveur avec un fond (Comme un bouton).
On ma fais sa mais sa ne marche pas :/
Code:
Liste = vgui.Create( "DScrollPanel", frame ) Liste:SetPos( 0,25 ) Liste:SetSize( NPCDerma:GetSize() - 10, 470 ) local model local scrollbar = Liste:GetVBar() function scrollbar:Paint(w, h) draw.RoundedBox(3, 5, 0, 10, h, Config.ColorSBarBack ) end function scrollbar.btnUp:Paint(w, h) draw.RoundedBox(3, 5, 0, 10, h, Config.ColorSBarUp ) end function scrollbar.btnDown:Paint(w, h) draw.RoundedBox(3, 5, 0, 10, h, Config.ColorSBarDown ) end function scrollbar.btnGrip:Paint(w, h) draw.RoundedBox(3, 5, 0, 10, h, Config.ColorSBar ) end for k, v in pairs( RPExtraTeams ) do if v:GetName then local Fond = vgui.Create("DPanel", Liste) Fond:SetSize(0, 100) Fond:DockMargin(0, 0, 0, 0) Fond:Dock(TOP) Fond:SetText("") Fond.Paint = function(self, w,h) draw.RoundedBox( 0, 0, 0, 3, h, Color(48, 48, 48, 50) ) draw.RoundedBox( 0, 3, 3, w - 5, h - 6 ,Color(48, 48, 48, 50) ) end