OpenBOR

OpenBOR 4.0 7556

No permission to download
I`m getting this after run .bat:
View attachment 10070

I was afraid of that. We recently had one of the older (and FAR more knowledgeable than myself) devs show up (@SX), and he tried to modernize the compiling. problem is, none of us could ever get it to work even with his help. Supposedly the original batch build would still run as a fallback, but I guess not. I took a bit of time off after the 4.0 release to work on my own projects and haven't messed with it any. I'll have to go in and revert those changes (I'll put them into another branch so they won't be gone), and see if I can get the batch build going again. It won't be this week though, I'm kind of buried in some post grad work ATM.

DC
 
Tried to build
I was afraid of that. We recently had one of the older (and FAR more knowledgeable than myself) devs show up (@SX), and he tried to modernize the compiling. problem is, none of us could ever get it to work even with his help. Supposedly the original batch build would still run as a fallback, but I guess not. I took a bit of time off after the 4.0 release to work on my own projects and haven't messed with it any. I'll have to go in and revert those changes (I'll put them into another branch so they won't be gone), and see if I can get the batch build going again. It won't be this week though, I'm kind of buried in some post grad work ATM.

DC
I've tried to build with linux bash build.sh, that's the output:

1737555803253.png
1737555984845.png
 
followed SX's compile instructions and managed to build the windows x86 and x64, linux x86, x64, arm64. then i get a error.

Code:
CMake Error: The current CMakeCache.txt directory /workspace/CMakeCache.txt is different than the directory /home/malik/Downloads/openbor-master where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt

This needs to be trouble shooted with @SX .
 
followed SX's compile instructions and managed to build the windows x86 and x64, linux x86, x64, arm64. then i get a error.

Code:
CMake Error: The current CMakeCache.txt directory /workspace/CMakeCache.txt is different than the directory /home/malik/Downloads/openbor-master where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt

This needs to be trouble shooted with @SX .

Probably need to send him a direct mail. My host is still getting blocked by gmail, and @SX is using a gmail address - meaning he's not probably getting tag alerts. I've had that ticket open a while - need to pound on them a little bit. I'm paying through the nose for high end hosting service, and that's unacceptable.

DC
 
I am pretty sure when SX added the new make option for compiling he did not take anything away from the current windows building system.

@DCurrent if you check compiling.md it mentions you can setup using VSCODE.
 
Last edited:
I am pretty sure when SX added the new make option for compiling he did not take anything away from the current windows building system.

@DCurrent if you check compiling.md it mentions you can setup using VSCODE.

Yes, but it's a convoluted set up through Docker that even after @SX walked me through in a live meeting I could never replicate on my own. Which, for a while I just figured was me being a moron - thing is though, nobody else can make it work either.

DC
 
@Kratus had a prepared release IIRC
@DCurrent Yes, I prepared a zip file which contains the executable for the three main 7612 builds (Windows/Linux/Android).
However, I'm not too familiar with the "new builds" launch process in GitHub at the "tags" section.

1738015392381.png

In addition, above the build 7612 I saw many new updates not only related to the new compilation process, at least from my part I couldn't test and don't know if everything is working fine.
 
I am trying out the new functions in 4.0, why this is not working?
It is giving me an error message.
Code:
int FrozenStatus = get_entity_property(target, openborconstant(ENTITY_PROPERTY_FREEZE_STATE));
Thank you
 
I am trying out the new functions in 4.0, why this is not working?
It is giving me an error message.
Code:
int FrozenStatus = get_entity_property(target, openborconstant(ENTITY_PROPERTY_FREEZE_STATE));
Thank you
I didn't test but if I'm not wrong there's some new v4 properties under development. Optionally you can use v3 functions too.

Code:
int frozen = getentityproperty(target, "frozen");
 
Back
Top Bottom