Advertisement
Guest User

Untitled

a guest
Sep 9th, 2018
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.74 KB | None | 0 0
  1. pico-8 cartridge // http://www.pico-8.com
  2. version 16
  3. __lua__
  4. function _init()
  5.  p={}
  6.  p.x=20
  7.  p.y=15
  8. end
  9.  
  10. function drawbck()
  11.  rectfill(0,0,127,127,12)
  12.  map(0,0,0,0)
  13. end
  14.  
  15. function solid(x,y,dr)
  16.  local tilex=((x-(x%8))/8)
  17.  local tiley=((y-(y%8))/8)
  18.  local xm8=x-8
  19.  local ym8=y-8
  20.  if fget(mget(tilex,tiley),0)==false then
  21.   return false
  22.  else
  23.   return true
  24.  end
  25. end
  26.  
  27. function debug()
  28.  print(solid(p.x,p.y,0),0,0,7)
  29.  print(((p.x-(p.x%8))/8),0,6,7)
  30.  print(((p.y-(p.y%8))/8),0,12,7)
  31. end
  32.  
  33. function _update()
  34.  if btn(0) then
  35.   if solid(p.x-1,p.y,0)==false then
  36.    p.x-=1
  37.   end
  38.  end
  39.  if btn(1) then
  40.   p.x+=1
  41.  end
  42.  if btn(2) then
  43.   p.y-=1
  44.  end
  45.  if btn(3) then
  46.   p.y+=1
  47.  end
  48. end
  49.  
  50. function _draw()
  51.  drawbck()
  52.  spr(1,p.x,p.y)
  53.  debug()
  54. end
  55. __gfx__
  56. 00000000077777770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  57. 00000000577707070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  58. 00700700577707070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  59. 00077000577777770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  60. 00077000577777770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  61. 00700700570000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  62. 00000000577777770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  63. 00000000555555500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  64. 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002eeeeeef
  65. 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001222222e
  66. 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001222222e
  67. 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001222222e
  68. 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001222222e
  69. 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001222222e
  70. 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001222222e
  71. 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011111112
  72. 00990000666166660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  73. 00440000555155550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  74. 99aa9900555155550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  75. 99aa9900111111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  76. 00993000166666660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  77. 00440300155555550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  78. 00000300155555550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  79. 00000300111111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  80. __gff__
  81. 0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  82. 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  83. __map__
  84. 1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  85. 1f0000000000002f0c0000000000001f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  86. 1f0000200000002f0c0000000000001f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  87. 1f00001f0000002f000000000000001f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  88. 1f00001f0000002f00001f000000001f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  89. 1f00001f1f1f1f1f00001f000020001f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  90. 1f0000000000000000000000001f1f1f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  91. 1f00000000000000000000000000001f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  92. 1f00000000200000000000000000001f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  93. 1f000000001f1f1f1f1f1f1f1f1f1f1f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  94. 1f000000000000001f2121212121211f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  95. 1f000000000000001f2121212121211f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  96. 1f00000000000000212121212121211f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  97. 1f00000000000000212121212121211f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  98. 1f00000000000000212121212121211f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  99. 1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  100. __sfx__
  101. 000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  102. 00020000256202f620346203460033600336000f6500f6200c000000000c000000000c000000000c000000000c000000001000000000110000000010000000000c000000000c0000000010000000000c00000000
  103. __music__
  104. 00 01424344
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement