Disable godmode on entering area/zoneNo Thanks
Hi guys,

is there anyway for the mod to turn off godmode on entering the arena?,  blacklisting the command is great, but i had to remove, so if someone got TP's to the arena, they couldnt turn godmode off.  - id rather not remove the godmode mod, because its very useful for the players that dont want to duel. 

I dont mind janky workarounds, so any advice would be appreciated. 
Im currently messing with zonemanager and zoneflags does not remove Godmode.
I need a way for it to turn off when they are detected in a zone.
Is this possible ??
The godmode plugin i have is https://umod.org/plugins/godmode
Plugin unavailable 
Hello,
It could be great to have these 4 parameters:

1-god toggle off when a player entering in a TC zone from another player
2-god toggle off when a player leaving his own TC zone.
3-god automatically toggle back  ON when leaving (1) / entering (2)  TC zone
4-god automatically toggle ON when connecting on server.

It can be very useful, specially for creative servers :)

love !
Since there are no hooks to check if the player has entered the TC zone, I don't want to add it.
For 4, this has been implemented in the latest version
hello Arainrr,
Are you sure there is no available hook when entering a tc zone ?
because i think i saw fauxadmin plugin using this system  for the FauxAdmin noclip
"Disable FauxAdmins Noclip when not authorized on local tool cupboard ? ": true,​
There are no hooks, you can only check periodically if the player is in the TC area. This is unnecessary and wastes server resources. 
You can send a plugin request --> https://umod.org/community/plugin-requests
im after the same as you jer0m but a bit different 
I want Godmode to be de-activated when they enter a zone.
5c18c7da631b5.jpg Arainrr
There are no hooks, you can only check periodically if the player is in the TC area. This is unnecessary and wastes server resources. 
Oh really ? indeed it's not a good idea then. Totally agree it will be a waste of resources.
If you are talking about this plugin: https://umod.org/plugins/godmode
Then you better create your request here: https://umod.org/community/godmode
This is an example of detecting player is on duel:
        private bool IsInDuel(BasePlayer player)
        {
            if (Duelist != null && Duelist.IsLoaded)
            {
                if (Duelist.Call<bool>("inEvent", player))
                {
                    return true;
                }
            }

            return false;
        }​
Locked automatically