

Barmalei75
Member-
Content Count
20 -
Joined
-
Last visited
-
Medals
Community Reputation
5 NeutralAbout Barmalei75
-
Rank
Private First Class
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Addon builder - signature fails in Windows10 local user (admin)
Barmalei75 replied to pierremgi's topic in ARMA 3 - BI TOOLS - TROUBLESHOOTING
In case you have error description: 8009000b, it's probably due the windows user's password change. Check this out for a solution (removing RSA folder may help) https://community.bistudio.com/wiki/DSUtils -
Guilt & Remembrance: civilian deaths, reparations, & war crimes
Barmalei75 replied to musurca's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Just stop killing civilians, ok? 😉 -
terrain Chernarus Redux [WIP Release]
Barmalei75 replied to AxiosODST's topic in ARMA 3 - ADDONS & MODS: COMPLETE
This outstanding and obviously underrated project still alive, I suppose, and really hope so. I'm still a big fan and creating my own project on this map.- 269 replies
-
So, the problem with unit emblems on a Linux dedicated server has not solved yet. The root of the problem is a case sensitive filenames for *.paa files, I presume.
-
pvp WARMACHINE - Game mode - SP/Coop/PvP
Barmalei75 replied to IvosH_cz's topic in ARMA 3 - MULTIPLAYER
@IvosH_cz Thanks for visiting our server today: Arma 3 Ukraine 🙂 -
Let me notice, that use of the CUP and RHS together is still a question of compatibility, due the different damage and penetration characteristics of the projectiles, as well as different armor characteristics of the vehicles. And since new magazine well implementations, it makes everything more complicated. Different projectiles from different mods makes different holes in the same structure... or not.
-
@haleks Oh, I wish I could use my language in a future stringtable tags, but Arma 3 has no Ukrainian language support. So in a future we will have to use a russian localization, because your licence is non-derevative. In other cases our community uses a Ukrainian texts inside a <Russian> tags for localization purpose. I can help you with that text transfers I've mentioned earlier, and do some monkey job. I have some expirience from other projects. Just keep it in mind and text me if you interested. I also looking for a way to implement those cool CBRN stuff from Contact DLC. But as always, lack of time. For example, a Decon Showers https://community.bistudio.com/wiki/Arma_3_CBRN
-
@chernaruski It is pretty old function, but not depricated, AFAIK. I had to use localize in scripts, $STR won't work properly in scripts https://community.bistudio.com/wiki/localize https://community.bistudio.com/wiki/Stringtable.xml Moreover, for a proper localization this function must be implemented on a client side. You may see how funny looks a client localized text in ACE medical menu, when someone with a dіfferent locale trying to give you a medical attention 😉
-
@haleks Thank you for reply! To start a collaboration on multilanguage support it would be better to have a private Github project for this purpose, to collaborate. Next step will be to create a proper stringtable.xml file. Next - to refactor all of the code with a proper localization functions and transfer all of the displayed text into strigntable.xml tags, For example: [myBox, ["<t color='#00ffff'>" + "Move object", "moveobj.sqf","",1,false,false,"true","true",2.5]] remoteExec ["addAction", 0, true]; turns to [myBox, ["<t color='#00ffff'>" + localize "STR_ACTION_MOVEOBJ", "moveobj.sqf","",1,false,false,"true","true",2.5]] remoteExec ["addAction", 0, true]; and text goes to stringtable.xml <?xml version="1.0" encoding="utf-8" ?> <Project name="YourProject"> <Package name="Description"> <Key ID="STR_ACTION_MOVEOBJ"> <Original>Move object</Original> <English>Move object</English> <Russian>Переместить объєкт</Russian> </Key> </Package> </Project> But there are some tricks with localization process. Sometimes you can just use $STR_ instead of localize (depends on a side where it runs). And you have to use < and > instead of < > with localize function, because of parser limitaion. Etc, etc. For example, for a server side, in Description.ext you can use $STR method: title = "$STR_DESCRIPTION_END1_TITLE"; and proper tags in stringtable.xml will be <Key ID="STR_DESCRIPTION_END1_TITLE"> <Original>Mission successful!</Original> <English>Mission successful!</English> <Russian>Миссия успешно завершена!</Russian> </Key>
-
@haleks Hi! Wrote you PM about adding a multilanguage support to Ravage. Thank you! Best regards!
-
Looks like it will be updated within a next hour
-
Revealed: https://store.steampowered.com/app/1021790/Arma_3_Contact/
-
Oh, not problem at all, @Sgt. Dennenboom . I just had to shortened the mission filename to use on my linux server. Me and my community realy appreciate your works, and we always keep the original credits in respect to developers. Thanks again for your job!
-
I found missing semicolon in dialogs\dlg_menu.hpp (line 100), but it doesnt fix the problem
-
Problem found on Linux server 1.92 Mission failed just at the beginning 20:50:04 "EVO/BIS_fnc_log: [BIS_fnc_endMission] Mission failed with 'end1' ending." 20:50:04 Game finished. On Windows local server the mission starts fine ! SOLVED (found by varrkan_ua) ! The problem was due I've renamed the mission file on Linux server. File name must contain "evor" if ((toLower missionName) find "evor" < 0) exitWith {"EveryoneLost" call BIS_fnc_endMissionServer;};