
Mine

149 bytes smaller then the orginal.
on calc it seems faster, flash debugger is jumpy i guess.
I will post the zip, but i need a hoster or info on how to host

Moderator: tr1p1ea
thanks
thankyou, not much was done there just no need for the keypress to be stored in a var. b/c it runs with the ans, and instead of useing if x=0 use if not(x and well i tried to change the detection a little, but as said before his code is hardTreefrog wrote:Tried it out on an 83+. Runs a lot faster, so no more annoying slowdown.
Nice Job!
Ohhh lol i thought it was with the code theretr1p1ea wrote:Well you were never supposed to use the existing code, thats there as an example for those who arent BASIC guru's ... as in it doesnt have any speed optimisations or anything.
Nice job too!.
tr1p would you have a msn account or gtalk? and what does everyone else thing? am i the only one who has tried?kalan_vod wrote:Ohhh lol i thought it was with the code theretr1p1ea wrote:Well you were never supposed to use the existing code, thats there as an example for those who arent BASIC guru's ... as in it doesnt have any speed optimisations or anything.
Nice job too!.
, and thanks
.......what i win j/k id like to know how you came up with all the logic with the bolean expressions its well
(twisted smile)
Code: Select all
While 1
getkey->K
If K=42
Then
...
End
If K=25
Then
...
End
...
...
End[quote][/quote]
after i had touched it i did this also, but it made it alot slower and bigger, and also it looked alot more complicated b/c of all the ifs thens ends etc.dysfunction wrote:Actually tr1p, your code is difficult to understand, perhaps someone should write an unoptimized, simple version, using very structured code such as
Code: Select all
While 1 getkey->K If K=42 Then ... End If K=25 Then ... End ... ... End[quote][/quote]