Jump to content

Planck

Member
  • Content Count

    879
  • Joined

  • Last visited

  • Medals

Everything posted by Planck

  1. Planck

    cpp error? Cant get my map ingame

    Try changing your cfgPatches to: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> class CfgPatches{ class MB_Luano{ units[]={}; weapons[]={}; worlds[]={"MB_Luano"}; requiredVersion=0.1; requiredAddons[]={"CAData", "CABuildings", "CAMisc", "CAPlants", "CARoads", "CARocks"}; }; }; Planck
  2. We had material help from BI for this project, like you we mostly had to learn from our own mistakes. You and many others seem to labour under the impression that we had BI available to us, at a moments notice, to resolve any problem we might have come across. I'm sorry to burst your bubble here but like you and many others we had to learn from our own mistakes in the main. Difference here is we didn't go throwing our toys out of the pram when things didn't go well. Now you didn't need to reply to W0lles last post. but you felt you just had to get a 'last word' in, just like I didn't have to respond to your post. Can we now leave the subject where it is because nothing can be achieved by further off topic discussion about it. Planck
  3. Planck

    List of Textures Used

    Scan the file in some hex editor searching for .paa, .pac and .rvmat respectinely. Planck
  4. Planck

    sound location

    weapons3\data\sound\gsh301_loop Planck
  5. I think you need to replace your P:\bin folder with a fresh version from your 1.14 installation. This will be the mismatch of data with the .exe, because you are probably using the 1.14 Arma.exe with an older p:\bin folder. Planck
  6. I would try using class House instead of class Building. <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> class HouseBase; class House : HouseBase class Land_iraqi_house_5: House { .... .... .... }; etc etc Planck
  7. Planck

    fences, bridges, p3d, textures

    All the bridge models are in the same place: ca\roads ... most_stred30.p3d most_bez_lamp.p3d Kamenny_most30.p3d Kamenny_most30v2.p3d Planck
  8. Planck

    Green Tracers????

    This is naturally so, because the colour array is arranged as: Red, Green, Blue, Alpha You elected to use blue. Â Planck
  9. Planck

    Roads problems

    To the best of my knowledge, Visitor doesn't accept ODOL format road models, reason being the ODOL models do not have the 'snap-to' points' available for Visitor to read, hence the error 'Object does not follow requirements for road objects (Are there all named points presents)'. Best to use the MLOD versions kindly released by BI for the community instead. Planck
  10. Planck

    config variables??

    @fabiantronc Fortunately tanks and other vehicles are not 'island objects' and do not require the classname to be preceded by Land_, so GB is quite correct. Planck
  11. Planck

    Uninstalling Bi tool drive

    Control Panel ... Add/Remove programs. Planck
  12. Planck

    ODOL explorer

    Ahh no, original models inside OFP data3d.pbo are ODOL format models. If you wish to view them in Oxygen you need to convert them to MLOD. ArmA is much the same. Planck
  13. I can't see how you can get more accurate than using trigonometry to arrive at the ilsDirection numbers. ilsDirection [] = {sin(opposite of desired landing direction in degrees), sin(desired glideslope in degrees), cos(opposite of desired landing direction in degrees)}; For a plane landing in a northerly direction the compass direction would be 180 degrees for the calculation, using the standard 4.6 degree glideslope you would then have: ilsDirection [] = {sin 180, sin 4.6, cos 180}; Planck
  14. Planck

    Getting Map Ingame

    If you have a ca folder inside your working folder (P:\ then presumably it contains the standard game structure folders. which will in turn contain the mlod model files and all their associated files (textures, config, model.cfg etc etc) For example: buildings roads plants misc This being the case and provided you are referencing any standard ArmA ladder and building models from there for your island then the ladders should work fine once you get it ingame. CWR_Malden works ok anyway. Planck
  15. Planck

    Texture swap utility

    Or even at OFPEC Planck
  16. Planck

    Getting Map Ingame

    As I keep saying, you don't put your island or indeed your addon into the ca space. It only needs to be in your working folder root ... P:\ This just asks you to extract the contents of the included ca folder into any ca folder you already have present. I imagine if your already present ca folder in P:\ has the same content already present then it might be safe to skip that. Planck
  17. Planck

    Runways

    Ah, but we can't define the length of the runway in the config. There is no place in the config to define a runway length. All we can do is define the start of the runway and the landing direction. ilsPosition is the point that is aimed for when landing, it is usually just past the runway threshold. ilsDirection is the landing direction. Armed with those you can make your runway as long as you wish, the only other thing that can possibly influence the length would be the taxiway definitions. EDIT: The "ilsTaxiOff[]" and the "ilsTaxiIn[]" are both an array of positions that your plane must follow in order to taxi onto and off the runway and taxi to park or to take off. They do not do anything else. Planck
  18. Planck

    Ladders?

    If you use the mlod files BI provided in your ca folder they also include the configs and model.cfg files, so everything should work fine with Visitor and indeed Binarize. Planck
  19. Planck

    MyMap folder destination

    Your island folder goes in the root of P:\ ... P:\MyIsland Inside this you will have all your files for your island. P:\ca is for the mlod model files from Arma including their associated files and textures. (config, model.cfg etc) P:\ca is only for the Arma files for example: P:\ca\plants ... all files for plants P:\ca\buildings ... all files for buildings P:\ca\roads ... all files for roads etc etc In other words the same structure the game has in the Addons folder except it is in folder format instead of PBO format. Planck
  20. Planck

    Small Config type questions

    1./ Yes 2./ Yes 3./ This Planck
  21. Planck

    Road creation

    I think it is telling you that the road models you are using do not have the 'snap to' points that are used to join the road pieces together. Are you sure you are using mlod models? Planck
  22. Planck

    Keypoint Names

    You can always edit the produced .hpp file and include the 'umlaut' characters where needed and then resave in UTF-8 format. You will need to do this every time you save your island as a .wrp file as Visitor will then produce it again in ansi format. Planck
  23. Planck

    Keypoint Names

    Just leave the names in the .hpp. In your config class Names section put. class Names { Â #include mynames.hpp }; Something along those lines anyway, I don't have my main machine available to check properly........that is from memory. Â Planck
  24. You forgot to add the ; on the end of your added line. Planck
  25. Planck

    selecting view of objects

    No, it won't make a difference to that, I'm just not accustomed to seeing buildings represented in green elipses or circles. The icon doesn't in any way represent the true dimensions of any particular building, something you have to live with. Planck
×