Skip to content

Instantly share code, notes, and snippets.

@lnksz
Created October 5, 2017 08:57
Show Gist options
  • Save lnksz/fc88cdb99afe221e2e080121c453b563 to your computer and use it in GitHub Desktop.
Save lnksz/fc88cdb99afe221e2e080121c453b563 to your computer and use it in GitHub Desktop.
Jinx!Script for Manuel
:init
config start_x = 0
config start_y = 0
config end_x = 59
config end_y = 9
config speed_step = 3
pos_x = start_x
pos_y = start_y
end
:render
clear
pset pos_x, pos_y, 255, 255, 255
if pos_x >= end_x
pos_x = 0
if pos_y < end_y
pos_y = pos_y + 1
else
pos_y = 0
endif
endif
pos_x = pos_x + speed_step
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment