Forums » Suggestions

/home last

Aug 27, 2020 Drevent1 link
you go to wherever to do whatever then when your in the middle of doing whatever you remember you didn't home so if you die your going to be sent back to the other side of the verse
so there should be the option to /home last
to set your home station to the last place that you docked
provided you are still alowed to dock there
Aug 27, 2020 We all float link
I would be ok with this, provided there is some kind of fee for this service.
Aug 27, 2020 TheRedSpy link
I feel like it's abuseable though. Doesn't this mean that people can hedge their risk as they travel by homing in one place, and if they run into trouble on the trip back they can choose quickly between two possible respawn points? Obviously they would have to visit the stations, but it gives this advantage on trips where you move between two stations.

You could mitigate this with a time limit but that might remove its usefulness. I'm all for trying it but I think it should have another discussion if it turns out there are some edge cases where it can be abused.
Aug 28, 2020 look... no hands link
Maybe some kind of auto-home setting could help?
Aug 30, 2020 Drevent1 link
I like the idea of a auto-home option
/homeon /homeoff
with it on your home is set every time you dock
Aug 30, 2020 TheRedSpy link
Isn't that a simple plugin though?
Sep 02, 2020 look... no hands link
Would such a plugin be simple to make? Maybe you should just make it TRS. I really have no idea how hard it would be to make, and personally I'd likely not use it myself, though I can see how some other players would find it helpful.
Sep 02, 2020 SkinWalker link
+1 !!!

I have some great ideas about this if implemented!

Don't worry, inc. Just do it! Nothing will go wrong. Pinky swear.

YT-1300
Sep 05, 2020 incarnate link
So, just to be clear, we're now (mainly) talking about an auto-home feature, allowing people to automatically set home whenever they dock?
Sep 05, 2020 Drevent1 link
Yes but it would be cool if you could do it inflight aswell /Homelast
Sep 05, 2020 incarnate link
Yes but it would be cool if you could do it inflight aswell /Homelast

I think TRS raised how that could be abused. Auto-home seems reasonable though.
Sep 06, 2020 TheRedSpy link
look... no hands wrote: Would such a plugin be simple to make? Maybe you should just make it TRS.

I hope that is you being a smarty pants LNH because thats the exact kind of smartypantsosity that would motivate me to write the plugin. Come on discord some time I'll tell you how I really feel about it. In the meantime:

--[[ Autohome Version 0.0.1
Toggle an option to automaticallly set your home station when you dock
By the pilot known as [RED] Espionage, Founding Triumvirate General of the Red Eternal Dominion
Plugin made on the suggestion of Drevent and motivated by the comments of look...no hands
]]
autohome = {}
function autohome.save_settings()
SaveSystemNotes(autohome.automatically_set_home, 4750782222212)
end
function autohome.load_settings()
autohome.automatically_set_home = LoadSystemNotes(4750782222212)
if autohome.automatically_set_home == "yes" then
autohome.display = "\127DBE3DEHome will be automatically set on docking"
print(autohome.display)
end
end
function autohome.makeitmyhome()
if autohome.automatically_set_home == "yes" then
SetHomeStation()
end
end
function autohome.control(_,args)
if args[1] == "on" then
autohome.automatically_set_home = "yes"
autohome.display = "\127DBE3DEHome will be automatically set on docking"
print(autohome.display)
autohome.save_settings()
autohome.makeitmyhome()
elseif args[1] == "off" then
autohome.automatically_set_home = "no"
autohome.save_settings()
autohome.display = "\127DBE3DEHome will not be automatically set on docking"
print(autohome.display)
elseif args[1] == "help" then
autohome.helpprompt = "/autohome on will set autohome to on, /autohome off will set autohome to off. Looknohands is a spud"
print(autohome.helpprompt)
end
end
RegisterUserCommand("autohome",autohome.control)
RegisterEvent(autohome.load_settings, "PLAYER_ENTERED_GAME")
RegisterEvent(autohome.makeitmyhome, "ENTERING_STATION")