0

Change the ‘go’ button from looping infinitely (‘forever’) to running for 1000 ticks.

How do I do that?

BigM
  • 11
  • 3

1 Answers1

1

One way, based on pure ticks:

to setup
  ca
  reset-ticks
end

to go 
  if ticks = 1000 [ stop ]
  ; Actions here
  tick
end
Luke C
  • 10,081
  • 1
  • 14
  • 21