Search results

  1. Z

    [Help/Discussion] Spectre's Knockout/Revive

    I'd suggest using a program like notepad ++ opening all the relevant files and doing a search for "revive" it's entirely possible you missed a line somewhere. If you can't find any then try to add it again without changing any directories. Unfortunately I have no experience with Epoch so it is...
  2. Z

    Restrict Krixes SelfBloodBag only to a special Location

    I'm at a loss then, I'm sorry. You do understand that with the way you have it it should only work for anyone under -15000 or above 5000 humanity right? So anyone in between those two it wouldn't work for. I assume you do know this but I want to check anyway, I can't see why it wouldn't work.
  3. Z

    Restrict Krixes SelfBloodBag only to a special Location

    I only have a minute so I'll only address what I saw as I skimmed it, though it may be enough to fix it. In your fn_selfactions you have (_Hospitalfound) being used without being defined. If it's defined elsewhere then let me know and I'll look through it again when i have more time but if not...
  4. Z

    Restrict Krixes SelfBloodBag only to a special Location

    So you want to have heroes able to do it anywhere but everyone else needs to be near a hospital right? just add _Hospitalfound = count nearestObjects[player,["Land_A_Hospital"],20]; // check if near Hospital and if ( (getPlayerUID player) in ["XXXXXXXX"] or (PlayerHumanity < -15000) or...
  5. Z

    [Support] Soul's Ignite tents

    For things like sound effects all any of us can do is google google and more google, there are people who have things like that memorized but unless you are one of those people google is your best friend. There is always the option of making your own sounds as well, which again google is your...
  6. Z

    dayz server 1.8 retrying to authenticate

    Hmm, I'm sorry I wish I could help. One last suggestion, it appears you are running this locally and not hosted? Have you tried opening port 2302 on your router firewall and any antivirus you might have?
  7. Z

    dayz server 1.8 retrying to authenticate

    if you are installing the correct server package with the same build as your client then you should not have any problems, dont install any mods whatsoever just keep it 100% clean vanilla and try a fresh download of the package and fresh dayz mod side note, Retra the quote in your sig is hilarious
  8. Z

    [REQUEST] Radiation Serverscript

    Feel free my friend, just credit me if ya utilize any of my ideas :) I was able to get money for utilities and a buddy gave me some foods so I might make some time to work on this for ya, I can't afford to host a server any more but I do still like working on this stuff. I haven't been doing...
  9. Z

    [REQUEST] Radiation Serverscript

    something like this for the public variable of irradiation level irLvlchck = getvariable irLvl; if (irLvlchck < 100) then { sleep 1; setvariable irLvl +1; }; /* to adjust how long it takes for full radiation change the < 100 to something like say 600 for 10 minutes or change the sleep 1 to say 6...
  10. Z

    [REQUEST] Radiation Serverscript

    I would like to write this for you but my utilities are about to be shut off so I simply can't haha. I'll write a bit right now that is a start for anyone who wants to do it. I'll start with my ideas on how to do it. 1: In setup_functions_med.sqf add a condition that has the radiation effect...
  11. Z

    [Support] Soul's Ignite tents

    this is your tent_ignite ////////////////////////////////////////////////////////////////// // Function file for Armed Assault // Created by: TODO: Author Name ////////////////////////////////////////////////////////////////// if(_timeLeft == 0 || _timeLeft < 0) then { _ent setDamage 2...
  12. Z

    dayz server 1.8 retrying to authenticate

    I'm no expert but I don't think that would prevent you from joining, if anything it would just stop loot from spawning. My guess is something got messed up somewhere, if I were you I'd make a backup of the current setup (make sure you don't lose anything important) then try a whole new fresh...
  13. Z

    An idea for bandaging...

    after this part if (_finished) then { [] execVM "\z\addons\dayz_code\medical\publicEH\medBandaged.sqf"; dayz_sourceBleeding = objNull; call fnc_usec_resetWoundPoints; so it would be if (_finished) then { [] execVM "\z\addons\dayz_code\medical\publicEH\medBandaged.sqf"...
  14. Z

    [Request] Zone base warning/kill

    You could try adding a copy of the dome in the exact same spot as your current ones with the condition as if (typeOf player == "Skin_Bandit2_DZ") then { dome script here }; Not really sure why changing skin like that would matter though, you could try adding or if (typeOf player ==...
  15. Z

    [Release] Spectre's SkyWrite

    SkyWrite V1.0 Instructions: Follow step 1 from the above instructions then download SkyWrite here and place into your mission.pbo into a folder called scripts (create one if you don't have it), if you already have the previous SkyWrite you'll need to overwrite your SWS.sqf and remove your old...
  16. Z

    No death from infection script

    Also to answer you earlier question about the player status check, that is located in a variety of files. Most things in DayZ aren't handled by one script alone I've come to find out, to make matters worse a lot of medical functions are handled by a part of code that you can't change without...
  17. Z

    No death from infection script

    I am pretty knowledgeable about everything medical related thanks to my revive script, I spent about 2 weeks pouring over all the codes and modifying various things. Let me know EXACLTY what you want to accomplish, not just what would be acceptable and I'll see if I can help you. It's easily...
  18. Z

    Something I need help with. Would be cool for the community.

    It works for me, it's pretty tricky on some thins so be careful. Always backup your files.
  19. Z

    Something I need help with. Would be cool for the community.

    http://www.opendayz.net/threads/100-custom-loot-tables-tutorial.12117/
  20. Z

    Something I need help with. Would be cool for the community.

    You can increase the number of allowed vehicle spawns and add vehicles to the map through the database or you can spawn vehicles with a script that get deleted and then spawn back where they started on restart. The problems with having a ton of vehicles are that they slow your server down and...
Back
Top