Welcome Guest ( Log In | Register )

Bump Topic Topic Closed RSS Feed
5 Pages  1 2 3 > » Bottom

Outline · [ Standard ] · Linear+

> Lazada Discussion V23 | #ScamMYUniverse #LazadaOR, lalalaxx.com | pricecampers.com

views
     
akib_mullen
post Oct 26 2017, 01:23 AM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


Any nice inverter aircond 1 hp to buy? Wanna wishlist preparing for 11.11
akib_mullen
post Oct 29 2017, 10:48 AM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(happymonk @ Oct 29 2017, 08:41 AM)
Hi guys, how does does Maybank card statement reflect the Maybank Installment from Lazada? Let's say I purchase last month.
*
Something like lazada malaysia ec12 - 001/012 if you take 12 mths
akib_mullen
post Nov 1 2017, 01:33 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(BenYeeHua @ Nov 1 2017, 08:18 AM)
It means the link that you provided in the script is old url(api), you should update it with latest url.
Same, got 1 10 %, then nothing come out, maybe the voucher is finish and waiting for refuel.

---
Anyways, I post the code that I changed a bit to compatible with Python 3.x, hope the original coder don't mind. smile.gif
PS: The header user-agent will be MS Edge, you can change it to different browser and Windows, just in case.
PS2: Got multi-space before the code, when you copy the code, ensure there is space in front.

Spin.
» Click to show Spoiler - click again to hide... «


View.
» Click to show Spoiler - click again to hide... «

*
why i got this

can't open file 'spin.py': [Errno 2] No such file or directory
akib_mullen
post Nov 1 2017, 03:02 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(BenYeeHua @ Nov 1 2017, 01:40 PM)
Just saying, using browser script is using the same cookies, which means that, it is same as running 1 python script window+change the interval to spin the next round. icon_rolleyes.gif

So, you can just change the 1000ms interval to something like 10ms, then it is the same effect as opening multiple tab.
---
And also, running one python script only required like 20MB and 1% cpu usage, which I think you should try setup by follow the youtube video for better performance. thumbup.gif
It means the file is not under the same directory that your CMD is currently at, and you can just double click the spin.py to run, if you install Python 3.x wink.gif
Yup, it means Lazada server can't handle it. rclxub.gif
*
C:\Python27>python spin.py
python: can't open file 'spin.py': [Errno 2] No such file or directory

I think in the file already
akib_mullen
post Nov 1 2017, 04:12 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(mroys@lyn @ Nov 1 2017, 04:10 PM)
i got 1 29OR11 and 2 11OR11, started mining at 1pm, using python.
*
did you follow the youtube steps? the status code?
try to find previous V22 V21 but cant find
akib_mullen
post Nov 1 2017, 04:21 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(mroys@lyn @ Nov 1 2017, 04:20 PM)
Yes, i setup based on the youtube for 9/9 code and now i just replace the .py file with current code (copied from somewhere in this V23).
*
the status code you wait after your spin.py got code?

akib_mullen
post Nov 1 2017, 04:24 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(mroys@lyn @ Nov 1 2017, 04:23 PM)
ya, need modify status code but the codes are stored in voucherCodeHi.txt, unsorted
*
can share me the modified status code?
akib_mullen
post Nov 1 2017, 04:29 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(mroys@lyn @ Nov 1 2017, 04:27 PM)
i changed the line in bold but doesn't work so i forget about it.

import time
def sotar(linee):
  if linee == '':
      return False
  for symbols in linee.split(":")[3].replace(' ', ''):
      if symbols == '-':
          return False
  else:
      return True
def main():
  f = open("voucherCodeHi.txt", "r")  # bukak file output
  vcl = f.read().split('\n')  # bahagi setiap line dalam voucher file ke dalam satu list dalam ni --> vcl
  sotared = {'10':[],'11':[],'15':[],'29':[]}  # tempat barang disusun
  for line in vcl:  # untuk loop ni kiter guna line kiter jadi ni --> Mon Oct 02 23:47:04 2017 :  5CYBERhiahia
      if sotar(line):  # selalunya kalu aku bukak voucher file pastu aku guner aku letak '-' kat hujung line tu mcm 'Mon Sep 11 07:01:47 2017 :  19KAWa6u98a -sedekah' nmpk ade dash kat situ, maka kalu ade dash dalam satu line tu akan membawa maksud yang bahawa voucher tu aku dah guna/ambik bagi orang
          vc = line.split(":")[3].replace(' ', '')  # buat line jadi ['Mon Oct 02 23', '47', '04 2017 ', '5CYBERhiahia'] pastu kiter buang space dlm vc[3](tu tempat voucher kiter tersimpan)
          y = []  # bapak ah
          for w in vc:  # ambek setiap huruf/nombor dlm vc[3] iaitu '5CYBERhiahia'
              if not w.lower() == 'c':  # biler kene w jadi C nanti dlm list y ade nombor jah
                  y.append(w)
              else:  # biler dah kene c maksud nya kiter dah ambek percentage voucher tu dalam kes ni bende tu 5% so dalam y ade ['5'] , kalau 12 nanti dlm y ade ['1', '2']
                  sotared[''.join(y)].append(vc)  # kalu dlm y ade ['5'] nanti line ni membawa maksud sotared['5'].append(vc) lepastu [].append(vc) --> {'5':['5CYBERhiahia']}
                  break  # pastu sambung kepade line seterus nya

  f.close()  # lepas habis susun semua voucher dalam vc, tutup file lame pastu bukak file baru untuk disusun untuk senang mata memandang mcm https://i.imgur.com/LztFyLz.png
  f = open("vouncherSortedHi.txt", 'w')  # dari sini, fhmlah kamu dengan sendirinya
  for i in sotared:


      f.write(i+"%"+" %i " % (len(sotared[i]))+"\n\n")
      for magic in sotared[i]:
          f.write(magic+"\n")
      f.write("\n\n")
  f.close()
  print time.ctime(int(time.time()))
  print "~====STATUS====~"
  for key in sotared:
      print str(key)+": "+str(len(sotared[key]))
  print "~=END OF STATS=~"
  time.sleep(1800)

