-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Destuur edited this page Sep 11, 2025
·
11 revisions
KCDUtils is a utility library for Kingdom Come: Deliverance 2 modding.
- Simplifies common modding tasks
- Provides event systems, entity handling, and utility functions
- Supports both C# and Lua modding
-- Create and Trigger a custom event
local myCustomEvent = KCDUtils.Events.CreateEvent("MyMod.TestCustomEvent")
mod.TriggerCustomEvent = function(message)
myCustomEvent.Trigger({ message = message })
end