-
|
GitMyCode, could you walk me though the source code of your fishing bot? I am currently learning C# and wanted to pick apart your source code, however, I do not know where to start. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Well honestly this is a bit vague :) i wouldn't know how to start, what to explain or how. But the gist of it is Like any wpf app the starting point is Good luck and have fun |
Beta Was this translation helpful? Give feedback.
Well honestly this is a bit vague :) i wouldn't know how to start, what to explain or how.
Like everything you want to learn in general i would suggest you to start with something you understand and know you can build. Then go with something little bit more complicated after gaining experience.
But the gist of it is Like any wpf app the starting point is
MainWindow.xaml.cswhen you click to run the bot it will start the loop in
Bot.csthat launch the state machineFishingMachine.csi over complicated it with a state machine but in short this take snapshot of a part of the screen and search for the pixel of the hook you selected. this search is done in
SearchWithDeltaEColorCompare.csthe l…