Page 3 of 4

Re: "The Video Archive"

Posted: Mon Jun 02, 2014 2:45 pm
by Marth8880
LOL :funny2: Love it!

Re: "The Video Archive"

Posted: Fri Jun 06, 2014 1:45 pm
by TWINKEYRUNAWAY
Thanks bro. In this video I am highlighting Belsavis, which was recently released

https://www.youtube.com/watch?v=RHxULOck-vc

Re: "The Video Archive"

Posted: Sat Jul 12, 2014 12:56 pm
by Noobasaurus
Hey everyone. Here's a little preview of something I'm working on.

https://www.youtube.com/watch?v=i0wHHEtYsww

Re: "The Video Archive"

Posted: Sat Jul 12, 2014 1:06 pm
by MileHighGuy
Is that like an arena mode or something? why are you collecting discs?

Re: "The Video Archive"

Posted: Sat Jul 12, 2014 1:11 pm
by Noobasaurus
It's going to be a challenge world. The challenges will alternate between duels and puzzles. The puzzles will be finding objects (as seen above), mazes, parkour, and more. The duels will always mark the targets and the puzzles might give a hint or two, but most of them won't, like the disk collector one.

So you'll have to figure out what you have to do.

The SWBF2 Video Archive

Posted: Sun Nov 16, 2014 1:09 am
by TWINKEYRUNAWAY
@revan lol. Thats awesome.

Here is something I made in my free time.

https://www.youtube.com/watch?v=Z6DIevhhaFU

Re: "The Video Archive"

Posted: Mon Mar 16, 2015 8:44 pm
by THEWULFMAN
I call upon the powers of the dark side.

Rise.

Rise from the dead.

Let this topic breath life once more.

https://www.youtube.com/watch?v=LVGZ00RSbiE <- just a little something I made today for fun.

Re: The SWBF2 Video Archive

Posted: Mon Apr 13, 2015 11:37 pm
by Noobasaurus
When messing around with animations goes too far.

EDIT: And then you have this. I tried it in a space battle as well and it was pretty bad. However, if you throw a grenade at something while you jump and mess up its rotation, you can walk sideways on the floor! And then you can shoot your ally and they'll be stuck on the floor.

Re: The SWBF2 Video Archive

Posted: Fri Apr 17, 2015 5:26 pm
by hunpeter12
Whoa, how did you do this? :o

Re: The SWBF2 Video Archive

Posted: Fri Apr 17, 2015 5:29 pm
by razac920
Looks like he wrote a LUA script to swap player locations whenever anyone hurts anyone else.

Maybe something like:

Code: Select all

OnObjectDamage(function(object,damager)
  local object2 = GetCharacterUnit(damager)
  if IsObjectAive(object) and object2 then
    local tmp = GetEntityMatrix(object)
    SetEntityMatrix(object,GetEntityMatrix(object2)
    SetEntityMatrix(object2,tmp)
  end
end)
Am I close?

Re: The SWBF2 Video Archive

Posted: Fri Apr 17, 2015 7:33 pm
by Noobasaurus
Yep, that's pretty much it.

Code: Select all

	propHit = OnObjectDamage(function(object, damager)
			playerCurHp = GetObjectHealth(GetCharacterUnit(damager))
			playerCurHp2 = GetObjectHealth(object)
			playermatrix1 = GetEntityMatrix(GetCharacterUnit(damager))
			playermatrix2 = GetEntityMatrix(object)
			SetProperty(GetCharacterUnit(damager), "CurHealth", (playerCurHp + 30))
			SetProperty(object, "CurHealth", (playerCurHp2))
			SetEntityMatrix(GetCharacterUnit(damager), playermatrix2)
			SetEntityMatrix(object, playermatrix1)
			MoveCameraToEntity(object)
	end)
	
I also added some health whenever you hit someone, hence the flamethrower making you invincible. Earlier I tried swapping the health of the damager and damaged, and this made it very interesting but difficult to kill people.

Re: The SWBF2 Video Archive

Posted: Fri Apr 17, 2015 7:36 pm
by razac920
Huh, okay. What does MoveCameraToEntity do? And there's no issue when the object dies?

Re: The SWBF2 Video Archive

Posted: Fri Apr 17, 2015 7:40 pm
by Noobasaurus
I was experimenting with that. Currently, it does nothing. I was trying to make it so that the camera would move to whoever you shot. I'm going to need it eventually for a hacky spectator mode of sorts.

Re: The SWBF2 Video Archive

Posted: Sat Apr 25, 2015 6:24 pm
by TWINKEYRUNAWAY
https://www.youtube.com/watch?v=PlK12_9KdN4
Something I made for Icemember to coincide with his newest chapter to the designated days serious.

Re: The SWBF2 Video Archive

Posted: Fri May 08, 2015 7:24 pm
by [RDH]Zerted
That swap on hit is awesome. I wish I thought of that when making the FC commands. It would have given a new dimension to CTF games and flying units. Hit a non-flier while flying and they'd fall to their death. Or drop a mine at your feet and shoot an enemy with a pistol. A swap mod would have been super fun online.

Here's the 4 unit moves videos I made in 2007 (posted by someone else). You newer guys probably haven't seen them. If you master them you can escape the main, online choke points:
https://www.youtube.com/watch?v=P8WeVIokDIc
https://www.youtube.com/watch?v=lCVHQXORglY
https://www.youtube.com/watch?v=V8te8Qqa1DU
https://www.youtube.com/watch?v=yd5xD3SgGrA

Re: The SWBF2 Video Archive

Posted: Tue May 12, 2015 4:32 pm
by thelegend
Here's just a short teaser trailer about my latest map project. You can see almost the whole map design, some flyers, and more. A new trailer (with much more detail, almost all units and actually just the whole map in CW era) will come.
I hope you like it so far: https://www.youtube.com/watch?v=XKEQqYyQS9c

Re: The SWBF2 Video Archive

Posted: Tue May 12, 2015 4:41 pm
by commanderawesome
*Drools*
You, thelegend, truly are a legend. 8)

Re: The SWBF2 Video Archive

Posted: Tue May 12, 2015 5:36 pm
by AnthonyBF2
thelegend wrote:Here's just a short teaser trailer about my latest map project. You can see almost the whole map design, some flyers, and more. A new trailer (with much more detail, almost all units and actually just the whole map in CW era) will come.
I hope you like it so far: https://www.youtube.com/watch?v=XKEQqYyQS9c
Video is private :\

Re: The SWBF2 Video Archive

Posted: Wed May 13, 2015 2:52 pm
by thelegend
Oh didn't know that. Sorry. I just un-privated it.

Re: The SWBF2 Video Archive

Posted: Fri Jul 17, 2015 5:01 pm
by jedimoose32