Page 1 of 1

Personal Wormholes

Posted: Sun Mar 09, 2014 3:28 pm
by Siduri
I would like to suggest the addition of a personal wormhole list that overrides the one that we automatically download. Every time the map updates, every wormholes I have manually mapped disappear, and those outdates ones that I had deleted keep returning.

I'm thinking about something that would work a bit like how we leave ROOM MARKS around. Would this be possible?

Re: Personal Wormholes

Posted: Mon Mar 10, 2014 8:48 am
by Veldrin
the mapper raises the event 'mmapper updated map', so you can make a script that does

if mmp.editing == false or mmp.editing == nil then
mmp.editing = true
enableAlias("mm Mapping")
addSpecialExit(1299, 1180, "worm warp")
mmp.editing = false
disableAlias("mm Mapping")
end

which would create a warp from North of New Thera to the Delos bridge

Re: Personal Wormholes

Posted: Mon Mar 10, 2014 7:01 pm
by Siduri
Mhh, that's -great- thinking. Thanks Veldrin!