DayZ
4,116 ratings
Community-Online-Tools
6
6
26
18
5
6
3
4
3
3
2
   
Award
Favorite
Favorited
Unfavorite
Type: Mod
File Size
Posted
Updated
1.534 MB
13 Nov, 2018 @ 2:22am
1 May @ 6:41am
107 Change Notes ( view )

Subscribe to download
Community-Online-Tools

Description
NOTICE
There may be some bugs. If you do find some, report them in them on my GitHub here[github.com]

Information:
This is the first set of GUI based admin tools created by the developers of DayZ Community Offline Mode. This makes use of a modular design which allows other mods such as DayZ Expansion or DayZ HypeTrain to add their own menu's for admins to have further control of their servers. Community Online Tools allow you to teleport players, set player health, blood, shock, change the weather of the server, and even spawn in vehicles. Also, this mod allows you to set the aiming mode for players to the old 0.62 system if you, the server admin wishes to use it.

Server Installation Instructions:
  1. Install the mod using your preferred method for installing mods. I recommend using a server manager such as OmegaManager.

  2. Launch the server once and then after it has fully launched turn it back off.

  3. Locate the profiles folder used for the server. If using OmegaManager this folder would be called ‘profiles’ otherwise you can find what it is called by checking the command line parameter ‘-profiles’ and seeing what that is set to. Once in that folder enter the ‘PermissionsFramework’ folder and then enter the ‘Players’ folder.

  4. Inside that folder create a .json file with your GUID/SteamID. Inside of that JSON file paste the contents of this[pastebin.com] pastebin.

  5. Congratulations, you have successfully installed COT. You can assign roles to others while in-game.


    Webhooks:
    Webhooks can be configured like the following https://pastebin.com/AR3Bk9E5 where there can be multiple connections. Say you want players to see when the weather is changing but want another channel for every admin action to be logged in or you want this information to be logged across multiple discord servers.

    Controls:
    Y - Open the toolbar menu
    INSERT - Toggle free camera
    H - This teleports you to the position you are looking at
    END - Toggles Community Online Tools keybindings on/off

    Monetization:
    Monetization is allowed on your servers but it would be nice that a small percentage is sent as a donation. This is not enforced but would be greatly appreciated.

    Donate:
    If you like this mod do feel free to send a donation to my paypal here[www.paypal.me]. This mod is released for free for all to use and monetize of but any donation would be greatly appreciated.

Popular Discussions View All (274)
2
25 Jul @ 4:28pm
COT and weather problem
AdamKurde
8
4 hours ago
Problems with CF and COT
Gundam Meister Goon
10
1
25 Dec, 2024 @ 12:41pm
[1.26] COT Progress
LieutenantMaster
3,045 Comments
LieutenantMaster  [author] 27 Aug @ 11:34am 
@bedaddy111
Probably mean the game was unable to read the file and reverted it to its default state. usually means the file is broken (bad formatting in the json config(
bedaddy111 27 Aug @ 10:28am 
@XXMystiqueXX they work together just fine for me
bedaddy111 27 Aug @ 10:26am 
everything is working great but the webhooks.json for some reason whenever i save my settings with the setup and the discord api it resets it is this a known problem?
XXMystiqueXX 22 Aug @ 6:03pm 
Can i use both VPPA and Cot together?
LieutenantMaster  [author] 21 Aug @ 11:10pm 
object dragging is planned, but its not a thing atm.
You can use scroll wheel + shift to change the value faster however
josh 21 Aug @ 3:26pm 
is it possible to move objects freely without using the coordinates?
LieutenantMaster  [author] 21 Aug @ 2:18am 
@The Grox DayZ
Not a official one but the community made various resources to help others like this playlist
https://www.youtube.com/playlist?list=PLwug9MY6GVXwXOqKLWNN51TYl2vYPE9i1
LieutenantMaster  [author] 21 Aug @ 2:17am 
@RIG4Night wrong mod, this is the COT page. not CF
The Grox DayZ 20 Aug @ 4:42am 
Hello, is there a full documentation about the mod?
RIG4Night 18 Aug @ 4:57am 
Class: 'DayZGame'
Function: 'OnUpdate'
Stack trace:
scripts/3_Game/dayzgame.c:2937 Function OnUpdate
JM/CF/Scripts/3_Game/communityframework\game\dayzgame.c:46 Function OnUpdate



override void OnUpdate(bool doSim, float timeslice)
{
super.OnUpdate(doSim, timeslice);

if (!GetGame().IsDedicatedServer())
{
foreach (auto input : CF_InputBindings.s_All)
{
input.Update(timeslice);
}
}
}

Fix

override void OnUpdate(bool doSim, float timeslice)
{
if (!GetGame().IsDedicatedServer() && CF_InputBindings.s_All)
{
foreach (auto input : CF_InputBindings.s_All)
{
if (input)
{
input.Update(timeslice);
}
}
}

super.OnUpdate(doSim, timeslice);
}