- Initiateur de la discussion
P
ProZerite
Geek suprême
- Messages
- 95
- Score réaction
- 9
- Points
- 110
J'aimerais faire un petit menu sur le côté droit du menu contextuel afin d'y placer pleins de commandes pour le serveur pour lequel je travail, cependant je ne sais pas comment m'y prendre. Je vous remercie ! J'ai quelques pistes mais autrement je suis déboussolé ...
Code:
function jmenu()
if IsButtonDown == true then
local JFrame = vgui.Create("DFrame") --create a frame
JFrame:SetSize(250, 550) --set its size
JFrame:SetTitle("Take the weapon that you want") --set the title of the menu
JFrame:SetDraggable(true) --can you move it around
JFrame:SetSizable(false) --can you resize it?
JFrame:ShowCloseButton(true) --can you close it
JFrame:MakePopup() --make it appear
else
JFrame:Close()
end
end
hook.Add("OnContextMenuOpen", "contextmenuopen", function()
IsButtonDown = true
jmenu()
end)
hook.Add("OnContextMenuClose", "contextmenuclose", function()
local IsButtonDown = false
jmenu()
end)
concommand.Add("openmenu", jmenu
function KeyPressed (P, key) P:ConCommand("openmenu")
end
hook.Add( "KeyPress", "KeyPressedHook", KeyPressed )