The Wiki for Tale 6 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

Difference between revisions of "EG01"

From ATITD6
Jump to navigationJump to search
m
m
Line 9: Line 9:
 
* delicate/fracture
 
* delicate/fracture
 
* fracture/delicate  cyan outer stamen IR
 
* fracture/delicate  cyan outer stamen IR
 +
 +
 +
constants
 +
  row = 5
 +
  column = 6
 +
 
 +
 
 +
  firstx =  200
 +
  firsty = 166
 +
  incx = 82 //265, 340
 +
  incy = 82
 +
  x = 0
 +
  y = 0
 +
end
 +
loop 10
 +
  compute x = $firstx
 +
  compute y = $firsty
 +
 
 +
  loop $row
 +
   
 +
    loop $column
 +
     
 +
      timestamp $row $column $x $y
 +
      mousepos $x , $y
 +
      delay 150
 +
      keys t
 +
      delay 50
 +
      keys j
 +
      compute x = $x + $incx
 +
      delay 150
 +
    end
 +
    compute x = $firstx
 +
    compute y = $y + $incy
 +
  end
 +
  delay 65000
 +
  bell
 +
 +
end

Revision as of 02:42, 4 November 2012

Eastern grounds toxin 1

  • silken/Vampire no change /io missing?
  • vampire/silken iy missing? /no change
  • Blush/Energy no change /north petal lost yellow GRRO
  • energy/blush no change on either
  • clarity/crown north became reddish/
  • crown/clarity /north became blueish
  • delicate/fracture
  • fracture/delicate cyan outer stamen IR


constants

 row = 5
 column = 6
 
 
 firstx =  200
 firsty = 166
 incx = 82 //265, 340
 incy = 82
 x = 0
 y = 0

end loop 10

 compute x = $firstx
 compute y = $firsty
 
 loop $row
   
   loop $column
     
     timestamp $row $column $x $y
     mousepos $x , $y
     delay 150
     keys t
     delay 50
     keys j
     compute x = $x + $incx
     delay 150
   end
   compute x = $firstx
   compute y = $y + $incy
 end
 delay 65000
 bell

end