Skip to content

a log reader written for the binding of isaac: rebirth series, for node.js

License

Notifications You must be signed in to change notification settings

adewey/isaac-log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

isaac-log

The Binding of Isaac: Afterbirth log reader and event emitter for Node.js

simply load the plugin and subscribe to events:

var isaaclog = require('isaac-log');

isaaclog.on('roomStartEvent', function(raw, boss_name) {
    ...
});

isaaclog.on('roomEndEvent', function(raw, clear_time) {
    ...
});

isaaclog.on('levelEvent', function(raw, floor, stage, alternate) {
    ...
});

isaaclog.on('collectibleEvent', function(raw, item_id, item_name) {
    ...
});

isaaclog.on('seedEvent', function(raw, seed) {
    ...
});

isaaclog.on('playerEvent', function(raw, player_id) {
    ...
});

isaaclog.on('curseEvent', function(raw, curse) {
    ...
});

isaaclog.start();

About

a log reader written for the binding of isaac: rebirth series, for node.js

Resources

License

Stars

Watchers

Forks

Packages

No packages published