Captinlarry
Member-
Content Count
23 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout Captinlarry
-
Rank
Private First Class
-
Captinlarry started following AI causing MP slots to not appear on server
-
AI causing MP slots to not appear on server
Captinlarry posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
So I created a mission file for my units new training map. When testing on my own PC I get no errors and see all slots intended. The slot selection screen on my own PC When I upload the mission on server I see no slots to select at all. There are no visible errors. The Slot Selection screen on the server box After doing some testing and removing all objects from the mission file and testing one at a time I discovered my issue is BLUFOR AI that I placed down using animations from 3Den Enhanced. When I remove them from the mission file everything works perfectly. Does anyone know what might be the cause of this ? -
[REQUEST] ORBAT Tutorial
Captinlarry replied to evans d [16aa]'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
Any Help on how to get this to work on a multiplayer server? Works just fine in SP and when I test Mp but nothing shows up when I test on the server Box -
Issues Calling a SQF from a RemoteExcec
Captinlarry replied to Captinlarry's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It calls a funtion that moves multiple objects away from an opening like a door, fires off 8 UnitPath scripts and has some time delays- 4 replies
-
- sqf
- remoteexcec
-
(and 2 more)
Tagged with:
-
Issues Calling a SQF from a RemoteExcec
Captinlarry posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Im having issues calling a Sqf through a simple radio trigger using a RemoteExcec call{playsound "JediDown";}; remoteExec ["Scripts\Start.sqf", 2]; The Trigger in Question Bane of my existence Path Scripts\Start List of SQFs Also having some issues with Addactions that activate SQFs. call{this addaction [ "Disable Security Lockdown", { "StarLock.sqf" remoteExec ["execVM", 2];}];} I was Using this ^^ but my Mod guys tell me that will call on every machine, kill frames and crash the server. Any and all help would be apperciated- 4 replies
-
- sqf
- remoteexcec
-
(and 2 more)
Tagged with:
-
scripts Adding an Image to a CutText
Captinlarry replied to Captinlarry's topic in ARMA 3 - MISSION EDITING & SCRIPTING
This is the error message i'm getting -
scripts Adding an Image to a CutText
Captinlarry posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
[] spawn { 101 cutText ["Image: ", image "image\SWLogo.paa"]; 101 cutFadeOut 7.0; sleep 8; 101 cutText ["<t size='3.0' color='#008AB8' font='EtelkaMonospacePro'>Believe in yourself or no one else will.</t>", "BLACK", 3.0,true,true]; 101 cutFadeOut 7.0; sleep 8; }; trying to add an Image to my cuttext per This Link -
[Release] Tigris Flak Conversion Script
Captinlarry replied to flyinpenguin's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Having issues posting the PBO and the SQM here. -
[Release] Tigris Flak Conversion Script
Captinlarry replied to flyinpenguin's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yup. Still got the Error -
[Release] Tigris Flak Conversion Script
Captinlarry replied to flyinpenguin's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Alright then what am I doing wrong then? -
[Release] Tigris Flak Conversion Script
Captinlarry replied to flyinpenguin's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I posted this removeMagazinesTurret ["4Rnd_Titan_long_missiles", {0}]; this addEventHandler ["Fired", {deleteVehicle (_this select 6); _this execVM "scripts\flak.sqf";}]; In the init of the tigris -
[Release] Tigris Flak Conversion Script
Captinlarry replied to flyinpenguin's topic in ARMA 3 - MISSION EDITING & SCRIPTING
https://gyazo.com/82d7a887decdf003465925cb98fe6392 Tried using the Flak script and everything above but I keep getting this error with no Flak appearing. -
sqf Activating a trigger through an SQF
Captinlarry replied to Captinlarry's topic in ARMA 3 - MISSION EDITING & SCRIPTING
The code is a UnitCapture log for 15 aircraft. Each aircraft has its own path, Flight one does its flyover first, 2 flight second and so on. I would post it but its 15 different SQFs which read as Path1=(data); [B1,Path1] spawn BIS_fnc_unitPlay; B1 engineOn true; [] spawn MyPath1; [] spawn Mypath2; [] spawn Mypath3; [] spawn Mypath4; [] spawn Mypath5; Better? -
sqf Activating a trigger through an SQF
Captinlarry replied to Captinlarry's topic in ARMA 3 - MISSION EDITING & SCRIPTING
You've lost me chief 😅 -
sqf Activating a trigger through an SQF
Captinlarry replied to Captinlarry's topic in ARMA 3 - MISSION EDITING & SCRIPTING
You mean the Path Names? -
sqf Activating a trigger through an SQF
Captinlarry replied to Captinlarry's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Sorry to rehash this but Im having a similar problem again. Current issue is Im trying to call an SQF from a trigger. Trigger is set in the water and when players cross into the area I need it to fire the SQF which has about 15 paths and music in it. I thought about calling directly from the trigger but IIRC "Sleep" does not work on triggers. The SQF call{playsound "Eyes";}; sleep 5; rec = [] spawn MyPath1; rec = [] spawn Mypath2; rec = [] spawn Mypath3; rec = [] spawn Mypath4; rec = [] spawn Mypath5; sleep 5; rec = [] spawn Mypath6; rec = [] spawn Mypath7; rec = [] spawn Mypath8; rec = [] spawn Mypath9; rec = [] spawn Mypath10; sleep 5; rec = [] spawn Mypath11; rec = [] spawn Mypath12; rec = [] spawn Mypath13; rec = [] spawn Mypath14; rec = [] spawn Mypath15;