27-11-2008, 05:40 PM
Fox Wrote:Looked like that was what you were doing until Kraft cleaned it up.
Didn't understand The "For" command as much as I do right now ">.>
Is this the proper way to receive it
Quote:For i = 1 To 3
Pokemon(n).DefaultMove(i) = Val(Parse(i + 8))
Next i
For i = 1 To 10
Pokemon(n).LearnMove(i) = Val(Parse(i + 9))
Pokemon(n).LearnLevel(i) = Val(Parse(i + 10))
Next i
edit;
Code:
For i = 1 To 3
Pokemon(n).DefaultMove(i) = Val(Parse(i + 8))
Next i
For i = 1 To 10
Pokemon(n).LearnMove(i) = Val(Parse((i * 2) + 11))
Pokemon(n).LearnLevel(i) = Val(Parse((i * 2) + 11))
Next i