Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local BankScript = "BankingSystem-banking_public2"
- local tArg = {...}
- local function Purchase()
- shell.run(BankScript,"transfer",tArg[2],tArg[3])
- end
- local function Setup()
- shell.run(BankScript,"CreateAccount",tArg[2])
- os.reboot()
- end
- if tArg[1] == "setup" then
- Setup()
- elseif tArg[1] == "Purchase" then
- Purchase()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement