Hi,
Thank YOU very much for the script but with final update of the game, dock procedure is not working anymore :(. I dont know how to modify RGB or something from there.
Can you do something about that ?
THANKS ! :)
Thank YOU very much for the script but with final update of the game, dock procedure is not working anymore :(. I dont know how to modify RGB or something from there.
Can you do something about that ?
THANKS ! :)
Quote:
I created a bot for the facebook game Trainstation. U might want to adjust it to personalize it for ur own needs. But it is a good start for botting on any facebook game, that requires the same actions over and over again. Or/And color depending clicks/keyinputs.
Feel free to use it :):):):) I wrote the script in ACTool so u will need to download ACTool from [Only registered and activated users can see links. Click Here To Register...]
I got alot of questions about the script and people tell me it doesnt work. If u want help to set up the trainstation bot, just pm me or connect to my teamspeak flum.aionallstars.com:11807
Code:(* Train station script 1.0 by flum Have problems or questions feel free to contact me on teamspeak 3 Address: flum.aionallstars.com:11807 -Functions Send your trains out every 10 minutes + goes to docking to click on the trains. Delete flags for you. Send international trains to your favs. -Requirements Screen resolution 1366 768 Chrome or Firefox. The 1 click passenger and cargo upgrade for ur station. -Run notes Start the script first, then within 5 sec open trainstation fullscreen. -Config notes If u set constants delflag 0 to anything else it will start to delete the amount of flags from the giftbox. Change internation 0 if u dont want to send int trains. Changelog 0.2 send trains every 10 min 0.3 minor bug fixes 0.4 added del flag function 0.5 changed flag function for easy use 0.6 send int function added 0.7 click dockin station implemented 0.8 color check implemented for better check 0.9 changed mouse cord. for int trains 1.0 code clean up *) constants delflag = 0 main = 1 // dont change this value end delay 5 sec call main //call test //-----Send Trains and ints to fav and check dock procedure main call flag while $main = 1 MousePos 976, 659 //1st train call cc MousePos 989, 646 call cc MousePos 990, 634 call cc MousePos 992, 622 call cc MousePos 992, 614 call cc MousePos 59, 83 call click delay 5 sec MousePos 422, 219 call click call intcheck call dock end end //-----Delete flags and dont run the main script procedure flag if $delflag > 0 set main = 0 MousePos 71, 717 call click MousePos 807, 238 call click loop $delflag MousePos 387, 420 call click MousePos 734, 492 call click end else end end //-----Send International Train To Fav procedure intcheck delay 3 sec LoadRGB 462, 334 if {RGBBlue} = 140 MousePos 462, 334 //slot 1 delay 1 sec DragTo 510, 314 //drag to send call click MousePos 604, 348 //favs call click MousePos 603, 373 //new select fav call click MousePos 798, 630 //send call click MousePos 799, 595 //confirm call click delay 2 sec call intcheck else MousePos 473, 631 //close call click end end //-----check if dock is avaiable, if yes send them out procedure dock LoadRGB 156, 77 if {RGBGreen} = 143 MousePos 156, 77 call click delay 3 sec MousePos 961, 665 call click MousePos 961, 659 call click MousePos 963, 653 call click MousePos 963, 644 call click MousePos 963, 637 call click MousePos 27, 714 //home call click delay 2 sec else end end //------ checks if train window for sending normal trains is open if yes send for 10 min. procedure getcolor delay 2 sec LoadRGB 836, 150 if {RGBGreen} = 232 SayPaste load train screen found MousePos 528, 425 call click else // SayPaste Red {RGBRed} Blue {RGBblue} Green {RGBGreen} end end procedure cc call click call getcolor end procedure click leftclick delay 1 sec end