Search Filters
Search Results
26 total results found
Reflection
Very limited reflection is possible, but is not recommended. Use it in cases, when mod doesn't ha...
FTB Quests Integration
events.listen('ftbquests.custom_task.75381f79', function (event) { log.info('Custom task!') ...
TagEventJS
This event is fired when a tag collection is loaded, to modify it with script. You can add and re...
List of all events
This is a list of all events. It's possible that not all events are listed here, but this list wi...
CommandEventJS
This event needs cleanup! Using it is not recommended. Information This event is fired when a c...
Recipes
Moved to RecipeEventJS!
Custom Blocks
This is a startup script. events.listen('block.registry', function (event) { event.create('te...
Scheduled Server Events
At server load, you can schedule anything to happen at later time. Within callback handler you ca...
Chat Event
This script is peak of human evolution. Whenever someone says "Creeper" in chat, it replies with ...
String
Class of string objects, such as "abc" (and in JS 'abc' works as well) Parent Object Variable...
Network Packets
This script shows how to use network packets: // Listen to a player event, in this case item rig...
Information (Read this first!)
Website and FAQ: https://kubejs.latvian.dev/ Discord server: https://discord.gg/bPFfH6P Forge ...
EventJS
This event is the most basic event class, parent of all other events. Parent class Object Can ...
Primitive Types
Information Primitive types are objects that don't have a real class and don't inherit methods f...
Object
Parent class of all Java objects. Parent None (and itself at the same time, don't question it)...
Clearlag
This script removes all items from world every 30 minutes. Only works in 1.12. // Create item wh...
FTB Utilities Rank Promotions
With this script you can have FTB Utilities roles that change over time. Is for 1.12 only. Requi...
Custom Items
// Listen to block registry event events.listen('item.registry', function (event) { // The te...
Starting Items
This script adds items on first time player joins, checking gamestages Requires GameStages mod! ...
JEI Integration
Sub-types onEvent('jei.subtypes', event => { event.useNBT('example:item') event.userNBT...