Jump to content
Hasan Petek

UAV losing connection after destroying vehicle/unit.

Recommended Posts

Hi guys, I'm creating a fun map for my friends and after destroying a unit or vehicle I cannot hack UAV or operate another uav. UAV terminal disables.

Here is a video: Arma 3 Editor problem. (youtube)

 

Can you help me about it?

Share this post


Link to post
Share on other sites

it seems this is intended behavior.

the reason is the players rating value. if it is too low then you can't hack anymore.

killing your sides vehicles lowers the rating value.

 

you can test it in debug console. with

player addRating -20000

now u r unable to hack.

 

after using this:

player addRating 20000

you r able to hack again ...

Share this post


Link to post
Share on other sites
On 3/15/2022 at 1:27 PM, sarogahtyp said:

it seems this is intended behavior.

the reason is the players rating value. if it is too low then you can't hack anymore.

killing your sides vehicles lowers the rating value.

 

you can test it in debug console. with


player addRating -20000

now u r unable to hack.

 

after using this:


player addRating 20000

you r able to hack again ...

Oh okay, I'll try it. Can I delete sides? Because I'm making a fun map for my friend to fight and practice. There are no teams.

Share this post


Link to post
Share on other sites

You could disable the rating system with the HandleRating Eventhandler and overwrite the default engine behaviour by returning your own rating

// initPlayerLocal.sqf
player addEventHandler ["HandleRating", {
	0
}];

 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×