-
Content Count
7 -
Joined
-
Last visited
-
Medals
Community Reputation
13 GoodAbout didotto
-
Rank
Rookie
-
WIP importing of PedagneMOD in ARMA 3
didotto replied to arremba san zorzo's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Bugged glass for both rear and left door of each Blindo PUMA 6x6. Great MOD btw, keep dev it. Bel lavoro ragazzi da parte di tutti i {9GU}. -
Is _group1 an exsisting group? (https://community.bistudio.com/wiki/createUnit) If not, you have to create it first with createGroup _group1 = createGroup side (side can be: west, east, resistance)
-
This should work (the variable is local and not valid in that scope): fn_carBuySystem = { private ["_carID", "_carPrice", "_carName"," _caller"]; _carID =(_this select 3) select 0; _carPrice = (_this select 3) select 1; _carName = (_this select 3) select 2; _carSpawn = carspawn; _caller = _this select 1; if (Money >= _carPrice) then { Money = Money - _carPrice; sleep 3; _veh = _carID createVehicle (getPos _carSpawn); _veh setVehicleLock "LOCKED"; _veh addAction ["Unlock Vehicle", {(_this select 0) setVehicleLock "UNLOCKED"}]; hint format ["You have bought a %1 and you have %2 dollars left.", _carName, Money]; } else { hint "You do not have enough money for this car"; }; };
-
If I'm not wrong, you should do something like this: carseller addAction ["Buy Hatchback",{call fn_carBuySystem}, ["C_Hatchback_01_F", 200, "Hatchback"],6,false,false]; fn_carBuySystem = { private ["_carID", "_carPrice", "_carName"]; _carID =(_this select 3) select 0; _carPrice = (_this select 3) select 1; _carName = (_this select 3) select 2; _carSpawn = carspawn; if (Money >= _carPrice) then { Money = Money - _carPrice; _veh = _carID createVehicle (getPos _carSpawn); hint format ["You have bought a %1 and you have %2 dollars left.", _carName, Money]; } else { hint "You do not have enough money for this car"; }; }; NOTE: I added one more parameter (_carName) (I edited this post btw)
-
Is there any integration with The Italian Division Project? Because I see Rep of Triveneto and Rep of Northern Italy (and Pinaz in the team). Amazing!
- 63 replies
-
- 2
-
- Prussia
- Prussian Empire
- (and 8 more)
-
The Italian Division project (Factions mod+)
didotto replied to pinaz93's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
waiting for other factions and the first release too ^_^ -
[eods] explosive ordnance disposal suite
didotto replied to monovdd's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
would like to see next update soon :D