0


Text Commands
Code:textCommand() { text = []; text[1] = "Your Text Here"; text[2] = "Your Text Here"; text[3] = "Your Text Here"; text[4] = "Your Text Here"; text[5] = "Your Text Here"; for(;;) { self iPrintInBold( text[1] ); wait 10; self iPrintInBold( text[2] ); wait 10; self iPrintInBold( text[3] ); wait 10; self iPrintInBold( text[4] ); wait 10; self iPrintInBold( text[5] ); wait 10; } }
Last edited by zF A; 07-04-2013 at 01:09 PM.
Wont work you messed up on the first bracket![]()
;)Code:textCommand() { text = []; text[1] = "Your Text Here"; text[2] = "Your Text Here"; text[3] = "Your Text Here"; text[4] = "Your Text Here"; text[5] = "Your Text Here"; for(i=1;i<6;i++) { self iPrintInBold( text[i] ); wait 10; } }
Mine works to. Mine is = to the text[] so it reads it.
iPrint takes an argumental value, so you have to put it in the parenthesis.
Bookmarks