Jump to content

1para{god-father}

Member
  • Content Count

    2047
  • Joined

  • Last visited

  • Medals

Everything posted by 1para{god-father}

  1. 1para{god-father}

    How to Customize Terrain Dust, Sound and Ocean

    OK thanks did not think so but worth a shout ! ill give your suggestion a little try :)
  2. 1para{god-father}

    Building now showing on MAP

    strange as i just repacked my Terrain using latest and all seems to work just fine still
  3. 1para{god-father}

    How to Customize Terrain Dust, Sound and Ocean

    is there a way to change water colour for selected water ? I.e the ocean would remain as its but the rivers I have I would like to change them , would that be possible do you think ?
  4. 1para{god-father}

    How to Customize Terrain Dust, Sound and Ocean

    many thanks for the tips !!!
  5. 1para{god-father}

    setup a forest ??

    Are you using Add-on Builder then ? as you do not get the option in ProjectPbo https://dev-heaven.net/projects/mikero-pbodll/files
  6. 1para{god-father}

    windsock_01_f class where >?

    Trying to locate the following but cannot seem to find them ? portablehelipadlight_01_blue_f windsock_01_f Any idea where there are located in the class list ?
  7. 1para{god-father}

    windsock_01_f class where >?

    How have you managed to get it in your Terrain ?
  8. 1para{god-father}

    setup a forest ??

    very strange as I am using BIS trees and also African foliage and i get it no issues:- http://steamcommunity.com/sharedfiles/filedetails/?id=350930473
  9. 1para{god-father}

    windsock_01_f class where >?

    is there any way to place these EBOs on terrain ?
  10. 1para{god-father}

    setup a forest ??

    How are you packing up your Terrain ? if you use ProjectPbo it will work as per your Image , if you use the standard BIS one it will not work so i suggest you try ProjectPBO :) Also you have not selected Texture on that Map so it will not show anyway -turn that on :) Hope that helps
  11. 1para{god-father}

    Polyline object ? (railway)

    Can I ask how you done this , as it give me some idea just no idea how to change the textures Thanks
  12. Great work BTW Any chance for a few more Compositions :)
  13. 1para{god-father}

    Polyline object ? (railway)

    now that looks nice !
  14. 1para{god-father}

    How to use Buldozer?

    You cannot edit maps they way you are thinking (unless i missunderstood) - TB & Buldozer you can Edit your OWN terrain and do what you like once you create it , but as you said you are not interested in that then why not just use Zeus or MCC and add stuff to a terrain and save it for you mission. If you want to change things like trees / textures / objects/ terrain heightmaps then best create your own Terrain HTH http://forums.bistudio.com/showthread.php?160867-Resources-How-to-make-a-Terrain
  15. OK having a major issue with TB - it just keeps crashing - it seems to work until i connect to Bulldozer - then after say 2-3 min it just crashes to Desktop this is happening all the time. If i do not connect to Bulldozer it works fine - strange thing is Bulldozer does not crash it keeps working its TB that crashes. Any suggestions ? ======================================================= ------------------------------------------------------- Exception code: C0000005 ACCESS_VIOLATION at 01090B12 Version 0.00.124233 Fault time: 2014/10/31 07:30:27 Fault address: 01090B12 01:0042FB12 D:\STEAM\SteamApps\common\Arma 3 Tools\TerrainBuilder\TerrainBuilder.exe Prev. code bytes: 74 1D 8B 4E 2C 50 8B 11 8D 47 1C 50 8B 47 10 53 Fault code bytes: FF 30 8D 85 E8 FE FF FF FF 76 28 50 FF 52 30 8D Registers: EAX:00000000 EBX:00000000 ECX:002A9FA0 EDX:0122779C ESI:002B9188 EDI:05D15240 CS:EIP:0023:01090B12 SS:ESP:002B:0055F3F8 EBP:0055F52C DS:002B ES:002B FS:0053 GS:002B Flags:00010206 ======================================================= Call stack: Stack 0055F3F8 0055FB8C Debugger info - Applying offset c63b70 to mapfile mapfile: D:\STEAM\SteamApps\common\Arma 3 Tools\TerrainBuilder\TerrainBuilder.map (empty 1) Debugger info - Generating minidump please wait. note: Minidump has been generated into the file Logs\TerrainBuilder_2014-10-31_07-07-36.mdmp
  16. I am spawning a convoy but sometimes they spawn into a building , anyone help me to spawn them onto the road and facing the Destination ? Thanks _towns = nearestLocations [getPosATL player, ["NameVillage","NameCity","NameCityCapital"], 25000]; ///start location spawn point _pos1 = position (_towns select (floor (random (count _towns)))); _RandomTownPosition1 = [_pos1 select 0,_pos1 select 1,0]; _nRoads = _RandomTownPosition1 nearRoads 10; _rng = 10; while {((count _nRoads) == 0)} do { _rng = _rng * 2; _nRoads = _RandomTownPosition1 nearRoads _rng; }; _RandomTownPosition1 = position (_nRoads select (floor (random (count _nRoads)))); /// convoy end destination _towns = nearestLocations [_RandomTownPosition1, ["NameVillage","NameCity","NameCityCapital"], 25000]; _RandomTownPosition2 = _RandomTownPosition1; { if (((position _x) distance _RandomTownPosition2) > 4000) exitwith {_RandomTownPosition2 = [(position _x) select 0,(position _x) select 1,0]} } foreach _towns; _nRoads = _RandomTownPosition2 nearRoads 10; _rng = 10; while {((count _nRoads) == 0)} do { _rng = _rng * 2; _nRoads = _RandomTownPosition2 nearRoads _rng; }; _RandomTownPosition2 = position (_nRoads select (floor (random (count _nRoads)))); _t = format["Convoy Start%1",_cid]; [_t, _RandomTownPosition1, "Icon", [1,1], "TEXT:", _t, "TYPE:", "Start", "COLOR:", "ColorGreen", "GLOBAL", "PERSIST"] call CBA_fnc_createMarker; _t = format["Convoy End%1",_cid]; [_t,_RandomTownPosition2 , "Icon", [1,1], "TEXT:", _t, "TYPE:", "End", "COLOR:", "ColorRed", "GLOBAL", "PERSIST"] call CBA_fnc_createMarker; //////////////// CONVOY/// BUT need to face Destination and ALOS on ROAD ?////////////////////// _truckgroup = creategroup EAST; _veh1 =( [_RandomTownPosition1, 001, "Offroad_DSHKM_INS", east] call bis_fnc_spawnvehicle ) select 0; _veh2 = ( [_veh1 modelToWorld [0,10,0], 001, "SUV_TK_EP1", east] call bis_fnc_spawnvehicle ) select 0; ////move vip2 on map into SUV////// vip1 moveInCargo _veh2; vip1 assignAsCargo _veh2; vip1 = ["EvMoney","EvMap","EvPhoto","revolver_gold_EP1","kostey_map_case"]; _veh3 = ( [_veh2 modelToWorld [0,10,0], 001, "Offroad_DSHKM_INS", east] call bis_fnc_spawnvehicle ) select 0; _veh4 = ( [_veh3 modelToWorld [0,10,0], 001, "Offroad_DSHKM_INS", east] call bis_fnc_spawnvehicle ) select 0; (units _veh1 + units _veh2 + units _veh3 + units _veh4) joinSilent _truckgroup; etc....
  17. 1para{god-father}

    windsock_01_f class where >?

    Ahhh many thanks !
  18. 1para{god-father}

    windsock_01_f class where >?

    Many thanks , Very strange as when i extract All A3 i do not get Structures_F_Heli only Structures_F so cannot find it to place on my Terrain? Can see it in Editor / Zeus but not in my p:\ a3 stucture Any ideas ?
  19. 1para{god-father}

    Roads don't appear in-game

    Are you sure you are running pboproject or are you just running MakePbo ? if so Use pboproject !
  20. 1para{god-father}

    Finding a good terrain/making one

    WOW never thought of that nice one thanks for that , that will help me out as that is my next bit i am working on :)
  21. 1para{god-father}

    Finding a good terrain/making one

    Some of the Best island have been made by L3DT i think Icebreaker made his with this tool to do make Duala , Lingor etc.. You can flatten out the road in Bulldozer , or export the road Shapes and import that into L3dt as an Image then use it as a drape and you should be able to smooth the roads in l3dt.
  22. Any idea why I cannot export Shapes to imagery ? Keep getting a message "Shapes to imagery export - Export of shapes to imagery failed." Error: Shapes to imagery export - Export of shapes to imagery failed. Debugger info - (func: CShapesToImageryExport::DoExport(207)) [AssertNoDlg] MainThread=6660 Getting current depth&stencil buffer failed. Error: Shapes to imagery export - Export of shapes to imagery failed.
  23. 1para{god-father}

    Roads don't appear in-game

    I would ONLY use Mikero's PBOProject as the BIS one will all all sort of crap through , and if you get an error using Mikero's tool you know there is an issue and will save you a LOT of hassle in the long run ! What files do you have in your Roads Folder ? I only ask as I also have shapes and once I exports ALL layers which then effect roads and they will not show ! so if you have any polshapes make sure you ONLY export roads !
  24. +1 for surrender for Group :) Also some more compositions would be awesome Great work BTW !
  25. 1para{god-father}

    Road painting and concrete surface tutorial

    Yep you are correct was exporting ALL layers ....:j: Many thanks for your help !
×