Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Banking SYstem API(Client)
- --this program acts as a API for any of my programs that require access to Banking System
- --this program is for Minecraft 1.16.5, CC Tweaked
- local tArg = {..}
- local AccountA = tArg[1]
- local AccountB = tArg[2]
- local Key = tArg[3]
- local Protocol = tArg[4]
- local Amount = tArg[5]
- local Bank = tArg[6]
- function Transfer()
- rednet.open()
- local id = rednet.lookup(Protocol, Bank)
- local SendData = {AccountA,AccountB,Key,Amount}
- rednet.send(id, SendData, Protocol)
- end
- Transfer()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement