0 D$404mNJNL04e$FHuqaY}},m,Ҫm^ q9Phy5ټy̼h̼̚6vgw̚x˻xwxfxwwwxwݼF#!CuͫyV4#"eͼxV4t޼xgE"RyfxgV4RgfvwV3t2FCE`33033333s337:3333ss3733303 """"././././"" ""ffllfflllfllllllllllll@fffffffffffffffffffffffffff"fff"ffffffffffffffffffffff33033333s337:3333ss3733303```ff`f&nfff``{!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  (8HXhxxxxxxxxxxxxxxxxxxxxxxx$$$$4444DDDDTTTTddddtt   P0 0@` p p0p@`P`pPP@@000 000q0b@b@S@U@JPOP yz{{||}}~~~ ```a!a`a`aa@aa````a`aa``a`a`a`a`aBBBBBBBBBBBBBBBBBBBB300U> "" "" "" "" "" "" "" "" "" "" "" """"""""""""""""""""""""""././././././././././././././././././././././././././././././././././././././././././././././././"""""""""""""""""""""""" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" """"""""""""""""""""""""""././././././././././././././././././././././././././././././././././././././././././././././././"""""""""""""""""""""""" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" """"""""""././././././././././././././././"""""""" "" "" "" "" "" """"""././././././././"""" "" ""```ff`f&nfff`` "" """"""././././././././"""" "" "" "" "" "" "" "" """"""""""""""././././././././././././././././././././././././"""""""""""" "" "" "" "" "" "" "" "" "" "" "" "" """"""""""""""""././././././././././././././././././././././././././././"""""""""""""" "" "" "" "" "" "" "" "" "" "" "" """"""""""""././././././././././././././././././././"""""""""" "" "" "" "" "" "" """"""././././././././"""" "" ""-- title: Dodger mobile version -- author: deep-riot -- desc: Final game v1.0 -- script: lua -- input: gamepad playerX = 100 playerY = 69 counter = 0 counter_max = 10 random = math.random mouseX = 0 mouseY = 0 mouse_clicked = false en = false function TIC() mouseX, mouseY, mouse_clicked = mouse() if counter > counter_max then counter_max = counter_max - 0.1 counter = 0 playerY = playerY - 1 end tile = mget(playerX // 8 , playerY + 10) if tile == 33 then en = true end counter = counter + 1 cls() map(0, playerY) spr(289, playerX, 80) if mouseX < 80 and mouse_clicked then playerX = playerX - 2 end if mouseX > 160 and mouse_clicked then playerX = playerX + 2 end if en then counter_max = 600 print("you lose tapp screen to restart", 10, 100) end if playerX < 0 then playerX = 232 end if playerX > 232 then playerX = 0 end if mouse_clicked and en then en = false counter_max = 10 playerX = 100 playerY = 69 end end