Position: Home page » Equipment » Automatic mining script

Automatic mining script

Publish: 2021-04-17 11:50:49
1. Almsgiver, you think too much. The studio has a hook for automatic mining, but at that time, hang, hang, you know,,,,
2. The color of the system is 32-bit, and the size of the game window is 800x600 by default (otherwise, the coordinates of the automatic complement will be wrong). After starting, you can drag the window away, but you can't minimize it. First of all, the character stands in the middle of the grid, face down (in fact, it's the same everywhere). When starting, the mouse point is at the foot of the character, as shown in the red dot. As long as it's at the foot, it doesn't need to be precise. Find the location of the point for the script to complete. Need 361 background mouse and keyboard plug-in version 5, & quot; BGKM5.dll" This thing can be downloaded from the forum and put into the plugin directory / / of course, the first thing is to get the window handle. Pay attention to the difference between the two methods: plugin hwnd1 = window. Foreground() / / the window handle obtained by the above sentence can move the window, but you can't click the mouse on the window. Plugin hwnds1 = window. Mousepoint() / / now use the handle obtained by this sentence, You can click the mouse in the window, but you can't move the window / / so, if you need to move the window, you should use hwnd1 as the handle, and click hwnds1 / / of course, the size of the window obtained by these two methods is the same, so the calculation of coordinates doesn't matter / / get the mouse position and convert it to the window coordinates vbsclall GetCursorPos (xget, yget) Plugin clixy=BGKM5.ScrToCli(hwnds1,xget,yget) VBSCall MyArray1=split(clixy,"|& quot;,- 1,1) VBSCall x=CInt (MyArray1 (0)) VBSCall y=CInt (MyArray1 (1)) / / script started looking for the precise mining point LockMouse MoveR 60,0 / / locked mouse, and moved the mouse away, to prevent the color of mining hoe, "mining" such words affect the color judgment to judge Plugin Plugin. 000000") // Take the first point of the mouse as the upper left corner, and look for black in the range of 4x32 / / the purpose of doing this is to find the first black point in the parcel lattice, so it is required to open the parcel to display wkxyarray = split (wkxy, & quot|& quot;,- 1,1) HSX = wkxyarray (0) HSY = wkxyarray (1) REM look for the mining point / / after finding the black point, take the colors of the left, right and upper left points of the point respectively / / for the specific relative coordinates, see plugin colorzu = bkgndcolor. Getpixelcolor (hwnds1, hsx-4, HSY) plugin coloryou = bkgndcolor. Getpixelcolor (hwnds1, HSX + 4, HSY) in the script, hsy) Plugin colorzuoshang=BkgndColor.GetPixelColor(hwnds1,hsx-4, (hsy-2) / / the purpose is to find the two black dots at the bottom of the current grid / / if you zoom in, you can clearly see that the border of the grid is composed of black dots if colorzu = 0 XWK = hsx-2 YWK = HSY goto find ENDIF if coloryou = 0 XWK = HSX + 2 YWK = HSY goto find ENDIF / / no matter the dot on the left or right is black, Prove that the bottom of the grid has been found / / define the exact coordinates of the mining point (XWK, YWK) and jump out to judge / / in the case that the left and right sides are not black, it means that they are not the bottom of the grid / / at this time, the point in the upper left corner or the upper right corner must be black / / if the point in the upper left corner is black, it means that the point is above the left, and move the coordinates of the point down to the right, Continue to judge / / if the upper left corner is not black, then the upper right corner must be black. If colorzuoshang = 0 delay 10 HSX = HSX + 4 HSY = HSY + 2 goto search for the mining point else HSX = hsx-4 HSY = HSY + 2 goto search for the mining point ENDIF / / the purpose of setting this mark is to release the mouse / / the mouse can move back to the original position, Because it's back-end REM that finds mover - 60,0 unlockmouse REM and starts mining, Gosub / / select hoe (F1) plug in bgkm5.keyclick (hwnds1112) delay 100 / / mining plug in bgkm5.mmove (hwnds1, XWK, YWK) plug in bgkm5.lclick (hwnds1, XWK, YWK) / / delay time can be modified by yourself, or set delay 6800 with custom variable at the beginning / / click 4 times below, Click once on each of the four corners of the grid to get the ore / / after the test, including the common roles of men and women and the diced beans, it's OK to plug in bgkm5. Mmove (hwnds1, XWK, YWK) plug in bgkm5. Lclick (hwnds1, XWK, YWK) delay 80 plug in bgkm5. Mmove (hwnds1, XWK, ywk-30) plug in bgkm5. Lclick (hwnds1, XWK, ywk-30) delay 80 plug in bgkm5. Mmove (hwnds1, XWK + 15, ywk-20) plug in bgkm5. Lclick (hwnds1, XWK, ywk-30) delay 80 plug in bgkm5, XWK + 15, ywk-20) delay 80 plug in bgkm5.mmove (hwnds1, xwk-15, ywk-20) plug in bgkm5.lclick (hwnds1, xwk-15, ywk-20) delay 80 / / switching food once, as everyone knows, is to prevent people from twitching caused by continuous mining. Plug in bgkm5.keyclick (hwnds1113) delay 200 goto starts mining / / physical strength supplement sub physical strength plug in color7 = bkgndcolor.getpixelcolor (hwnds1, 90, 62) / / choose the color of 90 or 60, which is about 10% of your physical strength. You can modify it yourself / / if the color is black, eat blood if color7 = 2106400 / / choose the food (F2) plugin bgkm5. Keydown (hwnds1113) plugin bgkm5. Keyup (hwnds1113) delay 200 / / click "eat" plugin bgkm5. Mouse (hwnds1,0570507) plugin bgkm5. Mouse (hwnds1,1570507) plugin bgkm5. Mouse (hwnds1,2570, 0507) plugin bgkm5, 507) delay 1800 / / select the hoe again, plug bgkm5. Keydown (hwnds1112) plug bgkm5. Keyup (hwnds1112) ENDIF return. In the case of good network, this script is very stable, no mine will be missed, and no character will move because of taking mine. Although the part of judging mining point is relatively long, it can ensure that the mouse position is very random when you start, As long as it is OK at the foot of the character, it is very easy to use, and the judgment process can be completed in a very short time, without any impact. In the process of script execution, the judgment will only be executed once, and the subsequent continuous mining process is very smooth! Hope to help you --- reprint Bruce Lee textbook

