Created
October 5, 2017 08:57
-
-
Save lnksz/fc88cdb99afe221e2e080121c453b563 to your computer and use it in GitHub Desktop.
Jinx!Script for Manuel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: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