Beiträge von raptorbost
-
-
-
-
Not in Debian, for the newest version on mysql, you must use repositories.
Use Ubuntu for just apt-get install mysql-server and the mysql version would be 5.7 -
First, I would like to say sorry for my english talking. I'm french altislife players.
So I've begining on Ubuntu and I've install a arma3server, All work perfectly but after installing extDB2 and life server, I've "setting Up client please wait"
So, I've look the RPT log and I see that :
I don't have ExtDB 2 logs ....
Sorry again for my english and thanks for you helpful ! -
How update mysql on linux ? I'm on 5.5.54 for debian linux-gnu, and i can't update this
-
hi everybody.
First, I want to say sorry for my english talking, I'm a french user.So, I had a multiple siren script on my 3.1.4.8 altislife server, but now I'm on the 4.4R3 version and my script doesn't work so I here for help ...
So, in my SetupAction.sqf I have that :
Code//CODE 3 life_actions = life_actions + [player addAction["<img image=""icons\siren.paa""/> <t color='#1CF01F'>CODE 3 ON</t>",{[[vehicle player,0.22],"life_fnc_copcode3",true,false] spawn life_fnc_say3D; vehicle player setVariable["code3",true,true];},"",0,false,false,"",' vehicle player != player && ((driver vehicle player) == player) && !(vehicle player getVariable ["code3",false])']]; life_actions = life_actions + [player addAction["<img image=""icons\siren.paa""/> <t color='#1CF01F'>CODE 3 OFF</t>",{vehicle player setVariable["code3",false,true];},"",0,false,false,"", ' vehicle player != player && ((driver vehicle player) == player) && (vehicle player getVariable ["code3",false])']];
That call this :
Code
Alles anzeigen/* File: fn_copYelp.sqf Author: Bryan "Tonic" Boardwine // Edited by Aphec & SaOk Description: Starts the cop code3 sound for other players */ private["_vehicle"]; _vehicle = [_this,0,ObjNull,[ObjNull]] call BIS_fnc_param; if(isNull _vehicle) exitWith {}; if(isNil {_vehicle getVariable "code3"}) exitWith {}; while {true} do { if(!(_vehicle getVariable "code3")) exitWith {}; if(count (crew (_vehicle)) == 0) then {_vehicle setVariable["code3",false,true]}; if(!alive _vehicle) exitWith {}; if(isNull _vehicle) exitWith {}; _vehicle say3D "code3"; sleep 5,1; if(!(_vehicle getVariable "code3")) exitWith {}; };
I don't have rpt error and i think it's a problem with my "spawn life_fnc_say3D;"
So thx for your help ...ANd sorry again for my english talking ...
-
Thx for your code, I do modification for vehicleLBChange for see the price with reduction but is perfect now
Thx you very much native community
-
-
Sorry I've don't understand, Just my AdacLevel is on the Civillian playerside, so I test your code moeck
-
-
hi Everybody.
For begin, I'm sorry for my english talking ...So I have a little problem.
On 4.4R4 AltisLife version we have that on the confif_Master.hpp :And I want create that :
My Adac is not a side but a CivLevel : "AdacLevel"So in my Core/Shops/fn_vehiculeShopBuy.sqf We have that ? :
Code
Alles anzeigenswitch (playerSide) do { case civilian: { _buyMultiplier = LIFE_SETTINGS(getNumber,"vehicle_purchase_multiplier_CIVILIAN"); _rentMultiplier = LIFE_SETTINGS(getNumber,"vehicle_rental_multiplier_CIVILIAN"); }; case west: { _buyMultiplier = LIFE_SETTINGS(getNumber,"vehicle_purchase_multiplier_COP"); _rentMultiplier = LIFE_SETTINGS(getNumber,"vehicle_rental_multiplier_COP"); }; case independent: { _buyMultiplier = LIFE_SETTINGS(getNumber,"vehicle_purchase_multiplier_MEDIC"); _rentMultiplier = LIFE_SETTINGS(getNumber,"vehicle_rental_multiplier_MEDIC"); }; case east: { _buyMultiplier = LIFE_SETTINGS(getNumber,"vehicle_purchase_multiplier_OPFOR"); _rentMultiplier = LIFE_SETTINGS(getNumber,"vehicle_rental_multiplier_OPFOR"); }; };
Ho can I change this for my problem ?
a condition "If" on a "switch do" is possible ?Thx you much for your answer