...
READ WHAT I POSTED
http://villavu.com/forum/showthread....11#post1083911
Simba Code:
repeat //repeats stuff until "until" is true.
if not FindNormalRandoms then //if your player is stuck in a random, stop the script
break;
GameTab(Tab_Magic); //moves to magic tab
Mouse(x, y, xe, ye, true); //clicks alch symbol at point(x, y) (You have to get the coordinates)
Wait(RandomRange(300, 600)); //waits for between .3 and .6 seconds
GameTab(Tab_Inv); //Makes sure the tab open is inventory;
Mouse(x, y, xe, ye, true) //Clicks item to alch
Wait(RandomRange(1200, 1800)); //waits while your player alches
until (Not loggedIn); //script will end if your player is logged out for whatever reason.