Page 2 of 2 FirstFirst 12
Results 16 to 25 of 25
  1. #16
    cdr1za's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    86
    Quote Originally Posted by tanner1031 View Post
    be a god and do it lel
    "god"

    aka you want some paste

  2. The Following 2 Users Say Thank You to cdr1za For This Useful Post:

    polivilas (10-08-2015),snixzz (10-08-2015)

  3. #17
    cdr1za's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    86
    Quote Originally Posted by tanner1031 View Post
    That's funny coming from you mr gayware creator. You do more than paste. You take menus and call them your own after you change the title lmfao.
    what
    so this is not my menu???????????
    Code:
    surface.CreateFont("PaX_ButtonFont", {
    	font = "Trebuchet",
    	size = 21,
    })
    
    local pVars = {
    	Aimbot = {
    		Enabled = false,
    	},
    }
    
    local function DrawText(txt, font, x, y, col, left)
    	draw.SimpleText(txt, font, x, y, col, left and TEXT_ALIGN_LEFT or TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
    end
    
    local function FillRGBA(x, y, wid, height, col)
    	surface.SetDrawColor(col)
    	surface.DrawRect(x, y, wid, height)
    end
    
    local function CreateButton(txt, type, val, x, y, frame, tbl)
    	local twid = surface.GetTextSize(txt)
    	local btn = vgui.Create("DButton", frame)
    	btn:SetSize(twid + 25, 20)
    	btn:SetPos(x, y)
    	btn:SetText("")
    	btn.Paint = function(self, wid, height)
    		FillRGBA(0, 0, 20, height, Color(51, 204, 255, 255))
    		
    		if !tbl[type][val] then
    			FillRGBA(2, 2, 16, 16, Color(255, 255, 255, 255))
    		end
    
    		DrawText(txt, "PaX_ButtonFont", 25, 10, Color(185, 185, 185), true)
    	end
    
    	btn.DoClick = function()
    		tbl[type][val] = !tbl[type][val]
    	end
    end
    
    local bool = true
    
    local function gMenu()
    	local main = vgui.Create("DFrame")
    	main:SetSize(625, 500)
    	main:SetTitle("")
    	main:Center()
    	main:MakePopup()
    	main:ShowCloseButton(false)
    	main.Paint = function(self, wid, height)
    		FillRGBA(0, 0, wid, 30, Color(51, 204, 255, 255))
    		DrawText("PaX Menu", "Trebuchet24", wid / 2, 15, Color(255, 255, 255))
    		FillRGBA(0, 30, wid, height, Color(255, 255, 255, 255))
    	end
    
    	local close = vgui.Create("DButton", main)
    	close:SetSize(30, 30)
    	close:SetPos(595, 0)
    	close:SetText("")
    	close.Paint = function(self, wid, height)
    		FillRGBA(0, 0, wid, height, Color(235, 25, 19, 255))
    		DrawText("x", "Trebuchet24", wid / 2, height / 2, Color(255, 255, 255))
    	end
    
    	close.DoClick = function()
    		main:Close()
    	end
    
    	CreateButton("Aimbot Enabled", "Aimbot", "Enabled", 12, 40, main, pVars)
    end
    
    concommand.Add("gmenu", gMenu)
    ok mr. meme

  4. #18
    Hello Noober!'s Avatar
    Join Date
    Sep 2015
    Gender
    female
    Posts
    0
    Reputation
    10
    Thanks
    18
    Quote Originally Posted by cdr1za View Post
    what
    so this is not my menu???????????
    Code:
    surface.CreateFont("PaX_ButtonFont", {
    	font = "Trebuchet",
    	size = 21,
    })
    
    local pVars = {
    	Aimbot = {
    		Enabled = false,
    	},
    }
    
    local function DrawText(txt, font, x, y, col, left)
    	draw.SimpleText(txt, font, x, y, col, left and TEXT_ALIGN_LEFT or TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
    end
    
    local function FillRGBA(x, y, wid, height, col)
    	surface.SetDrawColor(col)
    	surface.DrawRect(x, y, wid, height)
    end
    
    local function CreateButton(txt, type, val, x, y, frame, tbl)
    	local twid = surface.GetTextSize(txt)
    	local btn = vgui.Create("DButton", frame)
    	btn:SetSize(twid + 25, 20)
    	btn:SetPos(x, y)
    	btn:SetText("")
    	btn.Paint = function(self, wid, height)
    		FillRGBA(0, 0, 20, height, Color(51, 204, 255, 255))
    		
    		if !tbl[type][val] then
    			FillRGBA(2, 2, 16, 16, Color(255, 255, 255, 255))
    		end
    
    		DrawText(txt, "PaX_ButtonFont", 25, 10, Color(185, 185, 185), true)
    	end
    
    	btn.DoClick = function()
    		tbl[type][val] = !tbl[type][val]
    	end
    end
    
    local bool = true
    
    local function gMenu()
    	local main = vgui.Create("DFrame")
    	main:SetSize(625, 500)
    	main:SetTitle("")
    	main:Center()
    	main:MakePopup()
    	main:ShowCloseButton(false)
    	main.Paint = function(self, wid, height)
    		FillRGBA(0, 0, wid, 30, Color(51, 204, 255, 255))
    		DrawText("PaX Menu", "Trebuchet24", wid / 2, 15, Color(255, 255, 255))
    		FillRGBA(0, 30, wid, height, Color(255, 255, 255, 255))
    	end
    
    	local close = vgui.Create("DButton", main)
    	close:SetSize(30, 30)
    	close:SetPos(595, 0)
    	close:SetText("")
    	close.Paint = function(self, wid, height)
    		FillRGBA(0, 0, wid, height, Color(235, 25, 19, 255))
    		DrawText("x", "Trebuchet24", wid / 2, height / 2, Color(255, 255, 255))
    	end
    
    	close.DoClick = function()
    		main:Close()
    	end
    
    	CreateButton("Aimbot Enabled", "Aimbot", "Enabled", 12, 40, main, pVars)
    end
    
    concommand.Add("gmenu", gMenu)
    ok mr. meme
    hey thats my menu

  5. #19
    rockran's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    austraya
    Posts
    70
    Reputation
    10
    Thanks
    15
    My Mood
    Breezy
    I wouldn't personally call this garbage, it is code and I admire it.
    MPGH is really weird, if you don't like a script/cheat then don't use it and move on?
    I know how much hate is flying towards me as soon as I post this but I still want to say how stupid for someone to stop by just to criticize.

    Thanks for the cheat too Oj.

  6. The Following User Says Thank You to rockran For This Useful Post:

    OJthejuiceman (10-09-2015)

  7. #20
    cough_syrup's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    52
    My Mood
    Sick
    Quote Originally Posted by OJthejuiceman View Post
    i was just showing you that your not very smart i think i should release gmcl_sh_win32.dll

    - - - Updated - - -



    there would be no point

    - - - Updated - - -



    idc if you have pics of me the pics are pub and idc jerk off to them if youd like but its a little gay to have pics of another dude on your pc just sayin
    whats gmcl_sh w/e it is its in the hack booty

  8. #21
    cdr1za's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    86
    Quote Originally Posted by cough_syrup View Post
    whats gmcl_sh w/e it is its in the hack booty
    that's not the right one, that's the sethhack module

  9. #22
    ShitFucks's Avatar
    Join Date
    Nov 2014
    Gender
    female
    Posts
    79
    Reputation
    10
    Thanks
    259
    post the modules pls

  10. #23
    rockran's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    austraya
    Posts
    70
    Reputation
    10
    Thanks
    15
    My Mood
    Breezy
    Quote Originally Posted by snixzz View Post
    thank me, not this retard
    he's probably copy-pasted 90% of this into his "cheat" by now
    Yeah, says about 97% of the Garry's Mod forums.

  11. #24
    Sir Lenny's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Confused
    I don't get it. *gets shot by creator*

  12. #25
    GunVein's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    2,821
    Reputation
    96
    Thanks
    155
    My Mood
    Drunk
    i hope i understand how to use it ._.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Release] ecks dee release tyler caught pasting off snipwnage
    By jonwenv3 in forum Garry's Mod Hacks & Cheats
    Replies: 13
    Last Post: 09-03-2015, 11:50 AM
  2. Tyler's Anti-Cheat v4 Showcase
    By professionaltweaker in forum Garry's Mod Discussions & Help
    Replies: 37
    Last Post: 10-09-2014, 06:29 PM
  3. [Release] DOOP Simple cheat witeplayer,witewall,blackworld,cursorcenter date:4/27/2011
    By DOOP in forum CrossFire Philippines Hacks
    Replies: 42
    Last Post: 05-04-2011, 11:19 PM
  4. [Release] DOOP Simple Cheat DATE:5/1/2011
    By DOOP in forum CrossFire Philippines Hacks
    Replies: 36
    Last Post: 05-02-2011, 05:47 PM
  5. [Release] DOOP Simple cheat witeplayer,witewall,blackworld,cursorcenter date:4/12/2011
    By DOOP in forum CrossFire Philippines Hacks
    Replies: 29
    Last Post: 04-25-2011, 11:12 PM