0,Hy>S}Wup8d q)6o;]AsVl3>DD>>>!!!"!! !" !!!!"!!!!!!"!!!!!"!!"!00000003""2333BDD233" 3DD$!33#!!"!!!!!"!!!!!"!!!"!!!!"33 """30330#3#333#"33""3333333303303333#"2#""""D2"##2"##2"##2"##2"##2"##""""""/""""""2"##2"##2"##2"##2"#D B0"02020202 2"  0"0"020202 B """"2#2"3#33#230#3# 3"02#"3"3"#2#""3"D23BD3"BD#3DD CDD3#2B4""B3"3D#"3D"#"D"3#4#3#3#"333#"33"#"2#3#2333#333@@@C00@D4@D4@D3@43@43@43@D3D3333"333#333333333333333333333333""#3333333333=#CDB4""/""""""2"##2"##2"##2"##2"#D-L2DB43"3L$3$0D 3 """D2"##2"##2"##2"##2"##2"##""""fDDfFLfFlfFfDfƪljfDDff@dfAdfdfDƪljfDDfFLfDlfDfffƪljif@@@C00!!!"!! !" !!!!"!!!!!!"!!!!!"!!"!00000003""2333BDD233" 3DD$!33#!!"!!!!!"!!!!!"!!!"!!!!"33 """30330#3#333#"33""3333333303303333#"2#"DDD@@@D DD@L@ @D  """"2#2"3#33#230#3# 3"02#"3"3"#2#""3"D23BD3"BD#3DD CDD3#2B4""B3"3D#"3D"#"D"3#4#3#3#"333#"33"#"2#3#2333#333DDOLOODϪ@D4@D4@D3@43@43@43@D3D3333"333#333333333333333333333333""#333333333D04D̻L3D44DDDDCCD4D3@D@CDCDLDD@44DCDDCD  3@D4C@4C4CL4DD@44CDDCD  4C @C4 @ػ ݈݈>1010 >?""/""""""2"##2"##2"##2"##2"#D"""D2"##2"##2"##2"##2"##2"##""""33333333DB4CDB4CD33333333D"C$#"C$#>33333333>CBCDCBCD>33333333#CD##CD#33333333B4CDB4CD33333333"C$#"C$#33333333CBCDCBCD33333333#CD##CD#DD33333333NLB4CDB4CDN33333333N"C$#"C$#D33333333ΪCBCDCBCD33333333#CD##CD#333333333333B4CDB4CDB4CD333333333333"C$#"C$#"C$#333333333333CBCDCBCDCBCD333333333333#CD##CD##CD#333333333333333333333333B4CDB4CDB4CDB4CDB4CDB4CD333333333333333333333333"C$#"C$#"C$#"C$#"C$#"C$#333333333333333333333333CBCDCBCDCBCDCBCDCBCDCBCD333333333333333333333333#CD##CD##CD##CD##CD##CD#333333333333333333333333B4CDB4CDB4CDB4CDB4CDB4CD333333333333333333333333"C$#"C$#"C$#"C$#"C$#"C$#333333333333333333333333CBCDCBCDCBCDCBCDCBCDCBCD333333333333333333333333#CD##CD##CD##CD##CD##CD#333333333333333333333333B4CDB4CDB4CDB4CDB4CDB4CD333333333333333333333333"C$#"C$#"C$#"C$#"C$#"C$#333333333333333333333333CBCDCBCDCBCDCBCDCBCDCBCD333333333333333333333333#CD##CD##CD##CD##CD##CD#333333333333333333333333B4CDB4CDB4CDB4CDB4CDB4CD333333333333333333333333"C$#"C$#"C$#"C$#"C$#"C$#333333333333333333333333CBCDCBCDCBCDCBCDCBCDCBCD333333333333333333333333#CD##CD##CD##CD##CD##CD#333333333333333333333333B4CDB4CDB4CDB4CDB4CDB4CD333333333333333333333333"C$#"C$#"C$#"C$#"C$#"C$#333333333333333333333333CBCDCBCDCBCDCBCDCBCDCBCD333333333333333333333333#CD##CD##CD##CD##CD##CD#-- title: salve a princesa -- author: Beatrizgames -- desc: a princes saving a prince -- site: https://beatrizgames.neocities.org/ -- license: MIT License -- version: 0.1 -- script: lua function _init() game = {} game.status = true game.width = 240 game.height = 136 game.map_x = 0 game.map_y = 0 game.solids = {} game.solids[1] = true game.lava = {} game.lava[2] = true game.porta = {} game.porta[48] = true function CollisionCheck(x, y) local id = mget((x // 8)+ game.map_x,(y // 8) + game.map_y) return game. solids[id] end function Collision(x, y) local id = mget((x // 8)+ game.map_x,(y // 8) + game.map_y) return game. lava[id] end function Collisionporta(x, y) local id = mget((x // 8)+ game.map_x,(y // 8) + game.map_y) return game. porta[id] end function colidir(px,py,ox,oy) if (px > ox and px < ox +8) or (px + 8 > ox and px + 8 < ox +8) then hitX = true end if (py > oy and py < oy +8) or (py + 8 > oy and py + 8 < oy +8) then hitY = true end if hitX and hitY then return true else return false end end function chave() hit =colidir(player.x, player.y, kei.x, kei.y) if hit then kei.active=false door.active=false end end player = {} player.x = 0 player.y = 72 player.vx = 0 player.vy = 0 player.Hspeed = 1 player.Vspeed = 1 player.width = 8 player.height = 8 function player:update() if btn(0)and player.y>0 then--cima self.vy = -2.5 end if btn(2)and self.x>0 then--esq self.vx = -1 elseif btn(3)and self.x+self.width