- Initiateur de la discussion
MathiouGaming
Geek suprême
- Messages
- 376
- Score réaction
- 99
- Points
- 150
Bonjour ! Je viens pour une fois demander de l'aide aux développeurs (scripts) ! =)
J'essaye en ce moment de faire un derma Panel, seulement je ne peux mettre qu'un seul bouton. Quand j'essaye de rajouter un DButton, et que je reload seul le premier DButton apparaît avec le Panel. Quelqu'un pour m'aider svp?
if (SERVER) then
end
if (CLIENT) then
local midW, midH = ScrW() / 2, ScrH() / 2
local function OpenDerma()
local Cmds = vgui.Create( "DFrame" )
Cmds:SetSize( 250, 250 )
Cmds:SetPos( midW - ( Cmds:GetWide() / 2 ), midH - ( Cmds:GetTall() / 2) )
Cmds:SetTitle( "Quickly Commands" )
local God = vgui.Create( "DButton", Cmds )
God:SetText( "God" )
God:SetPos( 40, 60 )
God.DoClick = function()
RunConsoleCommand( "say","!god" )
local Ungod = vgui.Create( "DButtonn", Cmds )
Ungod:SetText( "Ungod" )
Ungod:SetPos( 80, 60 )
Ungod.DoClick = function()
RunConsoleCommand( "say","!ungod" )
end
end
concommand.Add( "open", OpenDerma )
end
Oui je ne fais pas beaucoup de Tab x)
Merci de votre aide !
J'essaye en ce moment de faire un derma Panel, seulement je ne peux mettre qu'un seul bouton. Quand j'essaye de rajouter un DButton, et que je reload seul le premier DButton apparaît avec le Panel. Quelqu'un pour m'aider svp?
if (SERVER) then
end
if (CLIENT) then
local midW, midH = ScrW() / 2, ScrH() / 2
local function OpenDerma()
local Cmds = vgui.Create( "DFrame" )
Cmds:SetSize( 250, 250 )
Cmds:SetPos( midW - ( Cmds:GetWide() / 2 ), midH - ( Cmds:GetTall() / 2) )
Cmds:SetTitle( "Quickly Commands" )
local God = vgui.Create( "DButton", Cmds )
God:SetText( "God" )
God:SetPos( 40, 60 )
God.DoClick = function()
RunConsoleCommand( "say","!god" )
local Ungod = vgui.Create( "DButtonn", Cmds )
Ungod:SetText( "Ungod" )
Ungod:SetPos( 80, 60 )
Ungod.DoClick = function()
RunConsoleCommand( "say","!ungod" )
end
end
concommand.Add( "open", OpenDerma )
end
Oui je ne fais pas beaucoup de Tab x)
Merci de votre aide !