Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tboi-reisen

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tboi-reisen

The Binding Of Isaac: Afterbirth+ mod compiler

  • 1.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

tboi-reisen

The Binding Of Isaac: Afterbirth+ mod compiler

Setup

This script requires npm and nodejs installed

npm i -g tboi-reisen

Usage

tboi-reisen main.lua output.lua

Flags

  • --no-import - disable import feature
  • --no-dbg - disable dbg-script injection
  • --production - disable dbg-script (for production builds)
  • --watch - watch input file for changes and recompile it

What it does

  • It injects debug script in the end (can be disabled by --no-dbg argument)

Right now, it implements only one function - log('String'), which renders string on MC_POST_RENDER event Arar rar

  • It let's you use import in your lua scripts to combine several files together (can be disabled by --no-import argument)

Example 1:

main.lua

-- Code
import useless_crap from 'useless_crap.lua'
-- Code

useless_crap.lua

this_is_a = 'bucket'
return this_is_a

output.lua (generated by script)

-- Code
local useless_crap = (function() 
	this_is_a = 'bucket'
	return this_is_a
end)()
-- Code

Example 2:

main.lua

-- Code
import 'theres_more.lua'
-- Code

theres_more.lua

local bucket = 'Dear god!'

output.lua (generated by script)

-- Code
local bucket = 'Dear god!'
-- Code

FAQs

Package last updated on 18 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc