How Often...
Moderators: winston, another_commander
- Alex
- ---- E L I T E ----
- Posts: 770
- Joined: Mon Oct 06, 2008 10:49 pm
- Location: Oz. The land of some gold but mostly rust
How Often...
Hi Commanders,
Was just wondering how often do yous come out of which space right on the W beacon? Instant destruction...
Recently it has been happening to me every dozen or so jumps. sometimes a couple in a row.
Never used to happen. Is there a probability chance in the code somewhere for this to happen?
If so, Where can I find it for deletion.
I't's happening so often it's getting anoying.
Happy hunting
Al
Was just wondering how often do yous come out of which space right on the W beacon? Instant destruction...
Recently it has been happening to me every dozen or so jumps. sometimes a couple in a row.
Never used to happen. Is there a probability chance in the code somewhere for this to happen?
If so, Where can I find it for deletion.
I't's happening so often it's getting anoying.
Happy hunting
Al
-
- Quite Grand Sub-Admiral
- Posts: 6683
- Joined: Wed Feb 28, 2007 7:54 am
- Rustybolts
- ---- E L I T E ----
- Posts: 293
- Joined: Sun Jun 07, 2009 6:22 pm
- Location: UK
Got this quite a bit before, has not happened since new update though, although now after landing on planet on relaunch i occasionally eject sideways and explode.
STE.+ Firefly/Dragonfly + BlackJacksbullion v.1.23 link below.
http://www.mediafire.com/?sharekey=ca16 ... f6e8ebb871
http://www.mediafire.com/?sharekey=ca16 ... f6e8ebb871
- DaddyHoggy
- Intergalactic Spam Assassin
- Posts: 8515
- Joined: Tue Dec 05, 2006 9:43 pm
- Location: Newbury, UK
- Contact:
I've always found (so far - touches wood) that if you're running YAH and enter Witchspace at a "moderate" pace then I have never hit a Tetrascreen on the other side and even when close have had enough time to react (or simply cut the thrusters)...Chaky wrote:I use Your Add Here oxp, and I almost became a smudge on those billboards several times. Good reflexes saved me every time.
It's kind of creepy almost getting killed by a huge spinning surreal ad.
Oolite Life is now revealed hereSelezen wrote:Apparently I was having a DaddyHoggy moment.
- Commander McLane
- ---- E L I T E ----
- Posts: 9520
- Joined: Thu Dec 14, 2006 9:08 am
- Location: a Hacker Outpost in a moderately remote area
- Contact:
Re: How Often...
Hi, I am wondering what ship you may be flying?Alex wrote:Hi Commanders,
Was just wondering how often do yous come out of which space right on the W beacon? Instant destruction...
I am flying an Imperial Courier, and I have never ever come out of witchspace right on the W beacon. In any version of Oolite.
Is your current ship perhaps many times bigger than an Imperial Courier?
Oh, and I don't have YAH installed. But as you are explicitely mentioning the W beacon, not a Terascreen, I assume you haven't as well.
- Eric Walch
- Slightly Grand Rear Admiral
- Posts: 5536
- Joined: Sat Jun 16, 2007 3:48 pm
- Location: Netherlands
There was always a debate about the distance. With the normal buoy I had never a problem. But after installing those oversized billboards myself, I was killed twice on jumping within a month. I never saw what had hit me but I assumed it were those boards.another_commander wrote:In the last version the distance from the witchpoint beacon when exiting hyperspace has been increased from 500 to 750m. In theory, you should be seeing the problem less frequently than before, if at all.
Normal buoy has a radius of about 50 meter. Half the length of those billboards is 563 meter. The longest diameter of our cobraIII is 65 meter.
the code selects a random entry location but did a check for buoy distance. when less than 500 meter the player was put at 500 meter distance. 500 - 50 - 65 =385 meter so the player had still a minimum of 385 meter to react on an eminent collision. (I always liked those near collisions)
With the billboard size this 500 meter minimum distance was not enough. In 1.73 it is raised to 750 meter. 750 - 563 - 65 = 122 meter. So it now still leaves some room for reaction. Less than in the old situation with a plain buoy, but on the plus side is that when the board is at the right angle you have even more time to react.
Maybe this 500/750m should not be a fixed distance but a distance based on collision radii of buoy and player so we don't exclude the near collisions with plain buoys.
UPS-Courier & DeepSpacePirates & others at the box and some older versions
A sure way of doing it would be to move it or the player relative to the player/witchpoint the port or starboard to aft.. and allways at least 1 km away..
alternatively an exclude zone of 1-3 kms from the witchpoint(0,0,0), where ships cannot appear from witchspace. This would have to be hard coded though...
Code: Select all
this.minimumDistance = 2000
this.SafeDistance = 10000
this.shipExitedWitchspace = function()
{
if(player.ship.position.distanceTo(system.shipsWithPrimaryRole("buoy-witchpoint")[0]) < this.minimumDistance)
{
let ori = player.ship.orientation
let vec = new vector(player.ship.position)
player.ship.position = vec.add(ori.vectorForward().multiply(-this.SafeDistance))
}
}
Bounty Scanner
Number 935
Number 935
Planetfall is your man, err, alien, there...Pansen wrote:Rustybolts says something about landing on a planet - sounds good! is there an OXP that allows this, or is it a new version of oolite?
My OXPs via Boxspace or from my Wiki pages .
Thargoid TV
Dropbox Referral Link
Thargoid TV
Dropbox Referral Link
- Rustybolts
- ---- E L I T E ----
- Posts: 293
- Joined: Sun Jun 07, 2009 6:22 pm
- Location: UK
So nobody else has had the flying sideways from planet after launch then exploding? Has happened quite a bit lately for me.
STE.+ Firefly/Dragonfly + BlackJacksbullion v.1.23 link below.
http://www.mediafire.com/?sharekey=ca16 ... f6e8ebb871
http://www.mediafire.com/?sharekey=ca16 ... f6e8ebb871
-
- Quite Grand Sub-Admiral
- Posts: 6683
- Joined: Wed Feb 28, 2007 7:54 am
I can confirm this. Looks like the launch position will have to be moved a bit further away from planet. I wonder why it happens, though. Maybe it's a bit more complicated than what it initially seems.Rustybolts wrote:So nobody else has had the flying sideways from planet after launch then exploding? Has happened quite a bit lately for me.
I just tried it and it worked fine for me (PF 1.2 and Oolite 1.73.2 on XP). Which systems are giving you the problem, so I can check it there.
In any case it's fairly simple to fix (just change a number in the script), I just want to make sure exactly how far things need to be moved out.
In any case it's fairly simple to fix (just change a number in the script), I just want to make sure exactly how far things need to be moved out.
My OXPs via Boxspace or from my Wiki pages .
Thargoid TV
Dropbox Referral Link
Thargoid TV
Dropbox Referral Link
- Rustybolts
- ---- E L I T E ----
- Posts: 293
- Joined: Sun Jun 07, 2009 6:22 pm
- Location: UK
Unsure which system it happened last have been on a few milk runs since. Can't test anymore for a while until i get my planet landing systems fixed. Where damaged after my last bounty hunt.
I am also on PF 1.2 and Oolite 1.73.2 on XP
I will pm you when it occurs again
I am also on PF 1.2 and Oolite 1.73.2 on XP
I will pm you when it occurs again
STE.+ Firefly/Dragonfly + BlackJacksbullion v.1.23 link below.
http://www.mediafire.com/?sharekey=ca16 ... f6e8ebb871
http://www.mediafire.com/?sharekey=ca16 ... f6e8ebb871