-
Content Count
143 -
Joined
-
Last visited
-
Medals
Community Reputation
28 ExcellentAbout reggaeman007jah
-
Rank
Sergeant
Profile Information
-
Gender
Not Telling
Contact Methods
-
Biography
AKA Mush, AKA Tac-Mush AKA Winter Sun
-
Youtube
https://www.youtube.com/channel/UCBMr2SnJNWlF5oFAjO32y3w
Recent Profile Visitors
-
reggaeman007jah started following taro8
-
indiCam - independent camera mod
reggaeman007jah replied to woofer808's topic in ARMA 3 - ADDONS & MODS: COMPLETE
-
Hello everyone, I have been playing around with unitCapture for a while now, and put together a very basic framework that might help people get into it if they have not tried it before, or might save some time for people who already know how to use it. I'm not a great scripter by any stretch, so apologies if there is some bad practice inside (any improvements gratefully received). This video demonstrates the process: The code is here: https://github.com/reggaeman007jah/ucsf init.sqf capture.sqf flight1.sqf The idea is that you basically record your path and simply paste it in between the two comments, and is should just work. This assumes ofc that you have named your helis correctly. It made things a bit easier for me, especially when applying unitPlay to multiple helis at the same time. So, I hope this is of some help to others. Cheers
-
iniDBI2 - Save and Load data to the server or your local computer without databases!
reggaeman007jah replied to code34's topic in ARMA 3 - ADDONS & MODS: COMPLETE
@code34 once again thank you for this great product. Do you have any plans to enable a file hierarchy? Currently all created files are stored in once place, but what would be quite nice is if you could specify the creation of sub-folders within the root, so you could have folders for Users, Assets, Locations etc.. -
help with config.cpp
reggaeman007jah replied to reggaeman007jah's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
apologies, thank you -
help with config.cpp
reggaeman007jah replied to reggaeman007jah's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
ok, so this is what I have now: I know this is wrong (i.e. this does not trigger anything). Am I getting the CfgFunctions wrong here? -
help with config.cpp
reggaeman007jah replied to reggaeman007jah's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Thank you both for your help, I will take this on board ... -
help with config.cpp
reggaeman007jah replied to reggaeman007jah's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
yes, CBA is loaded.. But I would happily activate this in a simpler way, without a CBA dependency .. Perhaps the question is, if I were to remove any dependency on CBA, how could I initialise the script that activates the keypress EH (easyArtyInit.sqf)? -
Hi everyone, I am only just starting to get into making addons, and have just completed my first - a simple dialog that simulates arty by creating explosions based on a 10-digit-grid entry into a dialog. It is basic, but it works in the editor. Now I am trying to pack it up as an addon for private use amongst mates (so not binarised or signed), but I think I am tripping up with the activation of the mod, which I believe is done in the config.cpp file. This is what I have currently: Now I have loaded the mod, and fired up a new session in the editor. The dialog is meant to appear on keyDown (hash key). However this does not happen. However if I go into the debug and enter 'call compile preprocessFileLineNumbers '\easyArty\easyArtyInit.sqf', the mod triggers, and the dialog appears on keydown hash. So I can assume that the mod itself is working ok, and it is an issue with the initialisation (in the .cpp). This is my first mod attempt, so apologies if this is all basic, or if I am missing something very obvious. I have tried for some time to figure this out on my own, but am now calling in help.. Any assistance on this would be very gratefully received! Cheers Alex
-
help with angle of heli
reggaeman007jah replied to reggaeman007jah's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thank you ... just what i needed 🙂 -
Hi, I am messing around with a HUD script for helicopters, and am having trouble getting the angle of the heli as a value. Can anyone point me in the right direction of a command that can tell me the amount that the unit (or the heli the unit is in) is leaning forwards or backwards? thanks in advance
-
reggaeman007jah started following How do you plan your scripts/systems?
-
help with a forEach command
reggaeman007jah replied to reggaeman007jah's topic in ARMA 3 - MISSION EDITING & SCRIPTING
:) haha thank you, sorry :) Much appreciated. -
Hello all, I was hoping for some advice on an issue I am having. I am creating some blufor units to send into battle, and can create and move them to the first objective fine. I am also keeping them at said location for a bit while they fight off attackers. When the attack waves have completed, I am also changing the colour of the marker I created to make it easy to see where the action is. My issue is getting the units to move to another location. This is what I used to create the units: I have some conditions running which help to manage mission progression. The condition in question to trigger continuation of the mission is _point1attack = true, and this is applied when all point1 enemies are killed. My assumption was that I needed a forEach command, but this (and variations of this) did not work: If anyone could steer me right on this I would be very grateful.. apologies for missing what is probably a very obvious error here... Thanks RM.
-
iniDBI2 - Save and Load data to the server or your local computer without databases!
reggaeman007jah replied to code34's topic in ARMA 3 - ADDONS & MODS: COMPLETE
thank you mate, really appreciated. -
iniDBI2 - Save and Load data to the server or your local computer without databases!
reggaeman007jah replied to code34's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Hello folks, Firstly, I want to thank code34 for this mod. It has opened up so many possibilities for me, and I am so keen to get it working on my server. Also, thank you to gokitty1199, your videos made the impossible possible for me, and I could not have achieved what I have so far without your tutorials. I have learned a lot, so thank you! Next, I want to apologise if the solution to what I am asking is completely obvious. I am by all accounts a very novice scripter, so perhaps the answer to my problem is right in front of my eyes and I just am too blind to see it. I am trying to build a pilot's diary, simply to record the time spent in the heli. Now, using gokitty1199's tuts, and some googling, I have got something that works. Well, most of the time. The problem I am having is with the initial load of the DB info into the script. On first load into the server (and in case it matters, I am testing in the editor, using the MP option), the script does not work. My debug hints that trigger when you get in and out of the heli show that the data is not being passed into the script as it should on first accessing the server (i.e. when the DB is created initially). However, when I respawn and try again, it works completely fine. So, not a critical problem, but it's really doing my head in not understanding why X) Could someone please explain where I am going wrong here? How do I get the flight data loaded correctly on first load of the server? I hope I have explained this properly.. My files: init.sqf initServer.sqf createDatabase.sqf getData.sqf heli.sqf I have tried to resolve this on my own, and for the life of me I cannot get this to work on the first time the DB loads. @gokitty1199 @code34 Any advice gratefully appreciated! PS. I have another blocker with load values, but I wanted to tackle my problems one at a time ;) -
Rotolib VSI Value
reggaeman007jah replied to reggaeman007jah's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thank you Haz .. :)