Hate to be that one person but,
_iPhoenix_ wrote:
The increment and decrement operations are not possible without assembly, C, or potentially ICE subprograms. I have listed several issues with them before.
I made it in BASIC
_iPhoenix_ wrote:
1) Detection. How do you know if I used the ++ or — operators in my program? If I have to call a program every time, I’d rather just use (var)+1->(var)
inString(Str1,"++
_iPhoenix_ wrote:
2) The -> Character. You cannot put the -> character into a string, so using methods like what Kerm suggested is not feasible.
Then just use the long route: If Then Else Loops with proper Ends:
Code: If inString(Str1,"++
Then
increment
Else:If inString(Str1,"--"
Then decrement
End:End
_iPhoenix_ wrote:
3) Execution. No matter how you do it, using the increment or decrement operators is going to take more time than “the current method”.
See #4's comment
_iPhoenix_ wrote:
4) Usage. They simply aren’t all that useful. I can easily do it in a smaller way, and you can too.
Is there anything wrong in making it unique? Besides, I don't think anyone else has done so before!
**SM84CE hides
Code: Monkey Drawer code
[[20,20,20,20,21,20,20,19,13,13,20,20,20,20,20,20][20,20,20,20,20,21,21,19,19,19,19,20,20,20,20,20][20,20,20,20,20,20,20,19,13,13,20,20,20,20,20,13][20,20,20,20,13,20,20,20,19,13,13,20,13,13,20,13][20,20,13,13,20,13,20,13,13,13,13,13,13,13,13,13][20,13,20,21,20,20,13,13,20,20,20,13,13,20,13,13][20,13,21,12,20,12,13,20,20,20,20,20,13,20,20,13][13,13,20,20,20,12,13,20,20,20,21,20,13,20,20,20][20,13,21,12,20,12,13,20,20,20,20,20,13,20,20,13][20,13,20,21,20,20,13,13,20,20,20,13,13,20,13,13][20,20,13,13,20,13,20,13,13,13,13,13,13,13,13,13][20,20,20,20,13,20,20,20,13,13,13,20,13,13,20,13][20,20,20,17,20,20,20,13,13,13,20,20,20,20,20,13][20,20,14,14,14,20,20,13,13,20,20,20,20,20,20,20][20,17,17,17,14,17,13,13,20,20,20,20,20,20,20,20][20,20,14,14,17,20,20,20,20,20,20,20,20,20,20,20]]->[A]
[A]->[B]
[A]^^T->[A]
For(X,1,16
For(Y,1,16
Pxl-On(X+78,Y+A,[A](X,Y
End
End
What I'm trying to do is to take the pixel version (run the code to see it) then blow it up by a factor of 3. That is what I'm trying to put on the graphscreen, via the use if pt-On('s
Any way to do this with a pt-On( ?? My attempts don't work, I've tried transpose the rowSwap, but it doesn't work. Any help?