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.

EG01

From ATITD6
Revision as of 13:41, 5 November 2012 by Strutter (talk | contribs)
Jump to navigationJump to search

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


loadfile("luaScripts/screen_reader_common.inc")();
loadfile("luaScripts/ui_utils.inc")();
loadfile("luaScripts/common.inc")();
loadfile("luaScripts/serialize.inc")();
loadfile("luaScripts/settings.inc")();
loadfile("luaScripts/constants.inc")();
rows = 5;
columns = 6; 
firstx =  200;
firsty = 166;
incx = 82; 
incy = 82;
x = 0;
y = 0;
function doit()
askForWindow(

"Make sure your chats are minimized, you are in the F8F8 view, " .. "and you can see all your pottery wheels then hover ATITD window and press Shift to continue."); lsSleep(150);


x = firstx;

 	y = firsty;

	for row =1, rows do
  
 		for column=1,  columns do
   			checkBreak(); 
    
    			srSetMousePos(x , y);
    			lsSleep(150);
   			srKeyEvent("t");
    			lsSleep(150);
   			srKeyEvent("j");
    			x = x + incx;
    			lsSleep(150);
  		end
   		x = firstx;
   		y = y + incy;
	end
end