by DirtyRoboto » Wed Nov 29, 2006 7:35 pm
by DirtyRoboto
Wed Nov 29, 2006 7:35 pm
Here is my code for making a standard RN1 beat like a little drummer boy. If you have standard plastic insert hands then try this code.
If you have hand alterations then inspect the code first and make any alterations you need if you see numbers that go over your bots limit.
Here is the code. Enjoy.
'=======================================
'drum move. ### created by Marcus Aka DirtyRoboto 28th November 2006
www.robosavvy.com forum member###
'Taken from TestBed_001.bas
drum:
DIM xx AS BYTE
DIM yy AS BYTE
DIM pp AS INTEGER
SPEED 10
MOVE24 102, 94, 112, 106, 99, 100,143, 23, 93, 100, 100, 100,139, 30, 89, 100, 100, 100,103, 91, 112, 108, 97, 100
MOVE G6B,127, 19, 65, 100, 100, 100
MOVE G6C,130, 30, 62, 100, 100, 100
SPEED 15
FOR yy = 3 TO 10
pp = 8000 / yy
FOR xx = 1 TO yy
MOVE G6B,121, 19, 65, 100, 100, 100
MOVE G6B,127, 19, 65, 100, 100, 100
MOVE G6C,125, 30, 62, 100, 100, 100
MOVE G6C,130, 30, 62, 100, 100, 100
NEXT xx
DELAY pp
NEXT yy
SPEED 8
MOVE24 102, 94, 112, 106, 99, 100,143, 23, 93, 100, 100, 100,139, 30, 89, 100, 100, 100,103, 91, 112, 108, 97, 100
WAIT
RETURN
'=======================================
Here is my code for making a standard RN1 beat like a little drummer boy. If you have standard plastic insert hands then try this code.
If you have hand alterations then inspect the code first and make any alterations you need if you see numbers that go over your bots limit.
Here is the code. Enjoy.
'=======================================
'drum move. ### created by Marcus Aka DirtyRoboto 28th November 2006
www.robosavvy.com forum member###
'Taken from TestBed_001.bas
drum:
DIM xx AS BYTE
DIM yy AS BYTE
DIM pp AS INTEGER
SPEED 10
MOVE24 102, 94, 112, 106, 99, 100,143, 23, 93, 100, 100, 100,139, 30, 89, 100, 100, 100,103, 91, 112, 108, 97, 100
MOVE G6B,127, 19, 65, 100, 100, 100
MOVE G6C,130, 30, 62, 100, 100, 100
SPEED 15
FOR yy = 3 TO 10
pp = 8000 / yy
FOR xx = 1 TO yy
MOVE G6B,121, 19, 65, 100, 100, 100
MOVE G6B,127, 19, 65, 100, 100, 100
MOVE G6C,125, 30, 62, 100, 100, 100
MOVE G6C,130, 30, 62, 100, 100, 100
NEXT xx
DELAY pp
NEXT yy
SPEED 8
MOVE24 102, 94, 112, 106, 99, 100,143, 23, 93, 100, 100, 100,139, 30, 89, 100, 100, 100,103, 91, 112, 108, 97, 100
WAIT
RETURN
'=======================================