Skip to content

Instantly share code, notes, and snippets.

@CaptainPRICE
Created March 29, 2016 20:01
Show Gist options
  • Save CaptainPRICE/6714b3959ef0a3cdf75c5b47db7b6208 to your computer and use it in GitHub Desktop.
Save CaptainPRICE/6714b3959ef0a3cdf75c5b47db7b6208 to your computer and use it in GitHub Desktop.
--
-- Simple Starfall chip code viewer/hacker (addon: https://github.com/thegrb93/StarfallEx).
--
local sf = SF
if (not istable(sf)) then
return
end
local allInstances = sf.allInstances
if (not istable(allInstances)) then
return
end
for _, t in next, allInstances do
-- A table per Starfall chip.
if (istable(t.source)) then
PrintTable(t.source)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment