Page 1 of 1

Teleporter Help

Posted: Thu Oct 29, 2009 3:43 pm
by Kasofa1
How does one link two teleporters together?

Code: Select all

teleporter Tele1
position -350 70 0
size 0.125 6 10
rotation 0.0
border 1.12
end

teleporter Tele1_goto
size 0.125 6 10
position -305 70 20
border 1.12
end

link
name T1Link
from Tele1
to Tele1_goto
end
This is my code, am I doing something wrong?

-K

Re: Teleporter Help

Posted: Thu Oct 29, 2009 4:43 pm
by blast
There is a front and a back to a teleporter, and a link only goes one direction. So to fully link two teleporters, you need four links. Example (should work):

Code: Select all

link
name T1Link
from Tele1:f
to Tele1_goto:f
end

link
name T1Link
from Tele1:b
to Tele1_goto:b
end

link
name T1Link
from Tele1_goto:f
to Tele1:f
end

link
name T1Link
from Tele1_goto:b
to Tele1:b
end
Of course, if you don't need all four sides to work, then only include links for the required sides.

Re: Teleporter Help

Posted: Thu Oct 29, 2009 5:08 pm
by Kasofa1
Ok, I figured it out with ibzedit. Thanks blast!

-K

Re: Teleporter Help

Posted: Thu Oct 29, 2009 5:20 pm
by Kasofa1
Ok, so now when I try to go through the teleporter on the ground, I get stuck and can't go forewards. I can however, back up, and I can turn. anything I can do about this?

Code: Select all

teleporter Tele2_goto
  position -305.000000 -70.000000 31.000000
  size 0.560000 6.000000 10.000000
  rotation 0.000000
  border 1.120000
end

link
  from Tele2_goto:f
  to Tele2:f
end

link
  from Tele2_goto:b
  to Tele2:b
end

teleporter Tele2
  position -350.000000 -70.000000 0.000000
  size 0.560000 6.000000 10.000000
  rotation 0.000000
  border 1.120000
end

link
  from Tele2:f
  to Tele2_goto:f
end

link
  from Tele2:b
  to Tele2_goto:b
end

arc
size 20 20 1
divisions 32
angle 360
ratio 1
position -305 -70 30
end
The link works great, but I can't go through the ground level one. I can go back out of the top one though.

-K

Re: Teleporter Help

Posted: Thu Oct 29, 2009 7:06 pm
by Spazzy McGee
You can't drive through a tele on the ground to a tele on a mesh, or any other 2.0 object. It's just a quirk of 2.0 that I believe is fixed in 3.0.

There are workarounds - such as placing the tele on the ground on top of a really really thin box - but I've never got that to work right. I suggest you just find another position for your teles. You can link ground-to-ground or mesh-to-mesh, but not one to the other.

Re: Teleporter Help

Posted: Thu Oct 29, 2009 7:41 pm
by Kasofa1
Oh, if I can do mesh-to-mesh it'll be fine.
Thank's spazzy.

-K

Re: Teleporter Help

Posted: Thu Oct 29, 2009 10:48 pm
by blast
MW2 places the ground teleporter slightly below ground. A side effect is that it causes the burrowed effect when you come out of the ground teleporter (for a split second) that sometimes leads to getting killed. I never looked too closely at the problem, so it might just be floating point precision errors that could be fixed by rounding off the positions of vertices and the size/position of objects. Also note that I've seen more problems on 32-bit Linux systems than Windows. Not sure about OSX.

Re: Teleporter Help

Posted: Thu Oct 29, 2009 11:03 pm
by Kasofa1
Yeah, I thought you were going to say that. I just remembered that in MW2.3 if a tank comes out of the teleporter, they have the burrow 'cross' on the radar. If you place the bottom teleporter negative point zero one bzunits (-0.01) then you get the minimum (I think) possible depth.

-K

Re: Teleporter Help

Posted: Fri Oct 30, 2009 1:36 am
by Kasofa1
Ok, new problem, How do I get flags to spawn on top of buildings? I have the zones set over my red base, but they only appear on the ground. So, specifically, what server variable do I need to set so that flags with spawn onto buildings?

-K

EDIT: it's -fb, I looked in one of my older map files and found it.

Re: Teleporter Help

Posted: Fri Oct 30, 2009 2:25 am
by dango
make sure you have -fb in your options, or in the config.
-fb stands for flags on buildings.
-sb allows tanks to spawn on buildings

Re: Teleporter Help

Posted: Fri Oct 30, 2009 1:42 pm
by Kasofa1
I might want that as well. Thanks Meone.

-K

Re: Teleporter Help

Posted: Wed Mar 17, 2010 8:11 pm
by Strakowski
Alright, I've got to bring up the teleporter problem again. I am nearing the completion of my first map, all the construction and texturing are done, except the teleporters. I'm having this same problem, but with mesh to mesh teleportation. They will work fine occasionally, but will cease to function (as described above) for reasons unknown. Both teleporters are positioned at precise, whole units on the Z axis, as are the faces they rest on. Is there something I'm overlooking or any workaround like the one above?

Re: Teleporter Help

Posted: Wed Mar 17, 2010 9:02 pm
by joevano
Try lowering it by .01 units...

Re: Teleporter Help

Posted: Wed Mar 17, 2010 9:30 pm
by Strakowski
joevano wrote:Try lowering it by .01 units...
hmm... now I just fall through whatever mesh I'm trying to teleport onto.

Re: Teleporter Help

Posted: Thu Mar 18, 2010 4:08 am
by ahs3
I had the same problem with teles on several maps. This is the fix that "normally" works. A thin untextured box under the tele usually does the trick. This example below is a tele on mesh. This box must be untextured, usually the ugly box on a different texture mesh is fixed with a passable mesh over this.

Code: Select all

box
pos 360 -240 10.2
size 20 20 0
end

 teleporter a1
  position 360 -240 10.2
  size 0.125 20 40
  rotation 0.0
  border 0
 end 

Re: Teleporter Help

Posted: Thu Mar 18, 2010 4:34 am
by Strakowski
ahs3 wrote:I had the same problem with teles on several maps. This is the fix that "normally" works. A thin untextured box under the tele usually does the trick. This example below is a tele on mesh. This box must be untextured, usually the ugly box on a different texture mesh is fixed with a passable mesh over this.

Code: Select all

box
pos 360 -240 10.2
size 20 20 0
end

 teleporter a1
  position 360 -240 10.2
  size 0.125 20 40
  rotation 0.0
  border 0
 end 

Huh. Well, it actually worked flawlessly for a little while (why on earth?), but then the problem started up again before I could celebrate.

Correction:
Wait, scratch that. I just needed to make the boxes taller than 0 and rise the teleporters onto them. Used 0.1, works beautifully. Thanks, ahs3.