1. Would be willing to donate for this feature!
     
  2. HELP!

    So I seem to be having a problem with players using the /TPR command to get inside someones base. Player A will find a over hanging ceiling of Player C's base and Player B will do /tpr Player A and then Player B will be inside Player C's Base.

    Is there anyway to stop this from happening?
     
  3. I have a problem on the server. Players can propisovat / sethome even on someone else's foundation, although they are not in your friends. How to fix it? What do I need to register the plugin.
     
    Last edited by a moderator: May 28, 2015
  4. When users are teleported, they spawn underground :( Im using HapisIsland. Sorry, I updated the Plugin, and now it works :D
     
    Last edited by a moderator: May 30, 2015
  5. How can i sethome on different floors? Can't seem to figure this one out. I'm forced to sethome on foundation.
     
  6. There is an option in the settings that forces homes on a foundation.
     
  7. That's the setting it's set to now. But i want to be able to sethome in all levels on my house. I tried setting ForceOnTopOfFoundation = false, but nothing happened
     
  8. Did you reload the plugin after changing it? :)
     
  9. Yes, tried it multiple times.
     
  10. dude how i can denegate players to sethome on other homes i cant remember
     
  11. Wulf

    Wulf Community Admin

    Did you edit it in the config or the plugin? You should always use the config.
     
  12. I edit the m-Teleportation.lua file. What is wrong? WHere can i find the config file?
     
  13. Wulf

    Wulf Community Admin

    oxide/config/m-Teleportation.json
     
  14. Is it possible to block tp in a wounded state ?
     
  15. Calytic

    Calytic Community Admin Community Mod

    Yes, the following code will block wounded teleport.

    Code:
    function PLUGIN:CanPlayerTeleport( player )
        local arr = util.TableToArray( { player } )
        util.ConvertAndSetOnArray( arr, 0, player, UnityEngine.Object._type )
        local _return = plugins.CallHook( "canTeleport", arr )    if player:IsWounded() then
            return false, tostring( "Cannot teleport while wounded" )
        end    if not _return then
            return true
        end    return false, tostring( _return )
    end
     
  16. Thx, it worked out!
     
    Last edited by a moderator: Jun 1, 2015
  17. Thank you. It works!
     
  18. is there a way i can reset everyones teleport count down time? says they have 40 mins wait however in the config it is 60 seconds? i have tried deleteing all and reinstalling but still no jot
     
  19. I had some complains about ppl tping out of their base with loot while getting raided. Is there anything the plugin can do about it ?
     
  20. Calytic

    Calytic Community Admin Community Mod

    You can increase the cooldowns and limit the total TPs available per day. Technically it would be possible to disable TP when a building block that someone owns is hit (with thrown weapons) for duration of time. That would require integrations with existing mods (BuildingOwners) and a mod to handle the new cooldown.