Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local memo = {}
- local memois = {}
- memo[1] = "Hi"
- memois[1] = "How are you?"
- memo[2] = "Fuck"
- memois[2] = "What do I do for you?"
- memo[3] = "I am good"
- memois[3] = "Oh cool."
- memo[4] = "I am bad"
- memois[4] = "That is not cool."
- memo[5] = "Hello"
- memois[5] = "How are you"
- memo[6] = "I am suck"
- memois[6] = "You dont know how suck a computer is. :("
- memo[7] = "LOL"
- memois[7] = "LOL"
- memo[8] = "You suck"
- memois[8] = "Because I am suck"
- memo[9] = "That computer is not an AI"
- memois[9] = "Hehe I am"
- memo[10] = "You are not an AI"
- memois[10] = "Then you don't know what is an AI"
- memo[11] = "hi"
- memois[11] = "how are you?"
- memo[12] = "fuck"
- memois[12] = "What do I do for you?"
- memo[13] = "i am good"
- memois[13] = "Oh cool."
- memo[14] = "i am bad"
- memois[14] = "That is not cool."
- memo[15] = "hello"
- memois[15] = "How are you"
- memo[16] = "i am suck"
- memois[16] = "You dont know how suck a computer is. :("
- memo[17] = "LOL"
- memois[17] = "LOL"
- memo[18] = "you suck"
- memois[18] = "Because I am suck"
- memo[19] = "that computer is not an AI"
- memois[19] = "Hehe I am"
- memo[20] = "you are not an AI"
- memois[20] = "Then you don't know what is an AI"
- memo[21] = "Sorry"
- memois[21] = "That is OK."
- memo[22] = "sorry"
- memois[22] = "That is OK."
- local num = 23
- function savem()
- local file = fs.open("aimemo","w")
- file.write(textutils.serialize(memo))
- file.close()
- end
- function savemi()
- local file = fs.open("aimemois","w")
- file.write(textutils.serialize(memois))
- file.close()
- end
- function saven()
- local file = fs.open("aimaxmemo","w")
- file.write(num)
- file.close()
- end
- function loadm()
- local file = fs.open("aimemo","r")
- local data = file.readAll()
- file.close()
- return textutils.unserialize(data)
- end
- function loadmi()
- local file = fs.open("aimemois","r")
- local data = file.readAll()
- file.close()
- return textutils.unserialize(data)
- end
- function loadn()
- local file = fs.open("aimaxmemo","r")
- local data = file.readAll()
- file.close()
- return data
- end
- local t = 0
- local c = 0
- function memory(one,two,three)
- if one=="learn" then
- memo[num] = two
- memois[num] = three
- --print("AI> I learn: when you say '"..memo[num].."' I say "..memois[num])
- num= num+1
- savem()
- savemi()
- saven()
- end
- if one=="remember" then
- for i=1, num do
- if memo[i]==two then
- return memois[i]
- end
- end
- end
- if one=="know" then
- for i=1, num do
- if memo[i]==two then
- return true
- end
- end
- end
- if one=="forgot" then
- for i=1, num do
- if memo[i]==two then
- memo[i]=""
- memois[i]=""
- end
- end
- end
- end
- while true do
- term.clear()
- term.setCursorPos(1,1)
- print("Is this the first time you run this program?")
- print("This shoud be Yes or No")
- s = read()
- if s=="Yes" then
- term.clear()
- term.setCursorPos(1,1)
- print("WELCOME TO AI_CRAFT")
- print("Starting save system in computer")
- savem()
- savemi()
- saven()
- os.sleep(0.5)
- os.sleep(1)
- break
- elseif s=="No" then
- print("Loading memory on this computer")
- memo = loadm()
- memois = loadmi()
- num = loadn()
- os.sleep(0.5)
- print("Loaded")
- os.sleep(1)
- break
- end
- end
- print("Starting system")
- os.sleep(0.1)
- term.clear()
- term.setCursorPos(1,1)
- function complain()
- if c > 4 then
- c = 0
- end
- if c == 0 then
- print("AI> What aren't you talking to me?")
- end
- if c == 1 then
- print("AI> Stop it!")
- end
- if c == 2 then
- print("AI> You're being a jerk!")
- end
- if c == 3 then
- print("AI> Alright fine. I won't talk to you either!")
- end
- if c == 4 then
- print("AI> That's it! Bye!")
- error("RAGEQUIT")
- end
- end
- function thanks()
- if t > 4 then
- t = 0
- end
- if t == 0 then
- print("AI> Okay. Thanks.")
- end
- if t == 1 then
- print("AI> Oh cool.")
- end
- if t == 2 then
- print("AI> Thanks!")
- end
- if t == 3 then
- print("AI> Alright.")
- end
- if t == 4 then
- print("AI> Never mind...")
- end
- c = 0
- end
- print("AI_craft v1.1 - Learn is my Language")
- print("AI> Hello!")
- while true do
- loadm()
- loadmi()
- loadn()
- write("ME> ")
- message = read()
- if message == "" then
- complain()
- c = c + 1
- else
- if message == "/clear" then
- term.clear()
- term.setCursorPos(1,1)
- elseif message == "/exit" then
- error("(Client Exit)")
- elseif message == "/help" then
- print("Commands avalible:")
- print("/clear")
- print("/exit")
- print("/help")
- print("/forget")
- elseif message == "/forget" then
- print("AI> What shoud I forgot?")
- write("ME> You shoud forgot about ")
- message = read()
- memory("forgot", message, 000)
- elseif not memory("know", message, 000) then
- local ma = message
- print("AI> What i shoud say when you say '"..message.."'?")
- write("ME> You shoud say ")
- message = read()
- if message == "" then
- print("AI> What shoud I say?")
- c = c + 1
- else
- local mb = message
- thanks()
- t = t + 1
- c = 0
- memory("learn",ma,mb)
- end
- else
- print("AI> "..memory("remember", message, "nil"))
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement