Jump to content

[RELEASE] Vehicle Key Changer [Updated for 1.0.7]


salival

Recommended Posts

Vehicle Key Changer is part of Epoch 1.0.7.1 now.

 

Hi,

Here's my version of  @OtterNas3 vehicle key changer.  It was subsequently modified by @Grahame for epoch 1.0.6. Updated for 1.0.7.

This adds support for briefcases, gems and coins as well as using the epoch vehicle upgrade system to do the key changing/claiming.

* original discussion url: https://epochmod.com/forum/topic/5972-release-vehicle-key-changer-for-making-masterkey-v-14-updated-06152014/

* updated discussion url: https://epochmod.com/forum/topic/43048-release-vehicle-key-changer-for-making-masterkey-v-141-updated-for-epoch-106/

Github link with install directions: https://github.com/oiad/vkc

**EDIT* Link to a working locate Vehicle script that is able to find multiple vehicles per key: 

 

**** For Epoch 1.0.6.2 only **** >> Download <<

Visit this link: https://github.com/oiad/vkc/tree/vkc-Epoch-1.0.6.2

Link to comment
Share on other sites

  • 2 months later...

@salival here is my RPT Client Side

  Reveal hidden contents

 

Link to comment
Share on other sites

  • 1 month later...
  • 3 weeks later...
  On 6/21/2017 at 8:17 AM, salival said:

@kingpapawawa:

VKC is weird, I can't reproduce the dupe problem but I know it's there,I changed it to use the epoch vehicle upgrade script to spawn (so you would expect that this would also dupe if it was a serverside problem) instead of the way the original script was doing it, dupe was present in the original, too.

the script uses an arma function called showCommandingMenu, I have a feeling that this is what's causing it, when I have been able to make it dupe, it seemed like it ran the client side script twice which tells me it's client side.

I have toyed with the idea of making a simple UI for it just to see if it was the problem and moving away from showCommandingMenu.

Expand  

Personally.. I think you should have to point the 2 vehicles at each other like those learning remotes.. just right click the key and 'boom' lightning crackles, screen colors go crazy like some wacky weed script, your blood drops by half, maybe your legs break.. and both vehicles go on that key you right clicked.  No menu needed. 

Link to comment
Share on other sites

Hey Salival I'm having a little trouble - I think it's with the fn_selfActions - when I put cursor on a trader I don't get "trader menu" and none of the key change menu is working when I have keys and a keykit and cursor on vehicle - I Installed this and the multi-key vehicle locator at the same time, locator is working normally. I'm running your version of zsc and it really didn't look tricky to merge, but apparently I've messed it up somewhere. Would you mind taking a look? Oh and no errors in server or client rpt that I've seen yet, strangely.

 

  Reveal hidden contents

 

Link to comment
Share on other sites

  On 6/28/2017 at 2:54 AM, _Lance_ said:

Hey Salival I'm having a little trouble - I think it's with the fn_selfActions - when I put cursor on a trader I don't get "trader menu" and none of the key change menu is working when I have keys and a keykit and cursor on vehicle - I Installed this and the multi-key vehicle locator at the same time, locator is working normally. I'm running your version of zsc and it really didn't look tricky to merge, but apparently I've messed it up somewhere. Would you mind taking a look? Oh and no errors in server or client rpt that I've seen yet, strangely.

 

  Reveal hidden contents

 

Expand  

Hey,

I have fixed your problem (hopefully) and emailed your listed email address here on the forum.

It looks like when you merged the fn_selfActions you made some merging errors, let me know if this solves your problem.

Link to comment
Share on other sites

  • 4 weeks later...
  • 2 weeks later...

Hi guys,

In the next few days (work and wife depending) I'll push a major update to this script to github.

I've basically rewritten it to have a UI (like the one I made for my virtual garage remake) so it's ditched the mouse scroll wheel menu that I thought was causing the dupe.

It's now a lot prettier and on the upside I have no gotten it to dupe a vehicle again!

I am also sure I have fixed the bouncing problem that we were seeing. I can no longer get it to bounce a vehicle when it changes it.

Below is a screen shot of the new UI.

7B7DE2B26CDA34CFA011457BA3FE69CD702C4984

Link to comment
Share on other sites

  On 8/7/2017 at 1:57 PM, Runewulv said:

hey I use static weapons at my missions, I would like to make it so static weapons can't be claimed?

Expand  

in your fn_selfActions.sqf, find this line:

if (_isVehicle && {_characterID == "0"} && {_hasKeyKit} && {!_isMan} && {_isAlive}) then {

replace it with this line:

if (_isVehicle && {_characterID == "0"} && {_hasKeyKit} && {!_isMan} && {_isAlive} && {!(_cursorTarget isKindOf "StaticWeapon")}) then {

 

Link to comment
Share on other sites

Hey guys,

I've finally written up the documentation and released the latest version of VKC.

This one now uses a dialog interface and i believe (fucking hope so!) that the dupe is no longer there. I have not experienced it at all since updating.

I need definite feedback on this release, how it's working and if you notice any weirdness. I have tested this significantly but there could be things I have missed.

I have included information on how to update from the older version including uninstall information.

https://github.com/oiad/vkc#fresh-install for a fresh install or https://github.com/oiad/vkc#upgrading-with-previous-version-installed if you are updating

Link to comment
Share on other sites

Ill be happy to install this in the morning (its 138AM here now) and give you feedback. I've not experienced duping with the last version, the only thing that sucked was the bouncing of vehicles. Had a mh60s shoot 60 feet into the air and kill me when I tried to key it. So if that's fixed, i'm golden haha.

Link to comment
Share on other sites

We've had cases of duping and bouncing on our server so I'll gladly get it updated. But here's a question:

In my server's publish vehicle 3 sqf on 49 it looks like:    _location = getPosATL _object;

but on the uploaded one on the same line its like :          _location = [_object] call fnc_getPos;

Is there a functioning difference and should i be using my original or whats in the uploaded file?

Link to comment
Share on other sites

  On 8/10/2017 at 8:12 AM, ADG Commander said:

We've had cases of duping and bouncing on our server so I'll gladly get it updated. But here's a question:

In my server's publish vehicle 3 sqf on 49 it looks like:    _location = getPosATL _object;

but on the uploaded one on the same line its like :          _location = [_object] call fnc_getPos;

Is there a functioning difference and should i be using my original or whats in the uploaded file?

Expand  

Run the uploaded one as per the instructions for updating, its hopefully the fix for bouncing vehicles.

I've tested it everywhere I can think of with different vehicle types, can't get it to do it any more

Link to comment
Share on other sites

  On 8/10/2017 at 9:08 AM, salival said:

Run the uploaded one as per the instructions for updating, its hopefully the fix for bouncing vehicles.

I've tested it everywhere I can think of with different vehicle types, can't get it to do it any more

Expand  

well its in and working, ill do some testing on our side as well and hopefully gets the same results. thanks for the work!

Link to comment
Share on other sites

had it installed for about an hour now. Tested several vehicles with claiming. I can confirm it does not bounce a vehicle any more. Even tested it on the helis that killed me before, and no bounce. Well done mate. That interface is great too, would love to see it added to the vehicle unlock/lock script for choosing a vehicle to use the script with.

Link to comment
Share on other sites

  On 8/10/2017 at 5:07 PM, Runewulv said:

had it installed for about an hour now. Tested several vehicles with claiming. I can confirm it does not bounce a vehicle any more. Even tested it on the helis that killed me before, and no bounce. Well done mate. That interface is great too, would love to see it added to the vehicle unlock/lock script for choosing a vehicle to use the script with.

Expand  

I like that idea. very possible.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...