please adopt, thank you!
3. I'd like to introce you to the new blockbuster online game. Easy to use. huge crowds of people. Free forever Fairway will open at 2 p.m. this month (Saturday, the 10th). Wuzhuangguan (Netcom) in the new area will enter the game. Don't forget to ask Tang Seng to write the promotion number tg1732. Oh, "letter TG plus number 1732" to send a valuable gift bag. Gold account binding method: fill in the promotion number tg1732, giant promotion number tg1732, dragon soul promotion number tg1732. After entering the game, find "Tang Seng" (the first NPC "Tang Seng") to select the third item, and fill in the recommendation number tg1732 to get the extra value props from the system. Continue to choose "Tang Seng" to choose the first item to fill in the novice card: mt2qbz can get 100 free points and other game props, a total of 520 yuan gift bag, so that you don't have to spend money in the early stage can also play strange practice level happy game. Do not forget to write Xiantu promotion number tg1732 giant: to create the role of that page, click on the upper right corner "recommend" word, if you enter the game without "recommend" word. In the settings, set the resolution to 1024 * 768. Click "recommend" and fill in the giant promotion number tg1732 (letter TG plus number 1732). After confirmation, your number will become a gold account Before generating characters, click "recommend" to add a promotion number. If the character has been successfully created, it can't be bound with a gold account number.) dragon soul: in the upper left corner of the character building interface, there is a "promoter account" to fill in the dragon soul promotion number tg1732, and then click the letter Y to get a big gift bag. If you enter the game, there is no "recommend" word. In the settings, set the resolution to 1024 * 768. The answer is not to brush points. Just to let more friends join our online game world, it's very hard for you. If you don't see a satisfactory answer, please accept my answer and support me. I hope friends can understand each other. I hope you can try it in the game, and you will get something If you fill in the promotion number tg1732 "letter TG plus number 1732" in any of the three games, you can get a valuable gift package. Promotion number can be used indefinitely
4. The concept of bitcoin was first proposed by Nakamoto in 2009. According to Nakamoto's idea, open source software was designed and released, and P2P network was built on it. Bitcoin is a kind of P2P digital currency. Point to point transmission means a decentralized payment system
unlike most currencies, bitcoin does not rely on specific currency institutions. It is generated by a large number of calculations based on specific algorithms. Bitcoin economy uses a distributed database composed of many nodes in the whole P2P network to confirm and record all transactions, and uses cryptography design to ensure the security of all aspects of currency circulation.
5. Now mining can make money, but need professional mining equipment, ordinary computer, don't waste time and energy. You won't get a bitcoin in a year

mining is a process of consuming computing resources to process transactions, ensuring network security and keeping everyone's information synchronized in the network. It can be understood as the data center of bitcoin. The difference lies in its completely decentralized design. Miners operate all over the world, and no one can control the network. This process is called "mining" because it is similar to gold panning, because it is also a temporary mechanism for issuing new bitcoin. However, unlike gold panning, bitcoin mining provides rewards for services that ensure the safe operation of payment networks. After the last bitcoin, mining is still necessary

more news about bitcoin can be found on bitcoin home.
6. Twilight forest mining, generally a hole above, dig for a while, there will be another hole
7. Lock is related to the ticket lock for a period of time, is not trading, lock is generally the main adjustment, some dangerous. It's better to make a postcard or a new activity. You can go to aibaopen, deep culture and other websites.
8. You download the script, click open, and then open the fantasy startup script. If there is an error, log in again. The script of automatic mining may bring some side effects, such as things change shape, bread gems turn into iron ores... It's possible...
9. You can't roll. one hundred and twenty-three thousand one hundred and twenty-three
10. I haven't played it before. I'll make a simple one myself. What others do will be charged. Or I'll enter a game group and ask if others have it?
Hot content
Inn digger Publish: 2021-05-29 20:04:36 Views: 341
Purchase of virtual currency in trust contract dispute Publish: 2021-05-29 20:04:33 Views: 942
Blockchain trust machine Publish: 2021-05-29 20:04:26 Views: 720
Brief introduction of ant mine Publish: 2021-05-29 20:04:25 Views: 848
Will digital currency open in November Publish: 2021-05-29 19:56:16 Views: 861
Global digital currency asset exchange Publish: 2021-05-29 19:54:29 Views: 603
Mining chip machine S11 Publish: 2021-05-29 19:54:26 Views: 945
Ethereum algorithm Sha3 Publish: 2021-05-29 19:52:40 Views: 643
Talking about blockchain is not reliable Publish: 2021-05-29 19:52:26 Views: 754
Mining machine node query Publish: 2021-05-29 19:36:37 Views: 750