Everything posted by mmods
-
Ragepluginhook crash at texture phase 14
Hello, a few days ago I played lspdfr and everything was going alright but today when I tried to play again my rage plugin hook is crashing at start up. Then I tried opening gta v by launcher and then opening rage and it worked but when i tried to load lspdfr, crashed. Here I attach the log of the first time (crashing at start up): And this is de code when I opened rage with the game running and I tried to load lspdfr. I hope you can help me, thanks!
-
ELS Crashing: Parsing file. A crash before all clear indicates faulty VCF.
yes, the xml was correct. I solved the problem by uninstalling and installing again AsiLoader.asi in Open IV and after that rebooting my computer.
-
ELS Crashing: Parsing file. A crash before all clear indicates faulty VCF.
Last week I've been playing LSPDFR and everything was correct. Today I opened GTA V but els wasn't working. Els.log says: "Parsing file. A crash before all clear indicates faulty VCF". Then every part of the VCF loads correctly in the log. I've tried with the els default VCF but still crashing. thanks!
-
Metro Callouts 3 | Llamadas en Español
Hola. Si en español vienen los textos y subtitulos que usa la llamada. Los audios de momento están en ingles. Si en algún futuro encontrase audios en castellano que pudiese usar, los pondré. Actualmente todos los audios de las llamadas están sacados de los archivos del gta.
-
Metro Callouts 3 | Llamadas en Español
-
How to create pursuits in LSPDFR 0.4?
Hi, since LSPDFR 0.4 was released I notice that the pursuits on my callout packs weren't working properly. in this update, when a pursuit starts on my callout, i can't request backup as I did in the last update, i mean, the "pursuit" response type doesn't appear on the backup menu, and the option to stop the pursuit neither. Here is the code I'm using, thanks for the support. pursuit1 = LSPD_First_Response.Mod.API.Functions.CreatePursuit(); LSPD_First_Response.Mod.API.Functions.AddPedToPursuit(pursuit1, person);
-
How can I stop a task?
private Ped myPed1; private Ped myPed2; public override bool OnCalloutAccepted() { myPed1.tasks.fightAgainst(myPed2); myPed2.tasks.fightAgainst(myPed1); } public override void Process() { if (Game.Character.LocalPlayer.Position.DistanceTo(myPed1) <= 4f && Game.IskeyDown(Keys.Y){ myPed1.keepTasks = false; myPed2.keepTasks = false; } Hello I'm making a callout and I want to make two peds fight but when I press a button I want the fight to stop. I tried this but it didn't worked. The code above is what I tried.
-
Callout Manager
Hi! It's a great plugin but it is actually crashing when going on duty. It had never happened to me. Here is my log. Thanks! RagePluginHook.log
- 138 comments
- 34 reviews
-
Is there a way to turn on vehicle's hazard lights?
Thanks for the support. I have tried this and it worked for me. NativeFunction.CallByName<uint>("SET_VEHICLE_INDICATOR_LIGHTS", vehicle1, 0, true); NativeFunction.CallByName<uint>("SET_VEHICLE_INDICATOR_LIGHTS", vehicle1, 1, true);
-
Is there a way to turn on vehicle's hazard lights?
Thanks but how can I implement this on my script?
-
Is there a way to turn on vehicle's hazard lights?
Hi, I'm developing a callout pack for lspdfr and I'm looking a way to turn on a vehicle's hazard lights or indicators. I don't care if I have to use another API that is not rageplugin or lspdfr api. Thank you.
-
Metro Callouts 3 | English Version
-
Metro Callouts 3 | English Version
- 17,541 downloads
- Version 1.2.0.0 EN
Hello, today I'm uploading my first callout plugin for LSPDFR translated to english. I hope you'll enjoy it. Current callouts: Dead body Vandalism Possible ilegal camping (3 variations) Suspicious person Civilian on fire New callouts will be released soon in the 1.3.0.0 version! You can contact with me by twitter or instagram (@mmodsgtav) or by email (mmodsgtav@gmail.com). Please report any bug you encounter. Gameplay of the callouts (Spanish version). Video by alexdeejay17: -
Change GTA V spawn models
Hi! I want to ask you if there is a way to change the vehicles that spawn at police stations (for example I want to set that in the mission row's police station spawn only police2 vehicles). Thank you!!
-
Metro Callouts 3 | Llamadas en Español
Gracias por la sugerencia! Ya he añadido la información. Thanks for the comment, I have just added the information
-
Metro Callouts 3 | Llamadas en Español
- 16,027 downloads
- Version 1.3.0.1
Nota: Este plugin ha sido probado en LSPDFR 0.4.9 y funciona perfectamente a pesar de no estar actualizado desde hace un año. Hola! Este es mi primer plugin de llamadas para lspdfr. Cualquier bug o sugerencia podeis decirmelo por Twitter. Llamadas actuales: - Cadáver. - Vandalismo. - Posible camping ilegal. - Persona armada en el metro de los Santos. Próximamente habrá nuevas llamadas, anunciaré las actualizaciones en mi Twitter (mmodsgtav) e Instagram (mmodsgtav)! THIS CALLOUT PACK IS COMPATIBLE WITH LSPDFR 0.4! Hi today I'm uploading my first callout plugin. Any bug can be reported on my Twitter. Current callouts: - Dead body. - Vandalism. - Possible ilegal camping. - Suspect with a fire weapon at LS Subway. New updates will be announced on my Twitter (mmodsgtav) and my Instagram (mmodsgtav) Video (new version/nueva versión): Video (old version): -
Play Anmation
hi! i want my suspect to walk like is drunk but i don't know how to use the "suspect.Task.PlayAnimation()".
-
Open vehicle door
the keydown method Works correctly. the problema is i don't know how to make it open
-
Open vehicle door
Hello! I want to open a vehicle door when i prees a keyboard key. how could i do it?
-
Damage vehicle
public static void Damage(this.victim, 30f, 100) { var model = victim.Model; model.GetDimensions(out var vector3_1, out var vector3_2); var num = new Random().Next(10, 45); for (var index = 0; index < num; ++index) { var randomInt1 = MathHelper.GetRandomSingle(vector3_1.X, vector3_2.X); var randomInt2 = MathHelper.GetRandomSingle(vector3_1.Y, vector3_2.Y); var randomInt3 = MathHelper.GetRandomSingle(vector3_1.Z, vector3_2.Z); victim.Deform(new Vector3(randomInt1, randomInt2, randomInt3), 30f, 100); } } i have this but makes error (victim is the vehicle)
-
Damage vehicle
hello i'm making a callout of a vehicle that has been damaged by an unknow suspects but i don't know how to spawn the vehicle with damage. i hope you can help me.
-
Create dialogs
Hello. I'm creating a callout and i want to make my witness to talk when i press the "Y" button on the keyboard. I hope you can help me.