[Release-Archived] ClipSaverV v1.2.0

ClipSaverV v1.2.0

ClipSaverV is a small script which let your players to save clips for the Rockstar Editor (Pause → Rockstar Editor) with scripthook turned off (no trainers)

Installation

  • Copy the clipsaverv folder and put it in your resources folder from the git
  • Add clipsaverv in the autostart section (server.cfg or citmp-server.yml)
  • Modify bindings as you want in the config.lua file (https://wiki.fivem.net/wiki/Controls)
  • Stop your server, clear the cache then start your server
  • Enjoy :slight_smile:

/!\ You have to be in the session you recorded the clip to edit it in the rockstar editor, and you have to press the Open Editor button to open the Rockstar Editor (not the menu pause one) otherwise it will bug out /!\

Note: Opening the editor menu will instance you.

Default bindings

17 Likes

/me Hands over cookie

4 Likes

Nice script by nice gay :smiley:

2 Likes

/me hands some milk for that cookie

2 Likes

/advert Just use Lambada Menu

1 Like

And what if you have client side scripthook turned off?

4 Likes

You make a memeclient and call it lit

1 Like

Can the action replay get fixed? Or is this a FiveM bug? I can’t find anything on the action replay issue for FiveM and this is the closest thing to it. I would love to get that to work.

very helpful script thanks so much! anyway, i have a major problem. when i press B on xbox pad, it go in rockstar editor. i tried to change F10 to F9 but still same issue. Someone know a fix?

1 Like

i hope that gets fixed its annoying… but script soo good:/

is there an issue on ClipSaver ?

3 Likes

@Kyominii yes see above~!

Try other controls : https://wiki.fivem.net/wiki/Controls
https://github.com/Kyominii/ClipSaverV/blob/master/clipsaverv/config.lua#L7

1 Like

txh bro :sunglasses:

Did anyone get this working?

@Kyominii Hey man, great work. I wonder if I can get this working by typing a certain command in chat, like for example /record and then /save. I wrote this code under your coude but it doesn’t seems to work. Any ideas how to fix that?

< Citizen.CreateThread(function ()
while(true) do
Citizen.Wait(10)
if(IsRecording()) then
if(IsControlJustPressed(1,config.binding.stop_save_record)) then
StopRecordingAndSaveClip()
end

		if(IsControlJustPressed(1,config.binding.stop_discard_record)) then
			StopRecordingAndDiscardClip()
		end
	else
		--Doesn't seems to work
		if(IsControlJustPressed(1,config.binding.start_record_replay)) then
			StartRecording(0)
		end
	
		if(IsControlJustPressed(1,config.binding.start_record)) then
			StartRecording(1)
		end
	end

	if(IsControlJustPressed(1,config.binding.open_editor)) then
		NetworkSessionLeaveSinglePlayer()
		ActivateRockstarEditor()
	end
end

end)

AddEventHandler(‘chatMessage’, function(source, _, message)
local msg = string.lower(message)
local identifier = GetPlayerIdentifiers(source)[1]
if msg == “/record” then
StartRecording(1)
end
end)

Can you increase the recording of clips? for but a minute?

Hey its all good till i dont know how to export snapmatics from the video editor or even how to export the videos iv edited

hello all
when I go to modify the video on the rockstar editor it makes me crash my game, I can’t find a solution

2 Likes
RegisterCommand("start_record", function()

  StartRecording(1)

end)

-- Creating the command.

RegisterCommand("save_record", function() 

  StopRecordingAndSaveClip()

end)

-- Creating the command.

RegisterCommand("open_editor", function() 

  NetworkSessionLeaveSinglePlayer()

  ActivateRockstarEditor()

end)