Jump to content

Delta-chan

Member
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Gender
    Woman

Recent Profile Visitors

993 profile views

Delta-chan's Achievements

  1. Updated version https://drive.google.com/open?id=0B-0Mg46FfqvqV2ZaWEpxeGcwQ3M
  2. I'm sorry for being dead, here is Steam Workshop link, please, test it. http://steamcommunity.com/sharedfiles/filedetails/?id=647865345
  3. Didnt played PZ for a while, but yes, definitely should work, Im gonna check it in few next hours, next Im probably gonna upload mod to workshop.
  4. Sup, I made quick and dirty fix for mod flashlights, just add these code at end of any mod .lua file FlashlightFix = {};FlashlightFix.onKeyPressed = function(key) local Player = getSpecificPlayer(0); if key == getCore():getKey("Equip/Turn On/Off Light Source") then local Item = Player:getPrimaryHandItem(); if (instanceof(Item, "HandWeapon") and Item:getCondition() > 0) and Item:getCanon() then if Item:getCanon():getName() == "Pistol Tactical Light" then if not Item:isActivated() then Item:setTorchCone(true); Item:setLightStrength(0.6); Item:setLightDistance(15); Item:setActivated(true); else Item:setTorchCone(true); Item:setLightStrength(0); Item:setLightDistance(0); Item:setActivated(false); end end if Item:getCanon():getName() == "Rifle Tactical Light" then if not Item:isActivated() then Item:setTorchCone(true); Item:setLightStrength(0.7); Item:setLightDistance(18); Item:setActivated(true); else Item:setTorchCone(true); Item:setLightStrength(0); Item:setLightDistance(0); Item:setActivated(false); end end end endendEvents.OnKeyPressed.Add(FlashlightFix.onKeyPressed);
  5. Well, I just done same thing and everything loaded fine, maybe you throw it at wrong folder or i dunno
  6. Hello, I've made this quite simple mod for myself, but decided to share it with community, maybe someone would like to use it, idk. Mod allow you to enable petrol pumps with generators after electricity shut off and get lovely free fuel. - Download https://drive.google.com/open?id=0B-0Mg46FfqvqV2ZaWEpxeGcwQ3M http://steamcommunity.com/sharedfiles/filedetails/?id=647865345 - Screenshot UPD: if generator doesnt work with some pumps, then download mod again, I fixed issue
×
×
  • Create New...