-
Content Count
2494 -
Joined
-
Last visited
-
Medals
Everything posted by sarogahtyp
-
Local Variable in Global Space
sarogahtyp replied to anaximandross's topic in ARMA 3 - MISSION EDITING & SCRIPTING
not wrapped: _ammo = getArtilleryAmmo [gun1] select 0; _tgt = getMarkerPos "target1"; gun1 doArtilleryFire[_tgt,_ammo,10]; wrapped in a spawn: private _dummy = [] spawn { _ammo = getArtilleryAmmo [gun1] select 0; _tgt = getMarkerPos "target1"; gun1 doArtilleryFire[_tgt,_ammo,10]; }; Idk why this should help but eden triggers are not my subject area... -
[Fixed] but revealed a bug -- Linux server 1.82 DLCs mismatch
sarogahtyp replied to Xy.'s topic in ARMA 3 - SERVERS & ADMINISTRATION
Answer: https://community.bistudio.com/wiki/server.cfg#Server_Behaviour Just read the documentation before claiming a bug. -
Can't start Zeus -no entry 'config.bin/cfgpatches.utes
sarogahtyp replied to nikiforos's topic in ARMA 3 - QUESTIONS & ANSWERS
https://steamcommunity.com/sharedfiles/filedetails/?id=583544987&searchtext=CUP+Terrains+-+Maps -
Configure Spawn-Locations in Config-File?
sarogahtyp replied to Smart Games's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I m a noob at config scripting but I guess the syntax for arrays is like this (copied out of a config.cpp): // When any of the addons is missing, pop-up warning will appear when launching the game. requiredAddons[]={"cba_settings"}; in scripts you can get those arrays with getArray but I could be absolutly wrong here cause I know nothing bout UIs and only a little bit of configs... -
[SOLVED]open/close map with onMapSingleClick help
sarogahtyp replied to zagor64bz's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I guess this should work but I m not sure: private _mapclick = addMissionEventHandler ["MapSingleClick", { params ["_units", "_pos", "_alt", "_shift"]; **a bunch of code that works fine including a group spawn** removeMissionEventHandler ["MapSingleClick", _thisEventHandler]; }]; Edit: It would also work with your variable if you would declare it global like FOX_mapclick = addMissionEv... thats because your local variable _mapclick is local to the script where you add the EH. At the time when EH is running its not known because the script where it was declared is not running then. -
I am getting an error reading arma3_x64.exe - Bad Image. What do I do?
sarogahtyp replied to T_Bando's topic in ARMA 3 - TROUBLESHOOTING
you have to open a new task here: https://feedback.bistudio.com/maniphest/ there you should get help (if nobody else knows the cause). -
I am getting an error reading arma3_x64.exe - Bad Image. What do I do?
sarogahtyp replied to T_Bando's topic in ARMA 3 - TROUBLESHOOTING
Did you all of this? https://feedback.bistudio.com/T128481 -
I read enough of that nonsense. Blocked now.
-
I would try this https://help.steampowered.com/de/wizard/HelpWithGame/?appid=1294440 and this https://support.bohemia.net/
-
Issue with kbTell conversation scr9pting
sarogahtyp replied to BluBoi's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Show error message out of .rpt file! https://community.bistudio.com/wiki/Crash_Files -
Local Variable in Global Space
sarogahtyp replied to anaximandross's topic in ARMA 3 - MISSION EDITING & SCRIPTING
If you use ace together with rhs then you need those compatibility mods mentioned in the warnings. If this is the case then just search the workshop for those mods, subscribe and load them. -
It seem that the intro layer in eden is for SP only. Therefore you need to put it in the mission:
-
Make group of AI reveal to group of players
sarogahtyp replied to sizraide's topic in ARMA 3 - MISSION EDITING & SCRIPTING
You did Object reveal group But as pf biki there is not such syntax but there is Group reveal object -
Replace object with another via addaction
sarogahtyp replied to combataz's topic in ARMA 3 - MISSION EDITING & SCRIPTING
for sure there happens something in your .rpt file: https://community.bistudio.com/wiki/Crash_Files Edit: you have a semicolon inside of your createVehicle parameter list. this can't work. or maybe there is a missing bracket. hard to tell with your coding style. Edit2: Writing readable code would help you (and all others who read it - me included!) to find such errors faster. -
AI won't obey setUnitPos script command after player commands stance of unit
sarogahtyp replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
maybe it is a problem where your script orders get overriden by engine with the last player stance command. if thats the case then a EachFrame event handler could help which executes setUnitPos on each frame until player is healed or something... -
AI won't obey setUnitPos script command after player commands stance of unit
sarogahtyp replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
U could try to delete and recreate the ai -
ERROR, Every time i shoot, I get this error pop up, It's from a CBA File, How do you fix it?
sarogahtyp replied to DuckDucky's topic in ARMA 3 - MISSION EDITING & SCRIPTING
would be the best if the error occurs without ace. if it is happening with ace together only then you should use a .rpt with cba and ace... -
ERROR, Every time i shoot, I get this error pop up, It's from a CBA File, How do you fix it?
sarogahtyp replied to DuckDucky's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It would help to post a .rpt where CBA only was loaded and the error occured. @DuckDucky @tpw and do it here plz: https://github.com/CBATeam/CBA_A3/issues/1477 -
ERROR, Every time i shoot, I get this error pop up, It's from a CBA File, How do you fix it?
sarogahtyp replied to DuckDucky's topic in ARMA 3 - MISSION EDITING & SCRIPTING
you cant if u have not the old version somewhere. afaik cba has no versions archive somewhere. THEY have to fix it. therefor do a report on their issue page... -
ERROR, Every time i shoot, I get this error pop up, It's from a CBA File, How do you fix it?
sarogahtyp replied to DuckDucky's topic in ARMA 3 - MISSION EDITING & SCRIPTING
https://github.com/CBATeam/CBA_A3/issues/1477 EDIT: @DuckDucky paste your .rpt on cbas issue tracker on the above link. -
ERROR, Every time i shoot, I get this error pop up, It's from a CBA File, How do you fix it?
sarogahtyp replied to DuckDucky's topic in ARMA 3 - MISSION EDITING & SCRIPTING
.rpt is to big I guess therefore: close arma delete all .rpt files restart arma reproduce your problem ingame after that redo the advices from my last post -
ERROR, Every time i shoot, I get this error pop up, It's from a CBA File, How do you fix it?
sarogahtyp replied to DuckDucky's topic in ARMA 3 - MISSION EDITING & SCRIPTING
open it with notepad press ctrl+A switch to forum thread, scroll down to do a new post press the eye icon on top of the new post frame click into spoilers text field press ctrl+V submit reply -
Preventing AI group leaders from issuing orders?
sarogahtyp replied to JOHNBELLO's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Digging up again. Do you have @pierremgi? Edit problem description: I try to command a vehicle by script with sendSimpleCommand I placed an AI driver (hans) in a hunter (wagen) and a AI passenger (chef) who is set as effective commander and leader by script. I also assigned the hunter to the group where are both AI in. The problem is if I use sendSimpleCommand by script or debug console it gets overridden by a command of chef right on the next frame. I can solve this with a onEachFrame event handler but thats the dirty solution. initServer.sqf: waitUntil {sleep 1; time > 0}; private _grp = group chef; _grp selectLeader chef; _grp addVehicle wagen; wagen setEffectiveCommander chef; chef disableAI "all"; sleep 5; onEachFrame { hintSilent str vehicleMoveInfo wagen }; wagen sendSimpleCommand "FORWARD"; sleep 0.5; wagen sendSimpleCommand "FORWARD"; sleep 0.5; wagen sendSimpleCommand "FORWARD"; sleep 0.5; wagen sendSimpleCommand "FORWARD"; sleep 0.5; wagen sendSimpleCommand "FORWARD"; sleep 0.5; wagen sendSimpleCommand "FORWARD"; -
ERROR, Every time i shoot, I get this error pop up, It's from a CBA File, How do you fix it?
sarogahtyp replied to DuckDucky's topic in ARMA 3 - MISSION EDITING & SCRIPTING
post your whole .rpt file with that error message inside pls https://community.bistudio.com/wiki/Crash_Files and use a spoiler (eye icon) for it pls -
ImageToPAA won't convert images
sarogahtyp replied to whiztler's topic in ARMA 3 - BI TOOLS - GENERAL
For converting too .paa i use gimp with the .paa plugin installed. Maybe this helps someone to get it work easier