LoginLogin
Nintendo shutting down 3DS + Wii U online services, see our post

Def codes for making codes

Root / General / [.]

randoCreated:
I made a way to print text that is rotated 90° and 270° of (probably) any length, which can be positioned like with LOCATE. It was surprisingly simple to make, and I don't think it's been done before. I am currently developing a two-player game with it, each player using their half of the 3DS to control their character.
COMMON DEF PRINTR X,Y,TEXT$
 ATTR 1
 FOR I=0 TO LEN(TEXT$)
  LOCATE X,Y+I:PRINT MID$(TEXT$,I,1)
 NEXT
 ATTR 0
END

COMMON DEF PRINTL X,Y,TEXT$
 ATTR 3
 FOR I=LEN(TEXT$) TO 0 STEP -1
  LOCATE X,Y-I:PRINT MID$(TEXT$,I,1)
 NEXT
 ATTR 0
END

I am currently developing a two-player game with it, each player using their half of the 3DS to control their character.
Just thought i'd let you know, but that is not an original idea. an actual game for the 3DS, Called Bomb Monkey did the same thing in its two-player modes.

Just thought i'd let you know, but that is not an original idea. an actual game for the 3DS, Called Bomb Monkey did the same thing in its two-player modes.
I meant the function, I haven't seen anyone show something like this before, so I decided to.

DEF RAINBACKGROUND
 BGMPLAY"@266V50[C1]
END