The SWBF2 Video Archive

Talk and share anything related to Star Wars Battlefront 2. No maps or mod announcements here. Use Work in Progress forum.

Moderator: Moderators

Marth8880
Resistance Leader
Posts: 5042
Joined: Tue Feb 09, 2010 8:43 pm
Projects :: DI2 + Psychosis
Games I'm Playing :: Silent Hill 2
xbox live or psn: Marth8880
Location: Edinburgh, UK
Contact:

Re: "The Video Archive"

Post by Marth8880 »

LOL :funny2: Love it!
User avatar
TWINKEYRUNAWAY
Lieutenant General
Lieutenant General
Posts: 730
Joined: Fri Aug 17, 2012 3:13 pm
Projects :: Empire Rising
Games I'm Playing :: SWBF Doom FONV
xbox live or psn: No gamertag set
Location: 411Remnant
Contact:

Re: "The Video Archive"

Post by TWINKEYRUNAWAY »

Thanks bro. In this video I am highlighting Belsavis, which was recently released

https://www.youtube.com/watch?v=RHxULOck-vc
Noobasaurus
Droid Pilot Assassin
Droid Pilot Assassin
Posts: 2006
Joined: Tue Aug 17, 2010 5:56 pm

Re: "The Video Archive"

Post by Noobasaurus »

Hey everyone. Here's a little preview of something I'm working on.

https://www.youtube.com/watch?v=i0wHHEtYsww
MileHighGuy
Jedi
Jedi
Posts: 1194
Joined: Fri Dec 19, 2008 7:58 pm

Re: "The Video Archive"

Post by MileHighGuy »

Is that like an arena mode or something? why are you collecting discs?
Noobasaurus
Droid Pilot Assassin
Droid Pilot Assassin
Posts: 2006
Joined: Tue Aug 17, 2010 5:56 pm

Re: "The Video Archive"

Post 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.
User avatar
TWINKEYRUNAWAY
Lieutenant General
Lieutenant General
Posts: 730
Joined: Fri Aug 17, 2012 3:13 pm
Projects :: Empire Rising
Games I'm Playing :: SWBF Doom FONV
xbox live or psn: No gamertag set
Location: 411Remnant
Contact:

The SWBF2 Video Archive

Post by TWINKEYRUNAWAY »

@revan lol. Thats awesome.

Here is something I made in my free time.

https://www.youtube.com/watch?v=Z6DIevhhaFU
THEWULFMAN
Space Ranger
Posts: 5557
Joined: Tue Aug 17, 2010 3:30 pm
Projects :: Evolved 2
Location: Columbus, Ohio
Contact:

Re: "The Video Archive"

Post 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.
Noobasaurus
Droid Pilot Assassin
Droid Pilot Assassin
Posts: 2006
Joined: Tue Aug 17, 2010 5:56 pm

Re: The SWBF2 Video Archive

Post 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.
hunpeter12
Command Sergeant Major
Command Sergeant Major
Posts: 260
Joined: Mon Apr 18, 2011 2:53 pm
Projects :: Underground City The Complex [WIP]
Games I'm Playing :: SWBF2

Re: The SWBF2 Video Archive

Post by hunpeter12 »

Whoa, how did you do this? :o
razac920
2nd Lieutenant
2nd Lieutenant
Posts: 365
Joined: Sun Jan 16, 2011 12:42 am
Games I'm Playing :: SWBF2
Location: Princeton, NJ

Re: The SWBF2 Video Archive

Post 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?
Noobasaurus
Droid Pilot Assassin
Droid Pilot Assassin
Posts: 2006
Joined: Tue Aug 17, 2010 5:56 pm

Re: The SWBF2 Video Archive

Post 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.
razac920
2nd Lieutenant
2nd Lieutenant
Posts: 365
Joined: Sun Jan 16, 2011 12:42 am
Games I'm Playing :: SWBF2
Location: Princeton, NJ

Re: The SWBF2 Video Archive

Post by razac920 »

Huh, okay. What does MoveCameraToEntity do? And there's no issue when the object dies?
Noobasaurus
Droid Pilot Assassin
Droid Pilot Assassin
Posts: 2006
Joined: Tue Aug 17, 2010 5:56 pm

Re: The SWBF2 Video Archive

Post 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.
User avatar
TWINKEYRUNAWAY
Lieutenant General
Lieutenant General
Posts: 730
Joined: Fri Aug 17, 2012 3:13 pm
Projects :: Empire Rising
Games I'm Playing :: SWBF Doom FONV
xbox live or psn: No gamertag set
Location: 411Remnant
Contact:

Re: The SWBF2 Video Archive

Post 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.
User avatar
[RDH]Zerted
Gametoast Staff
Gametoast Staff
Posts: 2982
Joined: Sun Feb 26, 2006 7:36 am
Projects :: Bos Wars AI - a RTS game
Games I'm Playing :: SWBF2 and Bos Wars
xbox live or psn: No gamertag set
Location: USA
Contact:

Re: The SWBF2 Video Archive

Post 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
thelegend
Sith
Sith
Posts: 1433
Joined: Thu Jan 23, 2014 6:01 am
Projects :: Star Wars - Battlefront III Legacy
Games I'm Playing :: Swbf GTA CoD LoL KH
xbox live or psn: El_Fabricio#
Location: Right behind you :)

Re: The SWBF2 Video Archive

Post 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
User avatar
commanderawesome
Field Commander
Field Commander
Posts: 970
Joined: Tue Aug 13, 2013 11:58 pm
Projects :: Skin Changer - Warfront - Other stuff
Games I'm Playing :: SWBF SWTOR KotOR EaW
xbox live or psn: AaTc_CmdrAwesome
Location: The Universe

Re: The SWBF2 Video Archive

Post by commanderawesome »

*Drools*
You, thelegend, truly are a legend. 8)
User avatar
AnthonyBF2
Sith
Sith
Posts: 1254
Joined: Wed Aug 21, 2013 3:55 pm
Projects :: PS2+PSP Overhaul

Re: The SWBF2 Video Archive

Post 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 :\
thelegend
Sith
Sith
Posts: 1433
Joined: Thu Jan 23, 2014 6:01 am
Projects :: Star Wars - Battlefront III Legacy
Games I'm Playing :: Swbf GTA CoD LoL KH
xbox live or psn: El_Fabricio#
Location: Right behind you :)

Re: The SWBF2 Video Archive

Post by thelegend »

Oh didn't know that. Sorry. I just un-privated it.
jedimoose32
Field Commander
Field Commander
Posts: 938
Joined: Thu Jan 24, 2008 12:41 am
Projects :: Engineering Degree
Location: The Flatlands of Canada

Re: The SWBF2 Video Archive

Post by jedimoose32 »

Post Reply