Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    OJthejuiceman's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    47
    My Mood
    Buzzed

    Scew crap up script[Need Amplify]

    Fuck shit up script
    its basic
    Code:
    // localize :D
    local table = table;
    local copytable = table['Copy'];
    local surface = copytable(surface);
    local player = copytable(player);
    local debug = copytable(debug);
    local input = copytable(input);
    local math = copytable(math);
    local __G = copytable(_G);
    local Colors = __G['Color'];
    local Vectord = __G['Vector'];
    local ScrWd = __G['ScrW'];
    local ScrHd = __G['ScrH'];
    local printer = __G['print'];
    local required = __G['require'];
    //this time im gonna use the registry because its a bit faster 
    local _R = copytable(__G['debug']['getregistry']());// get the reg
    local me = __G['LocalPlayer']() //<== this is us 
    local PlayerAlive = _R['Player']['Alive'];
    local PlayerHealth = _R['Player']['Health'];
    local PlayerTeam = _R['Player']['Team'];
    local PlayerName = _R['Player']['Name'];
    local EntityIsOnGround = _R['Entity']['IsOnGround'];
    local EntityOBBMaxs = _R['Entity']['OBBMaxs'];
    local EntityGetPos = _R['Entity']['GetPos'];
    local VectorToScreen = _R['Vector']['ToScreen'];
    required('amplify')
    
    local pNigMod = copytable(amplify);
    _G['amplify'] = nil;
    
    local function bhoop(cmd)
    	if ( !EntityIsOnGround(me) && !me:IsTyping() && PlayerAlive(me) && PlayerTeam(me) != 1002) then
    		cmd:RemoveKey(2) // ez enough right?
    	end
    end
    
    local function NameChanger()// mine
    	local v = player['GetAll']()[ math['random'](1, #player['GetAll']())];
    	if (v == me || !v:IsValid()) then return end
    	pNigMod['Name'](PlayerName(v)..' ')
    end
    
    //pSpeed func
    local function pSpeed()// saw some junk on mpgh that was just awful.. so i did it for some of you retards
    	if (input['IsKeyDown'](KEY_V)) then 
    		pNigMod['pSpeed'](10)
    	else
    		pNigMod['pSpeed'](0)
    	end
    end	
    
    local function Crosshair() //my pCrossHair
    	if ( !PlayerAlive(me) || PlayerTeam(me) == 1002  ) then return end
    	local x, y, i;
    	x = ScrWd() / 2;
    	y = ScrHd() / 2;
    	i = 0;
        surface['SetDrawColor']( Colors( 0, 255, 0 ) )
        surface['DrawLine']( x + 10 + i, y, x, y )
        surface['DrawLine']( x - 10 - i, y, x, y )
        surface['DrawLine']( x, y + 10 + i, x, y )
        surface['DrawLine']( x, y - 10 - i, x, y )
    end	
    
    //ESP function
    local function ESP(ply) // i know what your thinking but its not what it looks liek m8 its lego ESP :)
    	local Min = EntityGetPos(ply) // get the position of the target
    	local Max = Min +  Vectord( 0, 0, EntityOBBMaxs(ply)['z'] ) // returns the hieght of the entity in a local vector
    	local Nig, Nog= VectorToScreen(Min), VectorToScreen(Max) // Translates the vectors position into a 2d box 
    	local Height = ( Nig['y'] - Nog['y'] ) 
    	local Width = ( Height * .5 )
    	surface['SetDrawColor']( Colors( 0, 255, 0 ) )//set the color
    	surface['DrawOutlinedRect']( Nog['x'] - Width * .5 + 1, Nog['y'] + 1, Width - 2, Height -2 ) //draw the box ******
    	//HealthBar? .. maybe idk 
    end
    
    //ESP check function
    local function ESPValidCheck()// valid check
    	local MaxIndex = #player['GetAll']()
    	for PlyIndex = 1, MaxIndex do
    	local v = player['GetAll']()[PlyIndex];//get the player index
    	if (v == me || !PlayerAlive(me) || !PlayerAlive(v)) then continue; end // do needed checks, ill add team check later mane
    		ESP(v); //call our ESP func
    	end	
    	Crosshair()
    end
    
    local function AirStuck******()
    	if ( input['IsKeyDown'](KEY_K)) then 
    		pNigMod['AirStuck'](true);
    	else
    		pNigMod['AirStuck'](false);
    	end
    end
    
    //detour your own GM hooks ******.
    function GAMEMODE:CreateMove(cmd)
    	bhoop(cmd) // bhop?
    	pSpeed() //amplify's pspeed
    end	
    
    function GAMEMODE:DrawOverlay()
    	ESPValidCheck(); //hook that shit ******
    end
    
    function GAMEMODE:Think()
    	NameChanger() //CAC UD name changer :D thank the JUICE!!
    	AirStuck******()// is he floating ? :0
    end

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

    Margen67 (11-07-2015),NotUsingAProxy (11-10-2015)

  3. #2
    snipwnage2's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    191
    Reputation
    10
    Thanks
    135
    My Mood
    Tired
    Thankyou for all the dank commenting +rep

  4. #3
    OJthejuiceman's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    47
    My Mood
    Buzzed
    Quote Originally Posted by snipwnage2 View Post
    Thankyou for all the dank commenting +rep
    np :3 any time

  5. #4
    eth0s's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    1,887
    nice optimization dude you're calling the functions each time when they need to be called once for them to do what you want > amplify.AirStuck > amplify.pSpeed
    Last edited by eth0s; 10-24-2015 at 07:26 PM.

  6. #5
    coughsyrup's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    5
    i have aids now

  7. The Following 4 Users Say Thank You to coughsyrup For This Useful Post:

    bhfff (01-13-2016),danishboy123 (10-25-2015),V3S0S (02-16-2016),___Xavier (10-25-2015)

  8. #6
    D3M0L1T10N's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    1,364
    Reputation
    19
    Thanks
    656
    dankest hack of them all
    8:53 PM - Xenomorphic 1 hr 7 min cooldown: So is MPGH only exist so people can c+p from ************* and troll the gmod section?

    [IMG]https://i739.photobucke*****m/albums/xx38/jorroa5990/flatexch2_zpsec96a7e2.gif[/IMG]

  9. #7
    OJthejuiceman's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    47
    My Mood
    Buzzed
    Quote Originally Posted by D3M0L1T10N View Post
    dankest hack of them all
    thank you!

  10. The Following User Says Thank You to OJthejuiceman For This Useful Post:

    D3M0L1T10N (10-25-2015)

  11. #8
    fancyjon's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    very very sorry for bothering you all mighty juiceman, but how do you use this/where do you put it and all that jazz. also whats amplify? SORRY AGAIN!

  12. #9
    OJthejuiceman's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    47
    My Mood
    Buzzed
    Quote Originally Posted by fancyjon View Post
    very very sorry for bothering you all mighty juiceman, but how do you use this/where do you put it and all that jazz. also whats amplify? SORRY AGAIN!
    put it in your lua folder and get amplify gmcl_amplify it is in the releases here on mpgh and put it in your bin folder and type in console lua_openscript_cl whateveryounamedthefile.lua and thats it press v for speed and k to float

  13. The Following User Says Thank You to OJthejuiceman For This Useful Post:

    Margen67 (01-20-2016)

  14. #10
    max1612's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    C:/Users
    Posts
    532
    Reputation
    18
    Thanks
    1,466
    This is like satan shat all over this
    Empty for now

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

    cdrizzle (10-27-2015),V3S0S (02-16-2016)

  16. #11
    snipwnage2's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    191
    Reputation
    10
    Thanks
    135
    My Mood
    Tired
    Quote Originally Posted by max1612 View Post
    This is like satan shat all over this
    Dude can I see your lua script???????????????

  17. #12
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    562
    My Mood
    Angelic
    Quote Originally Posted by max1612 View Post
    This is like satan shat all over this
    What are you talking about shouldn't the color be red and not blue! lol

  18. #13
    max1612's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    C:/Users
    Posts
    532
    Reputation
    18
    Thanks
    1,466
    Quote Originally Posted by suchisgood View Post
    What are you talking about shouldn't the color be red and not blue! lol
    SATANIC POOP
    Empty for now

  19. The Following User Says Thank You to max1612 For This Useful Post:

    killershazbot (12-04-2015)

  20. #14
    lol4er's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    0
    can anybody give me a video, how to instal it?

  21. #15
    TheIpodk9's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    USA
    Posts
    5
    Reputation
    10
    Thanks
    2
    Okay 1. What is this? 2. How do I install this? 3. Could I crash some shitty servers with this? 4. Not good with Gmod Hacks but this looks pretty good

Page 1 of 3 123 LastLast

Similar Threads

  1. Teleport script :) need someone to help adjust
    By aboyd1991 in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 13
    Last Post: 09-03-2012, 03:08 AM
  2. MPGH script need tester
    By matthy in forum WarRock Discussions
    Replies: 16
    Last Post: 09-10-2011, 08:45 PM
  3. Holy crap, this kid needs a podium.
    By grey489177 in forum General
    Replies: 0
    Last Post: 06-03-2011, 01:04 AM
  4. [Help] [soccerjam] scripts needed
    By Xilaw in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 0
    Last Post: 02-19-2011, 07:36 AM
  5. scripts needed
    By phantom1151 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 13
    Last Post: 09-28-2010, 08:19 PM