-
Content Count
21 -
Joined
-
Last visited
-
Medals
Community Reputation
2 NeutralAbout .Marti
-
Rank
Private First Class
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Server profilenamespace not saving
.Marti replied to .Marti's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I reply my own thread cause i found the solution, and maybe can be helpful for someone in the future. We had a machine with multiple servers, but only one profile for all of them. Seems that servers were rewriting the shared profile and information sometimes was lost randomly. Solution: 1 profile for each server. (Seems obvious now, but... ). Cheers. -
needhelp Saving crate contents.
.Marti replied to steam-76561198069261992's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Check Larry's post here: You can work from there. -
Server profilenamespace not saving
.Marti replied to .Marti's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@killzone_kid Yes, I did and anyways my variables disappear with the server restart. I'm not the server admin (and I have 0 clue about all of that) so I have to find an alternative route, if I can't convince them to solve it. -
Original title was: How to copyToClipboard in MP and alternatives. But i found the original problem. Hi there, I built a persistance system to work in a Dedicated enviroment. It saves an array in the profileNamespace. However, for some reason if server restarts, all the profile variables are deleted. So, to prevent the loss of all information i was thinking about doing copyToClipboard to all clients so the playerbase can store a copy of the array (Just in case). Ofc, copyToClipboard doesnt work in MP, so I ask you: Which alternative i could use so everyone can store a copy of an array in a dedicated server? Cheers and thanks
-
Help with equipment continuity
.Marti replied to Siberios's topic in ARMA 3 - MISSION EDITING & SCRIPTING
May be helpful too: https://forums.bohemia.net/forums/topic/230527-sort-weaponsitembackpacksmagazines-help/ -
Trigger or module not working on dedicated server in MP mission.
.Marti replied to DOA's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It is possible your task doesn't have an ID? -
Player Persistent Stash
.Marti replied to kaleb c0d3's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi there, this topic may resolve the complex items issue (see Larrow's post): -
The problem probably is that you are not loading the addons/one of them correctly OR you have an addon missing server side. In our case, we had the route to one of the mods with a syntax error (So it was like the addon were missing). Even tho the mission hadn't that specific dependency, when introducing Zeus in the mission it will check for it (In our case, RHS, because we had it on Local but was not well enabled on server). that's how far i can tell you, recheck you have all the mods well routed. Probably you can see in the RPT file what are the missing files. Check that out. Maybe someone can tell you something else, but i think without the RPT file is harder to find a solution. Cheers.
-
Hello there, Just today we had this issue in our community. The thing is (and i have no excessive idea about this) when you dont put any asset from one specific mod (e.g. RHS) nor Zeus, the server doesnt care about that mod beign corrupted/not well loaded. When you use Zeus the server wants to make sure that addon is well loaded. In our case it was simple enough, we had a syntax error when loading RHS and thus that mod was missing. Btw, if you are from my comunity: it's solved! Crisis avoided! 😆
-
Sort Weapons/Item/Backpacks/Magazines HELP
.Marti replied to .Marti's topic in ARMA 3 - MISSION EDITING & SCRIPTING
thanks another time for the tip. Guidance is always helpful! Thanks so much, Larrow! Much appreciated, will test it out. That kind of sensation when you spent whole days trying to do something and it's clearly worst done than your code there. At least i learned a lot hahah EDIT: Tested and working propperly. -
Sort Weapons/Item/Backpacks/Magazines HELP
.Marti replied to .Marti's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hey there, I have another mini-question. It is possible to sort all the types of grenades? Since its parents are ["CA_Magazine","Default"] like all the mags. -
Sort Weapons/Item/Backpacks/Magazines HELP
.Marti replied to .Marti's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks @7erra ! Will check that out. -
.Marti changed their profile photo
-
Sort Weapons/Item/Backpacks/Magazines HELP
.Marti posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hey there! I need to separate an array of various items in weapons/magazines/backpacks/items to load them to a box with addWeaponCargo, addItemCargo, etc. Example of the array: I got them with getWeaponCargo, etc. Maybe the easiest solution would be to store them in different variables when i got them? I would be surprised if I can't classify them but i can't find nothing about it. Any idea how to proceed? Thanks! ------------------- Edit: I'm not storing the arrays directly on different variables because they are suposed to be stored in the profileNamespace of a server, and i wanted to mantain a clean enviroment, but i will do it if I need to. -
Creating Triggers with ForEach HELP
.Marti replied to .Marti's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks for your response @sarogahtyp, I went a little bit further with scopes etc following your advice and found this post with various aportations: Subsequently I edited my initial code with the following: It works now!! Thanks for the alternative solution aswell @pierremgi. Btw, what i'm trying to do is a modules addon for my comunity and i'm learning A LOT with your MGI_Modules. Hope i'm not breaking any authors rights and you are confortable with a scripting newbie learning with it! 😛 -
Hi guys, i'm trying to create a trigger for certain number of groups but i'm so lost. First of all i have an array of groups called _groupsConnected, each of them has an undetermined amount of units inside. I want to create a trigger for each of the groups. This is what i'm trying, i can figure that the problem is with the _x variables but i can not find a solution. This is meant to be executed server side only. Maybe there is an easier way to do this instead of using triggers. Any idea is very welcome. Thanks!