Jump to content

How to affix vehicle addon mods


Recommended Posts

Posted
12 minutes ago, Maxx Meyer said:

ArchiveFix  -> Outdated

Someone has another possible solution to let peoples download custom cars etc as package from server?

How is ArchiveFix outdated?

Posted
19 hours ago, Maxx Meyer said:

Hashes are wrong ;)

That doesn't mean archivefix is outdated, I don't even think the program has been updated since 2016, it probably means you need to get the keys again since the 1.44 update so nothing is broken here.

Posted

But after 2 houres of waiting, nothing happend i was using windows 10 pro but now i changed to windows 8.1 Enterprise because i have the license and it is better as windows 10 shit

 

  • 4 weeks later...
Posted (edited)
Am 26.1.2018 um 22:31 schrieb Ari:

Using OpenIV navigate to the /rx7cwest/ folder inside our ArchiveFix root, making sure you're in EDIT MODE right click the dlc.rpf and 'Save Contents/Export' select the /unpack/ folder we just created.

 

Navigate inside /unpack/ copy all the unpacked folders into /newrpf/.

Drag and drop any subsequent *.rpf files inside /newrpf/ onto ArchiveFix.exe

i wrote a small powershell script to get rid of that much drag and drop action.

it works for all developers of our project, so it should for everyone.

simply modify the $sourceDir and $aFixPath to your system enviroment.

the finished dlc.rpf  has to be fixed via drag and drop.

 

#	Copyright © 2018 Larvell, All rights reserved
#
#	Do not edit without permission!
#
#	This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)
#	To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/ or send a letter to Creative Commons,
#	444 Castro Street, Suite 900, Mountain View, California, 94041, USA.

$sourceDir = "D:\RageMP\Development\projects\xxx\wip"
$aFix = "D:\RageMP\Development\tools\ArchiveFix\ArchiveFix.exe"
#	no changes below this line suggested
$files = (Get-ChildItem -Path $sourceDir -Filter "*.rpf" -Recurse).Fullname

ForEach($file in $files){
$p = Start-Process $aFix -ArgumentList $file -wait -NoNewWindow -PassThru
$p.HasExited
$p.ExitCode
}

wish you all a longer life for your mouse ;)

Edited by Larvell
  • 2 weeks later...
Posted (edited)

Tried to follow the guide, for some reasons i'm receiving "corrupt game files, reinstall the game", everything works fine without the "dlcpacks"

Re-followed the guide, works fine now. thank you.

Edited by Grizzly
  • 2 weeks later...
Posted
1 час назад, Stormey сказал:

I try to get the keys for like 45 minutes now.

The only 2 keys I got are:

gtav_aes_key
gtav_ng_key

I dont get feedback , that its still searching or something.
Did i do something wrong? Please help me...

http://prntscr.com/l1hj18

Posted (edited)

I did everything descriped in the tutorial and my dlc packages downloads correctly.

But now I try to spawn the vehicle with the following code

Spoiler

let Veh = mp.vehicles.new(mp.game.joaat("rx7cwest"), new mp.Vector3(-48.59499,-2508.845,7.396171),
            {
                numberPlate: "ADMIN",
                color: [[255, 0, 0],[255,0,0]]
            });

It does not spawn the vehicle and the cursor appears.

Now the game doesnt recognize any server kills anymore and i need to close it.

Edited by SteveDee

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...