Created by Random autist
Features:
- AUTO FARM
- DEV NOTES:
- If you set the wait times for these 2 scripts below 300 it will kick you when you unload cargo, so don’t
--does not use fuel! refueling usually creates a sizeable dent in your profits.
--Right Shift to activate, dont press it again else it breaks
--[[
line 56, position 20537, 5, 12227 is a fishing zone where the
fish fill up faster, however there is way more traffic and thus
way higher chance of people spotting you and snitching.
]]--
local boatType = "Fishing cutter" --case sensitive. can be "Fishing cutter", "Shrimp trawler", etc. just use dex to find your ship name if its not working
local fishingSeason = 120 --wait time for fishing. divide by 3 when in fishing zone
local YourShitp = nil
local p = game:GetService("Players").LocalPlayer
local Character = p.Character
local UIS = game:GetService("UserInputService")
local CF = CFrame.new
local V3 = Vector3.new
for _,v in pairs(workspace:GetDescendants())do
if v.Name == boatType and v:FindFirstChild("Regen") and v.Regen.Gunboat.VehicleSeat.ShipControl.OWNER.Value.Name == game:GetService("Players").LocalPlayer.Name then
print("found boat")
YourShitp = v
end
end
local argsToStart = {
[1] = "trawl",
[2] = YourShitp
}
local argsToStop = {
[1] = "stoptrawl",
[2] = YourShitp
}
local argsToSell = {
[1] = "sellfishv2",
[2] = YourShitp,
[3] = TheFishingPort
}
YourShitp.PrimaryPart = YourShitp.Regen.Gunboat.Base
local function MoveShitpTo(cfrm)
YourShitp:SetPrimaryPartCFrame(CF(cfrm))
end
local function notify(texto)
game:GetService("StarterGui"):SetCore("SendNotification",{
Title = "DSS3 gaming autofarm",
Text = texto
})
end
UIS.InputBegan:Connect(function(key)
if key.KeyCode == Enum.KeyCode.RightShift and YourShitp ~= nil then
notify("began autofarming")
while true do
notify("cycle")
MoveShitpTo(V3(29096, 16, -83107)) --29096, 16, -83107 OR 20537, 5, 12227
workspace.HandleCargoEvent:FireServer(unpack(argsToStart))
wait(fishingSeason)
workspace.HandleCargoEvent:FireServer(unpack(argsToStop))
MoveShitpTo(V3(29799, 9, 14521))
wait(5)
workspace.HandleCargoEvent:FireServer(unpack(argsToSell))
wait(1)
notify("sold fish")
wait(1)
end
end
end)
print("dss3 autofarm initialized press RShift to activate, rejoin to stop")