Operation Flashpoint Dragon Rising in 3 person mod?
+2
TheGeneral
JoeDogs
6 posters
Page 1 of 1
Operation Flashpoint Dragon Rising in 3 person mod?
Is there anyone who can make a Operation Flashpoint Dragon Rising in 3 person mod? In one of the Intel missions you can play for 3 person. It would be super cool. Dragon Rising looks fantastic in the 3 person!
Re: Operation Flashpoint Dragon Rising in 3 person mod?
If you watch the video of d-day, there is a small cut of me running up to a bunker in third person.
Problem is, i can't for the life of me remeber how i did it. It does have something to do with camera code though. Someone asked me about it ages ago. I'll have a look later to see if i still have the code for it. Ive got that many mssn's it might take a while. I do know though it was a little tempramental to play with.
Problem is, i can't for the life of me remeber how i did it. It does have something to do with camera code though. Someone asked me about it ages ago. I'll have a look later to see if i still have the code for it. Ive got that many mssn's it might take a while. I do know though it was a little tempramental to play with.
Re: Operation Flashpoint Dragon Rising in 3 person mod?
It was amazing we could be getting it to work. 

Re: Operation Flashpoint Dragon Rising in 3 person mod?
I upload a video now. About how to play 3 person. Here is the mission. Intel / Intel I7 LRRP.
Downloade Nickned pack to get Intel mission her - Nickned pack
Downloade Nickned pack to get Intel mission her - Nickned pack
Re: Operation Flashpoint Dragon Rising in 3 person mod?
Well, as I remember well from playing that mission many times, in this particular moment it's actually a bug. It happens when you (being passenger) switch to external view in SeaHawk and don't manage to switch it back to cockpit/onboard view before disembarking helo. You stay then in 3rd person view until you get into Humvee and switch view again to 1st person.
Other than that it would be really refreshing to have that opportunity to see your own "toy soldier", since they are all very well animated and modelled.
Other than that it would be really refreshing to have that opportunity to see your own "toy soldier", since they are all very well animated and modelled.
JurekCello78- Veteran
- Location : Poland
Points : 121
Reputation : 2
Join date : 2012-12-26
Age : 44
Re: Operation Flashpoint Dragon Rising in 3 person mod?
I do not remember, but a long time ago that I read an article that Operation Flashpoint Dragon Rising was meant to play in 3 person. In 3-person game runs very smooth compared to 1 person.
Re: Operation Flashpoint Dragon Rising in 3 person mod?
Yes it does, cause it doesn't zoom in all distant ground with details as it does when in 1st person view.
JurekCello78- Veteran
- Location : Poland
Points : 121
Reputation : 2
Join date : 2012-12-26
Age : 44
Re: Operation Flashpoint Dragon Rising in 3 person mod?
I think if Mdog get this right. Will many more play OFDR! Be more popular.
Re: Operation Flashpoint Dragon Rising in 3 person mod?
Codemasters included the functions OFP:swapTo1stPersonCamera and OFP:swapTo3rdPersonCamera in the Lua script engine. Of course they are undocumented and no one seems to have figured out how to use them.
Regg- Veteran
- Points : 143
Reputation : 10
Join date : 2013-02-22
Re: Operation Flashpoint Dragon Rising in 3 person mod?
Ok, so I know this one...
you need to be mounted in a vehicle position which allows a 3rd person view of the vehicle.
eg. driver or passenger.
...you then need to turn the letter box on screen display on ... OFP:showLetterBoxOsd(true)... this needs to be done once your in the vehicle 3rd person as the letter box restricts you from changing views.
When you dismount a vehicle under these circumstances you'll exit the vehicle in 3rd person view.
re-mounting a vehicle and then dismounting without letter box on screen display on ... OFP:showLetterBoxOsd(false) ...will return the view back to 1st person.
I've tested and confirmed this with the following code...
p.s my main pc has died... poo.
you need to be mounted in a vehicle position which allows a 3rd person view of the vehicle.
eg. driver or passenger.
...you then need to turn the letter box on screen display on ... OFP:showLetterBoxOsd(true)... this needs to be done once your in the vehicle 3rd person as the letter box restricts you from changing views.
When you dismount a vehicle under these circumstances you'll exit the vehicle in 3rd person view.
re-mounting a vehicle and then dismounting without letter box on screen display on ... OFP:showLetterBoxOsd(false) ...will return the view back to 1st person.
I've tested and confirmed this with the following code...
- Code:
function numpad1()
OFP:showLetterBoxOsd(true)
end
function numpad2()
OFP:showLetterBoxOsd(false)
end
p.s my main pc has died... poo.
tjdagger- Admin
- Location : Silverdale, Queensland, Australia
Points : 107
Reputation : 7
Join date : 2012-12-17
Age : 47
Re: Operation Flashpoint Dragon Rising in 3 person mod?
Hi,
I would like to know where to write this code ?
Should I create a "level script" and write this code on the level.lua windows ? I tried it but it doesn't work.
If someone could explain to me what to do it will be very cool.
thank you
I would like to know where to write this code ?
Should I create a "level script" and write this code on the level.lua windows ? I tried it but it doesn't work.
If someone could explain to me what to do it will be very cool.
thank you
baptistus- Points : 7
Reputation : 2
Join date : 2014-05-14
Re: Operation Flashpoint Dragon Rising in 3 person mod?
Ok, I found another solution
I place a trigger
and a level script, and write on the level.lua windows
I place a vehicule.
I start the mission, I enter the vehicule, 3nd person view, I enter the trigger zone, exit the vehicule, and leave the trigger zone, and now I can play at the 3rd person.
I place a trigger
and a level script, and write on the level.lua windows
function onEnter(zoneName, unitName)
OFP:showLetterBoxOsd(true)
end
function onLeave(zoneName, unitName)
OFP:showLetterBoxOsd(false)
end
I place a vehicule.
I start the mission, I enter the vehicule, 3nd person view, I enter the trigger zone, exit the vehicule, and leave the trigger zone, and now I can play at the 3rd person.
baptistus- Points : 7
Reputation : 2
Join date : 2014-05-14
Re: Operation Flashpoint Dragon Rising in 3 person mod?
well done mate! Welcome to the forum aswell.baptistus wrote:Ok, I found another solution
I place a trigger
and a level script, and write on the level.lua windowsfunction onEnter(zoneName, unitName)
OFP:showLetterBoxOsd(true)
end
function onLeave(zoneName, unitName)
OFP:showLetterBoxOsd(false)
end
I place a vehicule.
I start the mission, I enter the vehicule, 3nd person view, I enter the trigger zone, exit the vehicule, and leave the trigger zone, and now I can play at the 3rd person.
@Joedoggs
he tells you what to do above. You can't put this in the vanilla game if thats what you were thinking?
Re: Operation Flashpoint Dragon Rising in 3 person mod?
Wow! Someone used it... with success! ...from so long ago.
Pleased.
Pleased.
tjdagger- Admin
- Location : Silverdale, Queensland, Australia
Points : 107
Reputation : 7
Join date : 2012-12-17
Age : 47
Re: Operation Flashpoint Dragon Rising in 3 person mod?
baptistus wrote:Ok, I found another solution
I place a trigger
and a level script, and write on the level.lua windowsfunction onEnter(zoneName, unitName)
OFP:showLetterBoxOsd(true)
end
function onLeave(zoneName, unitName)
OFP:showLetterBoxOsd(false)
end
I place a vehicule.
I start the mission, I enter the vehicule, 3nd person view, I enter the trigger zone, exit the vehicule, and leave the trigger zone, and now I can play at the 3rd person.
Hi JoeDogs,
What baptistus has done is opened a mission (mssn file) in the editor and added the above code with a corresponding trigger to enter. As Mdog said you won't be able to add this to the vanilla missions simply because we don't have the mssn files. But you could certainly do it for any missions you have the mssn file for.
Does that make sense?
tjdagger- Admin
- Location : Silverdale, Queensland, Australia
Points : 107
Reputation : 7
Join date : 2012-12-17
Age : 47
Re: Operation Flashpoint Dragon Rising in 3 person mod?
Yes, you can only use this solution if you create a mission (or have the mssn file).
And the third view is not perfect at all:
-iron sight doesn't work, only scope works but it looks strange if you move/turn
-zoom doesn't work
-when you are on the standing position, the crosshair is not on a good position. The same with the lying position. You can only have a good crosshair position on the crouch position.
so the game is a lot more difficult lol
I join a mssn file
http://www.filedropper.com/thirdview
And the third view is not perfect at all:
-iron sight doesn't work, only scope works but it looks strange if you move/turn
-zoom doesn't work
-when you are on the standing position, the crosshair is not on a good position. The same with the lying position. You can only have a good crosshair position on the crouch position.
so the game is a lot more difficult lol
I join a mssn file
http://www.filedropper.com/thirdview
baptistus- Points : 7
Reputation : 2
Join date : 2014-05-14

» Operation Flashpoint: Dragon Rising with awesom Bluedrake42
» Operation Flashpoint: Dragon Rising - Long Overdue
» Operation Flashpoint 2017
» Operation Flashpoint GOTY
» Dragon Rising FOV
» Operation Flashpoint: Dragon Rising - Long Overdue
» Operation Flashpoint 2017
» Operation Flashpoint GOTY
» Dragon Rising FOV
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum
|
|