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`aBBBBBBBBBBBBBBBBBBBB300? "" "" "" """"""""""././././././././././././././././"""""""" "" "" "" "" "" "" "" "" """"""""""""././././././././././././././././././././"""""""""" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" """"""""""""""""""""""""""././././././././././././././././././././././././././././././././././././././././././././././././"""""""""""""""""""""""" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" """"""""""""""""""""""""""././././././././././././././././././././././././././././././././././././././././././././././././"""""""""""""""""""""""" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" """"""""""././././././././././././././././"""""""" "" "" "" "" "" """"""././././././././"""" "" ""```ff`f&nfff`` "" """"""././././././././"""" "" "" "" "" "" "" "" """"""""""""""././././././././././././././././././././././././"""""""""""" "" "" "" "" "" "" "" "" "" "" "" "" """"""""""""""""././././././././././././././././././././././././././././"""""""""""""" "" "" "" "" "" "" "" "" "" "" "" """"""""""""././././././././././././././././././././"""""""""" "" "" "" "" ""-- title: Dodger -- author: deep-riot -- desc: Final game v1.0 -- script: lua -- input: gamepad playerX = 100 playerY = 69 counter = 0 counter_max = 10 random = math.random en = false function TIC() 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 btn(2) then playerX = playerX - 2 end if btn(3) then playerX = playerX + 2 end if en then counter_max = 600 print("you lose press A/X to restart", 10, 100) end if playerX < 0 then playerX = 232 end if playerX > 232 then playerX = 0 end if btn(6) then en = false counter_max = 10 playerX = 100 playerY = 69 end end