-
Content Count
52 -
Joined
-
Last visited
-
Medals
-
OCAP - Op Capture And Playback (AAR/Replay)
XianGrim replied to Gudsawn's topic in ARMA 3 - ADDONS & MODS: COMPLETE
@Gudsawn I still have you bookmarked! Any word on progress? -
Reset Targets via Laptop
XianGrim replied to kraxous's topic in ARMA 3 - MISSION EDITING & SCRIPTING
you need a nopop statement somewhere.For example, you could add another action to the laptop such as "Start Range" or something. inside that actions code: nopop=true and then in your action to Reset the range, add: nopop=false There's other ways of doing it of course but that's just the easiest to implement IMO -
Check name of bullet in EH "fired"
XianGrim replied to Taylor1984's topic in ARMA 3 - MISSION EDITING & SCRIPTING
you should use a formated hint to check the name hint format ["bullet name = %1",(_this select 7)]; I think should give you the projectile in the EH IIRC -
trigger to block entry to zeus and scripts for server configurations
XianGrim replied to Barba-negra's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Haven't tested it but could you set up the module for an area to restrict Zeus and then sync it to a trigger? No idea if it would work but you could try it. -
Asking for Help with "Domination!" - Respawnscript
XianGrim replied to Nexus Payne's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Open the x_inithelirespawn2.sqf and in line 16 you'll see: private _vposp = (getPosATL _vec) vectorAdd [0, 0, 0.1]; which you can change to: private _vposp = (getPosASL _vec) vectorAdd [0, 0, 0.1]; Then, since we get the ASL position, we can remove the surfaceIsWater check in x_server\x_f\fn_helirespawn2.sqf: if (surfaceIsWater _cposc) then { private _asl_height; if (!isNil "d_the_carrier") then { _asl_height = d_the_carrier getVariable "d_asl_height"; }; if (isNil "_asl_height") then { _asl_height = (getPosASL d_FLAG_BASE) # 2; }; _cposc set [2, _asl_height]; [_vec, _cposc] spawn { params ["_vec", "_cposc"]; sleep 1; _vec setPosASL _cposc; _vec setDamage 0; }; }; Just comment those lines out: /*if (surfaceIsWater _cposc) then { private _asl_height; if (!isNil "d_the_carrier") then { _asl_height = d_the_carrier getVariable "d_asl_height"; }; if (isNil "_asl_height") then { _asl_height = (getPosASL d_FLAG_BASE) # 2; }; _cposc set [2, _asl_height]; [_vec, _cposc] spawn { params ["_vec", "_cposc"]; sleep 1; _vec setPosASL _cposc; _vec setDamage 0; }; };*/ -
Asking for Help with "Domination!" - Respawnscript
XianGrim replied to Nexus Payne's topic in ARMA 3 - MISSION EDITING & SCRIPTING
do you have a link to his respawn script? I imagine its a simple issue of at what height he's respawning vehicles at. its probably a very easy fix or a quick workaround could solve your problems -
createVehicle to make a radio and intel show up on table
XianGrim replied to Play3r's topic in ARMA 3 - MISSION EDITING & SCRIPTING
You could shorten that a bit. No need to have 2 if statements with the same condition: leader1 SwitchMove "AinvPercMstpSrasWrflDnon_Putdown_AmovPercMstpSrasWrflDnon"; sleep 3; if (isServer) then { Radioplayer hideObjectGlobal false; EvMoscowIntel hideObjectGlobal false; }; _null = execVM "briefing\diary.sqf"; -
Hello everyone, I currently have just over 4500 hours in Arma 3, 90% of those are in the editor. I LOVE teaching and I love the freedom that BI provides in the editor and scripts. You can make just about anything! I really enjoy helping out people with scripts and helping those who are trying to learn to do it themselves! If you are working on a script and need help, are a beginner and would like some dedicated advice for those questions that always seem to come up when no one is online to ask, hit me up on Discord XianGrim#6219 or on Steam, XianGrim. I will never charge a single penny for any help! A few "conditions" for my help:. I don't "play" Arma anymore (that many hours, I'm burned out from playing but still love the editor!) so I will NOT be downloading any mods. I might be able to help with general questions like, how to add a mod to your server, how to key it etc but probably not specific questions related to scripts dealing with mods. But if you have a question along the lines of, I have X mod and want to spawn Y vehicle at Z position on the map, how do I do that? I CAN answer that! Again, love teaching so please ask as many questions as you like! If I can't help you or don't know the information, I can at least point you in the right direction!
-
createVehicle to make a radio and intel show up on table
XianGrim replied to Play3r's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Came to suggest the same thing. I agree with Pierre. You'd have much more control over the items without having to worry about more lines of code to make sure the direction and height of the object are correct. -
playSound Issues - Much to everyones joy
XianGrim replied to swift39's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Did you try playMusic? -
lol You could "cheat" it diableUser input, use the large User Texture and some clever camera angles and play the video on the screen, fade to black as you want, ENABLE userInput and continue on. Just a thought. I could put a quick demo for you if you need. EDIT: Also, just found this post:
-
Need Help with Custom MP Mission [SC]
XianGrim replied to red_buyer's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Just off the top of my head, you could add a trigger that executes a small script that creates a marker in that sector. add that marker to a respawn array and that should do the trick. -
How do I set a camera straight downwards or tilt it a few degrees?
XianGrim replied to Purzel's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Couldn't you just put down an invisible helipad (or any object really) in the center of the room and use camSetTarget to force the camera to look at it? That's what I've done in the past to get camera shots. Seems like it might save you a lot of headaches. -
player setpos vehicle / player moveInCargo after respawn not working
XianGrim replied to LoOni3r's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Is that your entire .sqf? I did a small scale test and seemed to keep teleporting the player into the vehicle after it was respawned. Also might help us narrow it down if you show/tel;l us how you are calling the script. Its execution could also be important.- 11 replies
-
- setpos
- moveincargo
- (and 4 more)
-
Radio Jammer's with Sounds!
XianGrim replied to XianGrim's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Updated - Fixed another error, the jammer name needed to be inside an array.