while 1:
  main()
*
thanks

akib_mullen
post Nov 1 2017, 05:00 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


Demi aircond untuk anak ku gagahi mining jua
akib_mullen
post Nov 1 2017, 05:01 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(raptar_eric @ Nov 1 2017, 05:00 PM)
run for 5 hours liao... only got 1 10% code so far.. better than ntg biggrin.gif

» Click to show Spoiler - click again to hide... «

*
why you change the file name. can just use same notepad?
akib_mullen
post Nov 1 2017, 06:49 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


Actually how to see whether I got voucher using python? Is the counter reset to 0?
akib_mullen
post Nov 1 2017, 07:00 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(BenYeeHua @ Nov 1 2017, 06:56 PM)
It will works, based on how often I am getting the voucher, I guess 0.00000000000000001% both of them will write to the same file, and one getting failed to write.
Unless you are that unlucky man, I don't think that will be a issues. laugh.gif

Anyways, for real, I am doing that and so far this is not happen to me yet. icon_rolleyes.gif
Reset to 0 after 1500 spin, which will get new cookies for another 1500 spin.

For view, you can just open the voucherCodeHi.txt, or run the view.py one, the view.py will report error if you don't has that text file.
*
Where can i find the vouchercodehi.txt or view.py?
akib_mullen
post Nov 1 2017, 07:07 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(BenYeeHua @ Nov 1 2017, 07:04 PM)
When you get the voucher, the txt will be created and written into it, so if you still don't has that txt, then no voucher is obtain yet.

For the view.py, err... It is provided before, but as long as you has little voucher, it is not required to use it for view. unsure.gif
Ya, best time is within 6 hours after event start, then all the script start spinning up after that time. rclxub.gif
*
the txt will be created when running the first script (based on youtube video) or the second script?
If txt created on second script, the second script run after got code right?
akib_mullen
post Nov 1 2017, 07:18 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(kopiride @ Nov 1 2017, 07:16 PM)
Guys, anyone can explain
What is the use of status python? (Referring to the youtube video). I manage to get the spin.py to work. It says after code is shown i need to run status.

2. Can i run multiple cmd prompt with spin.py?
*
No.1, still need someone to answer that

No.2, I run multi cmd with same spin.py. But just now I make spin2.py spin3.py run multi cmd with different spin.py, idk if there any differences
akib_mullen
post Nov 1 2017, 07:25 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(BenYeeHua @ Nov 1 2017, 07:20 PM)
First script, the second one only can run after the first script mined voucher and auto created voucherCodeHi.txt
But you can also manual create a empty voucherCodeHi.txt, then run the second script too, just it will show empty voucher.
*
Just let it run when got code and it will stop right?
akib_mullen
post Nov 1 2017, 07:30 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(BenYeeHua @ Nov 1 2017, 07:29 PM)
Nope, it will run infinity, until you close the window. thumbup.gif
*
So, when got code it will still running, but the voucher txt generated in the python folder, am I right?
akib_mullen
post Nov 1 2017, 07:36 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(BenYeeHua @ Nov 1 2017, 07:34 PM)
Yup, 2x 10 and 2x 11 doh.gif Yup, unless you put it into some folders like program file, then it should be fine.
*
Your help is greatly appreciated
akib_mullen
post Nov 1 2017, 07:39 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(Enigmatic @ Nov 1 2017, 07:36 PM)
Let me know if you still don't get any 29s by the 11th.
*
He helps a lot. No marah2 teaching. Can be teacher biggrin.gif
akib_mullen
post Nov 2 2017, 02:42 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


Python script stop counting
akib_mullen
post Nov 2 2017, 03:46 PM

On my way
****
Senior Member
691 posts

Joined: Jul 2011


QUOTE(BenYeeHua @ Nov 2 2017, 02:55 PM)
Just do this, comment this line.
CODE
//alert('Voucher: ' + data.data.voucherCode);

No need, it just use Firefox useragent and report to the server.
Means it lag on waiting the reply on network.
It is used similar like bookmarks, mainly for testing the code, you can run directly too, that is not a issues. wink.gif
https://developers.google.com/web/tools/chr...vtools/snippets
*
If lag the counter will be counting again but nope. I close all cmd open back then okay

5 Pages  1 2 3 > » 
Bump Topic Topic ClosedOptions New Topic
 

Change to:
| Lo-Fi Version
0.1165sec    0.81    7 queries    GZIP Disabled
Time is now: 2nd December 2025 - 11:28 PM