CryoSicknessTime
Set Cryopod cooldown to any value you want. Optional PvP-only override, optional per-group times through ArkServerApi Permissions, and a safe in-game/RCON reload. Only touches the Cryopod cooldown buff—nothing else.
CryoSicknessTime edits only the vanilla Cryopod cooldown on the player:
Touched: Buff_CryoCooldown_C
Not touched: food timers, other buffs, or unrelated systems
Features
Base cooldown in seconds: CryoSicknessSeconds
Optional Permissions rules: different seconds per permission (and per-PvP row); first match wins (PermissionCooldowns + PermissionCacheTtlSeconds)
Optional PvP mode: while buff PvpBuffClassName is on the player, use SecondsPvp or fallback CryoCooldownSecondsPvp (EnablePvpOverride)
Live reload without restart: CryoSicknessTime.reload (console / RCON / admin)
Lightweight, server-friendly
Commands
Config reload: CryoSicknessTime.reload
RCON: CryoSicknessTime.reload
In-game (admin / cheat): cheat CryoSicknessTime.reload
Configuration
Requirements & notes
Requirements: ARK: Survival Evolved dedicated server; Ark Server API 3.56+ (as shipped with the plugin)
Put config.json in the same folder as the DLL
Production config.json must be valid JSON (no // comments)
Use commented_config.json as a reference, then copy values into a clean config.json
Install
Copy the plugin into the ArkAPI plugins folder
Edit config.json (LicenseKey + your cooldowns / permission keys)
Run CryoSicknessTime.reload after changes
Pricing
$20 — 1 year license
$10 — yearly renewal
Support / Purchase
Support and purchases are handled via the Discord link below.

Author: SANTA — santadevs.ru
[/SPOILER]
Set Cryopod cooldown to any value you want. Optional PvP-only override, optional per-group times through ArkServerApi Permissions, and a safe in-game/RCON reload. Only touches the Cryopod cooldown buff—nothing else.
CryoSicknessTime edits only the vanilla Cryopod cooldown on the player:
Touched: Buff_CryoCooldown_C
Not touched: food timers, other buffs, or unrelated systems
Features
Base cooldown in seconds: CryoSicknessSeconds
Optional Permissions rules: different seconds per permission (and per-PvP row); first match wins (PermissionCooldowns + PermissionCacheTtlSeconds)
Optional PvP mode: while buff PvpBuffClassName is on the player, use SecondsPvp or fallback CryoCooldownSecondsPvp (EnablePvpOverride)
Live reload without restart: CryoSicknessTime.reload (console / RCON / admin)
Lightweight, server-friendly
Commands
Config reload: CryoSicknessTime.reload
RCON: CryoSicknessTime.reload
In-game (admin / cheat): cheat CryoSicknessTime.reload
Configuration
Code:
{
"LicenseKey": "",
"CryoSicknessSeconds": 120,
"EnablePvpOverride": false,
"CryoCooldownSecondsPvp": 120,
"PvpBuffClassName": "Maga_PvpCd_Buff_C_C",
"PermissionCacheTtlSeconds": 120,
"PermissionCooldowns": [
{
"Permission": "silver.cooldown",
"Seconds": 150,
"SecondsPvp": 150
}
]
}
Code:
// Save as config.json next to the DLL. Reload: CryoSicknessTime.reload
{
"LicenseKey": "", // SANTADEVS key; empty = plugin disabled
"CryoSicknessSeconds": 120, // Default if no permission rule matches
"EnablePvpOverride": false, // true = PvP buff active → use PvP seconds from rules or CryoCooldownSecondsPvp
"CryoCooldownSecondsPvp": 120, // PvP fallback if no row matches
"PvpBuffClassName": "Maga_PvpCd_Buff_C_C", // Exact class name; while active, PvP numbers apply
"PermissionCacheTtlSeconds": 120, // Seconds to cache permission result per player; 0 = always re-query
"PermissionCooldowns": [
{ "Permission": "silver.cooldown", "Seconds": 150, "SecondsPvp": 150 }
]
}
Requirements & notes
Requirements: ARK: Survival Evolved dedicated server; Ark Server API 3.56+ (as shipped with the plugin)
Put config.json in the same folder as the DLL
Production config.json must be valid JSON (no // comments)
Use commented_config.json as a reference, then copy values into a clean config.json
Install
Copy the plugin into the ArkAPI plugins folder
Edit config.json (LicenseKey + your cooldowns / permission keys)
Run CryoSicknessTime.reload after changes
Pricing
$20 — 1 year license
$10 — yearly renewal
Support / Purchase
Support and purchases are handled via the Discord link below.
Author: SANTA — santadevs.ru
[/SPOILER]