dj3hac

Donator
  • Content count

    40
  • Donations

    10.00 EUR 
  • Joined

  • Last visited

Everything posted by dj3hac

  1. dj3hac

    Exile 1944 Cherno

    hm i remember having an issue where shit was spawning underground. I cant remember If it was this is not. I do remember that everything was off by a consistent value. Maybe just try raising the value to a positive number. seeing -.96 and -4.1 on a 2 level house makes me think its reversing the height value.
  2. dj3hac

    Exile 1944 Cherno

    all your height values are negative dude. are you sure thats right?
  3. dj3hac

    Exile 1944 Cherno

    Have you tried this tool to create custom loot spawns? I've had "Great Success" as Borat would say. WOW! never mind. link removed, apparently that points to a trojan now. Here is a copy off my harddrive from before that link was compromised. it was a post here on the exile forums, so I'll be letting someone know about it. http://dirtyzone.net/loot_Chernarus.zip Its a mission file. just open it in the editor and place any buildings you want to make loot spawns for. spawn yourself as a player. 2 Will set a marker + lootspawn + copies it into clipboard. 1 Will delete the nearest marker. (Up to 20m)
  4. I have nothing to add that hasn't already been said. Just take it slow. Make a backup AND test after EVERY change. I learned that hard way and had to start from scratch twice. Do yourself a favor and use Atom as your editor with the Arma code and scrollbar code preview addons if you aren't already.
  5. What do you mean by "listen server"? Are you just trying to join the game as a player?
  6. dj3hac

    Arma Enhanced Movement Keybind Menu

    There is a compatibility patch now, and there should be a fully compatible release soon.
  7. dj3hac

    Make loot spawn in certain buildings i added to map?

    I used this for my server, worked great!
  8. dj3hac

    Space lakes on Chernarus

    Hi everyone. I'm running Chernarus (A2OP) on my Exile 1.0.1 server, with full weather effects. This, of course, makes the lakes go into technicolor disco mode. Is there a way I can keep my weather system and not have to deal with blinding lakes? Thanks!
  9. dj3hac

    Basic admin tools.

    My server is currently in what I will call a "beta" stage, it's running 24/7 and ready to accept players. Rather than doing everything manually in the DB I was wondering if there are some basic admin tools around? I think Infistar is more than I need right now and just want something that can do the basics a bit easier than manual. If I have to I will get Infistar, but I hear it causes significantly more lag than without. Thanks guys.
  10. dj3hac

    Space lakes on Chernarus

    Oh wow thanks for this, a few more defined values than mine has!
  11. dj3hac

    Space lakes on Chernarus

    Just the fog? I have a script that handles fog differently that I could use instead, may create a lot of lag for some though since it's all particle based. I'll start playing with fog values until I find the cutoff point. Thanks for your reply.
  12. So, every restart some of my objects, (some are worse than others), decide to go all nuts and move around, tables are upside down, entire buildings flipped, etc. Every restart it's slightly different, sometimes better, sometimes worse. I built the traders using the 3D editor and the E3DEN plugin. I exported by selection, I am positive that damage and simulation was disabled for all objects. Any ideas what might be causing this? Note: the tank traps can be pushed around by a vehicle, even though simulation is off. It may also help to say all these objects are loaded from server side scripts in the @exileserver folder.
  13. okay. we are going to try with M3Editor. Friggin wicked! Everything seems to be working now! Thanks a lot. Weird that the official tool doesn't work.
  14. Is it really that broken that nobody has any ideas?
  15. Here's some screens of the height issue, Pobeda Hydro-Electric Facility. Everything is great in the editor. But in game... yeah. My lakes look like a windows media player visualization. I haven't even bothered looking into that one yet.
  16. I am using the one made by the Exile developers.
  17. yes I am. Each script may be slightly different, thats just me trying to get it to work right. the one liners are completely untouched. I can provide the mission.sqm for Bash, Stary, and Pobeda. The others were made by my friend working with me, so i can still get them, just not until tomorrow though.
  18. Thats fine. I was going to release everything publicly when finished anyway. Nobody would help me out when I started, and I don't believe in that nonsence. Modding and stuff like this should be a community thing. If I can save someone tonnes of time, awesome, them using my code is taking nothing away from me.
  19. Hey, thanks a lot, I've been having this problem for a few days now. I'm also having problems with the eden plugin not exporting the correct heights on some objects. I know for a fact that the PobedaHydro.sqf script isn't working at all right now, as it has both issues with height and collision. Some of the scripts are in one line, sorry about that. It's just the way the plugin exports them for me. a3_custom.zip
  20. dj3hac

    question about #include

    I fixed it, or at least narrowed the issue down to my trader.cpp file. Yup totally fixed, in case anyone is interested: class MASTools { name = "MAS Tools"; icon = "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\itemacc_ca.paa"; items[] = { //"NVGoggles_mas_h", //"Rangefinder_mas_h", //"Laserdesignator_mas_h" }; }; having the items commented out was the same as having no data entered at all, returning an unexpected value of Null.
  21. dj3hac

    question about #include

    instead of adding every entry to loot spawn/trader lists am I able to place the entries in a separate .sqf and call it from where i WOULD put the entries? I'll add an example below: lootBackpack_list = [ [ 0, [ // CIVIL "B_AssaultPack_cbr", "B_AssaultPack_dgtl", "B_AssaultPack_khk", "B_AssaultPack_mcamo", "B_AssaultPack_ocamo", "B_AssaultPack_rgr", "B_AssaultPack_sgg", "B_Carryall_cbr", "B_Carryall_khk", #include things.sqf; ]],[ 1, [ // MILITARY "B_Carryall_cbr", "B_Carryall_khk", "B_Carryall_mcamo", "B_Carryall_ocamo", "B_Carryall_oli", "B_Carryall_oucamo", #include things.sqf; ]],[ 2, [ // INDUSTRIAL "B_Carryall_cbr", "B_Carryall_khk", "B_Carryall_mcamo", "B_Carryall_ocamo", "B_Carryall_oli", "B_Carryall_oucamo", #include things.sqf; ]],[ 3, [ // RESEARCH "B_Carryall_cbr", "B_Carryall_khk", "B_Carryall_mcamo", "B_Carryall_ocamo", "B_Carryall_oli", "B_Carryall_oucamo", #include things.sqf; ]]]; I feel like trouble shooting would be a lot easier if i kept the mod entries separate like this, but I'm not sure exactly how. If I have a list of items thats literally just "item1", "item2", "item3"; would that work, because its called WITHIN the brackets already, or would it have to be in its own brackets and formatted properly. Basically i guess I'm asking if calling a .sqf file in the same the as literally pasting the entire script where the #include line is. Sorry if this is confusing, it confuses me and I wrote it!
  22. dj3hac

    question about #include

    I'm now getting this error when starting the server after following the guide. I've double checked everything for missing punctuation / spelling.
  23. My Internet frigged up and double posted. (stolen wifi at work, not even 1 bar) ... And now my edit has turned into a quote.
  24. Hello, I've spent the last 2 days working on getting an Exile Chernarus server running. From what I understand the black screen usually means a db error, I haven't been able to find any discrepancies in the information I put into the config files that could cause this. Another thing I'd like to mention, which may or may not be related; when disabling strict mode on my SQL server (I have a pre-existing XAMPP server I added the exile db to) there was no line in my my.ini containing "sql-mode ..." so i added "sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"" to the bottom, removing that line from my.ini leaves me at Awaiting server version or w/e that error is, so i believe it's working. I can provide logs, screenshots, VNC, videos, whatever. I just don't know what exactly it is I'm looking for to show you, some help would be really appreciated. I will include my latest rpt below. Thank you!
  25. I'll probably have to put up some forums so reople can request bikes and stuff. I'm not hosting for a clan or group at all, I just know there is a lack of really dirty hardcore servers. With that said I'm having trouble getting the server first person locked, it is my understanding that I just have to change "ExileRegular" to "ExileHardcore" but that doesn't seem to work, it's fine now as I'm still testing things. Also, exile and base Arma 3 loot is spawning, however, any CUP, RHS, TRYK, etc. loot is not, it tries to though. There are empty items in loot piles, so I assume that's it. Is there a specific spot I should look for discrepancies to rectify this? Sorry for asking so many questions, you guys are just too damn helpful