Jump to content

Dimmitry007

Members
  • Posts

    145
  • Joined

  • Last visited

Everything posted by Dimmitry007

  1. but every one can use it can u put it for admins only?
  2. if u make clan war for dayz IT WILL BE GREAT
  3. ok how to make this in one command? i tried and tried it never worked function startgm() gmtimer = setTimer(gmforad, 2000, 0) outputChatBox ("You're OnDuty",255, 0, 0,true) end addCommandHandler("aduty", startgm) function offgm() killTimer (gmtimer) setElementData(getLocalPlayer(),"blood", 12000) outputChatBox ("You're OffDuty!",255, 0, 0,true) end addCommandHandler("offaduty", offgm) function gmforad() if getElementData(getLocalPlayer(),"logedin") then setElementData(getLocalPlayer(),"blood", 500000) setElementData(getLocalPlayer(),"bleeding", 0) setElementData(getLocalPlayer(),"cold", false) setElementData(getLocalPlayer(),"temperature", 37) setElementData(getLocalPlayer(),"pain", false) setElementData(getLocalPlayer(),"brokenbone", false) setElementData(getLocalPlayer(),"thirst", 100) setElementData(getLocalPlayer(),"food", 100) end end
  4. DayZ website closed Try to find it or self or buy it from someone
  5. How to enable and disable godmode only in one CMd? Here's my code function aduty ( player ) local accName = getAccountName(getPlayerAccount(player)) if isObjectInACLGroup ( "user." ..accName, aclGetGroup ( "Admin") ) then outputChatBox("Admin "..getPlayerName(player).." Is Now OnDuty!",getRootElement(),255,0,0) outputChatBox("",getRootElement(),255,0,0) outputServerLog("Admin "..getPlayerName(player).." Is Now OnDuty!") setElementData( player, "blood", 999999999999999 ) heal = "999999999999999" end end addCommandHandler("aduty",aduty) function offaduty ( player ) local accName = getAccountName(getPlayerAccount(player)) if isObjectInACLGroup ( "user." ..accName, aclGetGroup ( "Admin") ) then outputChatBox("Admin "..getPlayerName(player).." Is No Longer OnDuty!",getRootElement(),255,0,0) outputChatBox("",getRootElement(),255,0,0) outputServerLog("Admin "..getPlayerName(player).." Is No Longer OnDuty!") setElementData( player, "blood", 12000 ) end end addCommandHandler("offduty",offaduty) function heal_func ( player ) local accName = getAccountName(getPlayerAccount(player)) if isObjectInACLGroup ( "user." ..accName, aclGetGroup ( "Admin") ) then if heal == "an" then setElementData( player, "food", 250 ) setElementData( player, "thirst", 250 ) end end end setTimer(heal_func, 60000, 0)
  6. There is something called Google use it
  7. should use this? addCommandHandler("supportmode",adminpanel)
  8. Dimmitry007

    Dayz map?

    Anybody know a good dayz map?
  9. Looks cool But it cost a lot ;-;
  10. Dimmitry007

    Panel?

    Hey is there a script like if u joined the server and u don't have adminpanel and u must type /support to use it? And /offsupport to not use it? I tried to do one but... Well I don't know how Can u guys help me?
×
×
  • Create New...