Search results

  1. U

    Origins Housing Script

    Yes it can be done, but like I said. It's not going to be easy. You need to change a lot of code, in different files, not just your self actions file. So maybe post it as a request, ask someone with better programming skills (than you or myself) to provide the script changes? :)
  2. U

    Infistar and profileNamespace issues..

    The thing is. The only place where things are different for me and the other admins, is in the Infistar settings. If I remove myself from Infistar admins, the code doesn't work. Add myself back and the code works. So it's definately Infistar, I've no doubts about that.
  3. U

    Infistar and profileNamespace issues..

    Tracker. I want to keep the normal zed kill per player counter and have a second one that shows total kills over all lives. It works fine for me and other admins. The keycode system works for all players and I even have one that does changes to the humanity that works for everyone. It's just...
  4. U

    Origins Mansion (House Level 4) Classname, anyone?

    Does anyone know the classname for the completed Origins Mansion Level 4 house? I can't even find it searching through the server files :(
  5. U

    Origins Housing Script

    it's important to note that Strongholds store a generated key in the characterID field and the origin houses store the players UID in the hitpoints. House code calls the hitpoints and stronghold code calls the CharacterID. You will need to make a lot of changes to the custom player_build.sqf...
  6. U

    Infistar and profileNamespace issues..

    Anyone know why this works for all users (normal and admin): allMyKeys = profileNamespace getVariable ["VehicleKeys",[]]; allMyKeys = allMyKeys + [_keySelected]; //_keySelected is set further up in the script! profileNamespace setVariable ["VehicleKeys",allMyKeys]; But this doesn't work...
  7. U

    GodMode Vehicles on Restart don't save positions to database.

    Appears someone else agrees with me! http://epochmod.com/forum/index.php?/topic/3190-godmode-vehicles-in-safe-zones/&do=findComment&comment=84376
  8. U

    GodMode Vehicles on Restart don't save positions to database.

    I know dayz has it's own damage handling, I also appear to know much more than you do. If you don't have an answer then just stop. It pisses me off when people like you feel they have to put others down, instead of putting your money where you mouth is and actually coming up with an answer that...
  9. U

    GodMode Vehicles on Restart don't save positions to database.

    Actually, I understand very well. This select 2 returns the correct damage . If you set that value to just TRUE , then the vehicle will explode with just one bullet. The preprocess was added after trying the original code without it. So if you've got nothing better than to try and put me down...
  10. U

    GodMode Vehicles on Restart don't save positions to database.

    This is my vehicle unlock script: private["_vehicle","_key"]; _vehicle = (_this select 3) select 0; _key = (_this select 3) select 1; if(DZE_ActionInProgress) exitWith { cutText [(localize "str_epoch_player_37") , "PLAIN DOWN"]; }; DZE_ActionInProgress = true; {player removeAction _x} count...
  11. U

    GodMode Vehicles on Restart don't save positions to database.

    I even tried this in the server_monitor.sqf , but same problem and this is a simple no damage variable. :( if(_ownerID != "0" && !(_object isKindOf "Bicycle")) then { _object setvehiclelock "locked"; _object allowDamage false; // THIS and vehicles still don't save after being moved...
  12. U

    GodMode Vehicles on Restart don't save positions to database.

    I'm trying to get all locked vehicles set to GodMode at restart only . Then once unlocked they're vulnerable until server restart again.. in my server functions file I have this code: God_Protect = { private ["_tID","_x_type","_count"]; { _x_type = typeOf _x; //_name =...
  13. U

    FNCbroken: count

    Doh! It's because I had a typo in my array.. Instead of _array = []; I had: array = []; Solved :D
  14. U

    FNCbroken: count

    SOLVED!!!! I've written a script that adds a variable to certain vehicles , like: _x setVariable ["MyVehicle", "007", true]; But when I try to check vehicles in a loop with: _x getVariable ["MyVehicle",0]; or _x getVariable "MyVehicle"; I get an Infistar message: FNCbroken: Count , and...
  15. U

    [HELP] Custom Local_EventKill with HintSilent

    Yeah, I tried the public variable route a while back . But it kicks up a fuss with battleye. I'll checkout the killzonekid stuff you mention. Thanks for the code to work with too :D Cheers :D
  16. U

    [HELP] Custom Local_EventKill with HintSilent

    That sounds like hacker talk to me :) But seriously, would you have any suggestions for doing that? Thanks for the reply btw.
  17. U

    [HELP] Custom Local_EventKill with HintSilent

    I've got a custom Local_EventKill.sqf that gives the player a bonus of 15 humanity if they hit a zed at 150+ meters. That part of the script works great, but I also have a hintsilent that popups with a message that includes distance, bonus etc.. Problem is, if another player is close by they...
  18. U

    [REQUEST] Custom Logo on Vehicles (without Squad.xml)

    i'd use a public varialble, the same way I got custom images to show up on my debug monitor. Hhhhmmmmm.... I understand the image would need to be in the mission folder, it's already there being used for other things. If the answer is no, it can't be done, then just say that. Don't be so...
  19. U

    [REQUEST] Custom Logo on Vehicles (without Squad.xml)

    Anyone know how you put logos on the side of vehicles without needing to use squad.xml ? I want to place a logo on vehicles using a script in-game, serverside of course :)
  20. U

    [Support] ESS

    edit: see above
Back
Top