Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- term.clear()
- term.setCursorPos(1,1)
- rednet.open("back")
- rednet.open("front")
- rednet.open("top")
- rednet.open("bottom")
- rednet.open("left")
- rednet.open("right")
- print("ANTNCO Bank Client Pre-Alpha 1")
- print("Currently only supports ADD/REMOVE funds")
- print("")
- rednet.send(20, "addrem")
- id,msg = rednet.receive(60)
- if msg=="IGN" then
- write("IGN: ")
- ign = read()
- rednet.send(id, ign)
- id1,msg1 = rednet.receive()
- if id1==id and msg1=="AMT" then
- print("Amount To Remove, Use -... To Add Funds")
- write("AMT: ")
- inpt = read()
- rednet.send(id,inpt)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment