Matteo Perini

Results 8 comments of Matteo Perini

I had the same problem and i really don't know how i solved it, but i can give you some advice. - Launch the script and click on the game...

If it still doesn't work provide more details so we can understand better😉

``` pip uninstall clarifai pip install clarifai==2.6.2 ```

Basically from selenium4 `firefox_profile` has been deprecated. So you have 2 ways to fix this: #### Downgrade selenium ``` pip uninstall selenium pip install selenium==3.141.0 ``` #### Update the code...

I know I'm late, but if you want to install @extDB3 check my answer here: https://github.com/fugasjunior/arma-server-manager/issues/137

I have the same issues, can you post the fix? It happens on dedicated server only.

Found it, change line 60 in `HALs\Addons\store\functions\server\fn_purchase.sqf` From this: `private _equipped = [_unit, _classname] call HALs_store_fnc_equipItem;` To this: `private _equipped = [_unit, _classname] remoteExec ["HALs_store_fnc_equipItem", _unit];`

Yes, you can use @extDB3, just install `libtbbmalloc2` inside the container. Add these lines in your `docker-compose.yml` ``` entrypoint: > /bin/sh -c "apt-get update && apt-get install -y libtbbmalloc2 &&...