- Guardar/Carregar estat funciona a nivell bàsic

This commit is contained in:
2023-02-01 19:57:52 +01:00
parent d48816bd8b
commit 26560919cd
2 changed files with 31 additions and 4 deletions

View File

@@ -50,3 +50,8 @@ function menu_update()
color(1)
prnt("JAIL'S ADVENTURE 2",10,10)
end
function getkeyval(str)
local c1,c2=string.find(str,"=")
return string.sub(str,1,c1-1), string.sub(str,c2+1)
end