One Way Shot

Questions and answers about the how and why of making maps.
Post Reply
User avatar
Tanner
Private First Class
Private First Class
Posts: 575
Joined: Sat Sep 17, 2005 3:46 am
Location: Atl, GA
Contact:

One Way Shot

Post by Tanner »

Is it possible to create a box that can only be shot through one way? Something like the one way drive through.

-Tanner
User avatar
Winny
Grouchy
Grouchy
Posts: 2381
Joined: Wed Aug 24, 2005 12:27 am
Location: Ottawa eh?
Contact:

Post by Winny »

here I can make a bzedit object for that tommorow



don't ask how it is complicated
User avatar
Tanner
Private First Class
Private First Class
Posts: 575
Joined: Sat Sep 17, 2005 3:46 am
Location: Atl, GA
Contact:

Post by Tanner »

That was so complicated I figured it out. :D

Nevermind I got it.

-Tanner
User avatar
Winny
Grouchy
Grouchy
Posts: 2381
Joined: Wed Aug 24, 2005 12:27 am
Location: Ottawa eh?
Contact:

Post by Winny »

o damn I was hoping i was going t oget to swaer at bzedit again too


glad you figued it out.
User avatar
Tanner
Private First Class
Private First Class
Posts: 575
Joined: Sat Sep 17, 2005 3:46 am
Location: Atl, GA
Contact:

Post by Tanner »

Win Xp wrote:o damn I was hoping i was going t oget to swaer at bzedit again too


glad you figued it out.
:D

Yeah, it was pretty easy, I just had to replace drivethrough with shootthrough. I should experiment before I post. :D

-Tanner 8) (Yes, I'm spending new years map making)
User avatar
Tanner
Private First Class
Private First Class
Posts: 575
Joined: Sat Sep 17, 2005 3:46 am
Location: Atl, GA
Contact:

Post by Tanner »

Oh the fun one can have....

-Tanner
Attachments
bzfi0001.png
Shhh.... I'm watching the laser show....
(668.87 KiB) Downloaded 73 times
User avatar
^nightmare^
Private First Class
Private First Class
Posts: 1264
Joined: Sun Feb 20, 2005 7:14 pm
Location: Alabama
Contact:

Post by ^nightmare^ »

how?
Need bzflag help? Try looking here: http://www.freewebs.com/bznightmare/map ... aghelp.htm
User avatar
Tanner
Private First Class
Private First Class
Posts: 575
Joined: Sat Sep 17, 2005 3:46 am
Location: Atl, GA
Contact:

Post by Tanner »

Well, taking this teppics code from this topic:

Code: Select all

mesh
   vertex 10  -10  15
   vertex -10 -10  15
   vertex -10  10  15
   vertex 10   10  15
   face
      vertices 0 1 2 3
      drivethrough
   endface
        face
      vertices 3 2 1 0
   endface
end 
I found you really didn't need the other box for one way shot throughs.

So I just changed drivethrough with shootthrough.

Code: Select all

mesh
   vertex 10  -10  15
   vertex -10 -10  15
   vertex -10  10  15
   vertex 10   10  15
   face
      vertices 0 1 2 3
      shootthrough
   endface
        face
      vertices 3 2 1 0
   endface
end 
On my little box there, I had to move the shoot through to the second face so I could shoot in, but not out.

-Tanner
User avatar
^nightmare^
Private First Class
Private First Class
Posts: 1264
Joined: Sun Feb 20, 2005 7:14 pm
Location: Alabama
Contact:

Post by ^nightmare^ »

Genius :)
Need bzflag help? Try looking here: http://www.freewebs.com/bznightmare/map ... aghelp.htm
ncrlahir8l09
Private First Class
Private First Class
Posts: 12
Joined: Mon Dec 19, 2005 5:28 pm

Post by ncrlahir8l09 »

this can also be done with a teleport :) (use noradar for a nicer radar view)
User avatar
Tanner
Private First Class
Private First Class
Posts: 575
Joined: Sat Sep 17, 2005 3:46 am
Location: Atl, GA
Contact:

Post by Tanner »

Aukecomps wrote:this can also be done with a teleport :) (use noradar for a nicer radar view)
Why use a teleport when you can make it out of mesh? :D

Yeah, I'll probaly put noradar in as there's a big red square in the middle of the map.

-Tanner
Post Reply