The SWBF2 Video Archive
Moderator: Moderators
70 posts
• Page 3 of 4 • 1, 2, 3, 4
- Marth8880
- Resistance Leader
-
- Posts: 5045
- Joined: Tue Feb 09, 2010 8:43 pm
- Location: Los Angeles, CA
- Projects :: EVERYWHERE + Zero Munge + TCW
- Games I'm Playing :: The Division + DEHR
- xbox live or psn: Marth8880
Re: "The Video Archive"
LOL
Love it!

- TWINKEYRUNAWAY
-
- Posts: 713
- Joined: Fri Aug 17, 2012 3:13 pm
- Location: 411Remnant
- Projects :: Empire Rising
- Games I'm Playing :: SWBF Doom FONV
- xbox live or psn: No gamertag set
Re: "The Video Archive"
Thanks bro. In this video I am highlighting Belsavis, which was recently released
https://www.youtube.com/watch?v=RHxULOck-vc
https://www.youtube.com/watch?v=RHxULOck-vc
- Noobasaurus
-
- Posts: 2151
- Joined: Tue Aug 17, 2010 5:56 pm
Re: "The Video Archive"
Hey everyone. Here's a little preview of something I'm working on.
https://www.youtube.com/watch?v=i0wHHEtYsww
https://www.youtube.com/watch?v=i0wHHEtYsww
- MileHighGuy
-
- Posts: 1109
- Joined: Fri Dec 19, 2008 7:58 pm
Re: "The Video Archive"
Is that like an arena mode or something? why are you collecting discs?
- Noobasaurus
-
- Posts: 2151
- Joined: Tue Aug 17, 2010 5:56 pm
Re: "The Video Archive"
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.
So you'll have to figure out what you have to do.
- TWINKEYRUNAWAY
-
- Posts: 713
- Joined: Fri Aug 17, 2012 3:13 pm
- Location: 411Remnant
- Projects :: Empire Rising
- Games I'm Playing :: SWBF Doom FONV
- xbox live or psn: No gamertag set
The SWBF2 Video Archive
@revan lol. Thats awesome.
Here is something I made in my free time.
https://www.youtube.com/watch?v=Z6DIevhhaFU
Here is something I made in my free time.
https://www.youtube.com/watch?v=Z6DIevhhaFU
- THEWULFMAN
- Space Ranger
-
- Posts: 6120
- Joined: Tue Aug 17, 2010 3:30 pm
- Location: The Ninth Circle
- Projects :: The Clone Wars
- Games I'm Playing :: SWBF2 TCW Mod
Re: "The Video Archive"
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.
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
-
- Posts: 2151
- Joined: Tue Aug 17, 2010 5:56 pm
Re: The SWBF2 Video Archive
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.
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
-
- Posts: 260
- Joined: Mon Apr 18, 2011 2:53 pm
- Location: The Milky Way/The Solar System/Earth/Hungary
- Projects :: Underground City The Complex [WIP]
- Games I'm Playing :: SWBF2
Re: The SWBF2 Video Archive
Whoa, how did you do this? 

- razac920
-
- Posts: 370
- Joined: Sun Jan 16, 2011 12:42 am
- Location: Princeton, NJ
- Games I'm Playing :: SWBF2
Re: The SWBF2 Video Archive
Looks like he wrote a LUA script to swap player locations whenever anyone hurts anyone else.
Maybe something like:
Am I close?
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
-
- Posts: 2151
- Joined: Tue Aug 17, 2010 5:56 pm
Re: The SWBF2 Video Archive
Yep, that's pretty much it.
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.
- 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
-
- Posts: 370
- Joined: Sun Jan 16, 2011 12:42 am
- Location: Princeton, NJ
- Games I'm Playing :: SWBF2
Re: The SWBF2 Video Archive
Huh, okay. What does MoveCameraToEntity do? And there's no issue when the object dies?
- Noobasaurus
-
- Posts: 2151
- Joined: Tue Aug 17, 2010 5:56 pm
Re: The SWBF2 Video Archive
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.
- TWINKEYRUNAWAY
-
- Posts: 713
- Joined: Fri Aug 17, 2012 3:13 pm
- Location: 411Remnant
- Projects :: Empire Rising
- Games I'm Playing :: SWBF Doom FONV
- xbox live or psn: No gamertag set
Re: The SWBF2 Video Archive
https://www.youtube.com/watch?v=PlK12_9KdN4
Something I made for Icemember to coincide with his newest chapter to the designated days serious.
Something I made for Icemember to coincide with his newest chapter to the designated days serious.
- [RDH]Zerted
-
- Posts: 2973
- Joined: Sun Feb 26, 2006 7:36 am
- Location: USA
- Projects :: Bos Wars AI - a RTS game
- Games I'm Playing :: SWBF2 and Bos Wars
- xbox live or psn: No gamertag set
Re: The SWBF2 Video Archive
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
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
-
- Posts: 1446
- Joined: Thu Jan 23, 2014 6:01 am
- Location: Right behind you :)
- Projects :: Star Wars - Battlefront III Legacy
- Games I'm Playing :: Swbf GTA CoD LoL KH
- xbox live or psn: El_Fabricio#
Re: The SWBF2 Video Archive
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
I hope you like it so far: https://www.youtube.com/watch?v=XKEQqYyQS9c
- commanderawesome
-
- Posts: 989
- Joined: Tue Aug 13, 2013 11:58 pm
- Location: The Universe
- Projects :: Skin Changer - Warfront - Other stuff
- Games I'm Playing :: SWBF SWTOR KotOR EaW
- xbox live or psn: AaTc_CmdrAwesome
Re: The SWBF2 Video Archive
*Drools*
You, thelegend, truly are a legend.
You, thelegend, truly are a legend.

- AnthonyBF2
-
- Posts: 1135
- Joined: Wed Aug 21, 2013 3:55 pm
- Location: San Diego
- Projects :: SWBF2 PSP+PS2 Conversion
Re: The SWBF2 Video Archive
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
-
- Posts: 1446
- Joined: Thu Jan 23, 2014 6:01 am
- Location: Right behind you :)
- Projects :: Star Wars - Battlefront III Legacy
- Games I'm Playing :: Swbf GTA CoD LoL KH
- xbox live or psn: El_Fabricio#
Re: The SWBF2 Video Archive
Oh didn't know that. Sorry. I just un-privated it.
- jedimoose32
-
- Posts: 943
- Joined: Thu Jan 24, 2008 12:41 am
- Location: The Flatlands of Canada
- Projects :: Engineering Degree
70 posts
• Page 3 of 4 • 1, 2, 3, 4
Who is online
Users browsing this forum: No registered users and 1 guest