Welcome Guest ( Log In | Register )

Bump Topic Topic Closed RSS Feed

Outline · [ Standard ] · Linear+

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

views
     
lyc1982
post Nov 1 2017, 10:43 AM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(shihnobie @ Nov 1 2017, 10:37 AM)
it's not broken. u must use http not https.
*
mine also using https...but getting same error
lyc1982
post Nov 1 2017, 10:51 AM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(shihnobie @ Nov 1 2017, 10:46 AM)
u mean http? to be clear, the page that u open, in which the code is inserted, must be http.
*
i see...

so where will the codes be saved ?

lyc1982
post Nov 1 2017, 10:55 AM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(BenYeeHua @ Nov 1 2017, 10:52 AM)
Tampermonkey
*
thanks !

QUOTE(Mrsaitama @ Nov 1 2017, 10:53 AM)
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.lazada.com.my/helpcenter/
// @grant none
// ==/UserScript==

var getJSON = function(url) {
return new Promise(function(resolve, reject) {
var xhr = new XMLHttpRequest();
xhr.open('get', url, true);
xhr.responseType = 'json';
xhr.onload = function() {
var status = xhr.status;
if (status == 200) {
resolve(xhr.response);
} else {
reject(status);
}
};
xhr.send();
});
};

setInterval(function() {
jQuery.getJSON('https://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=7b03cfa1ba0da7194d771e2d262f54fc&dpr=1', function(data){
if(data !== undefined) {
if(data.data.voucherCode) {
console.log('Voucher: ' + data.data.voucherCode);
alert('Voucher: ' + data.data.voucherCode);
}
else {
console.log('Please wait...');
}
}
}
); }, 1000);

anyone got voucher from this code? mine still not found 1
*
mine still farming...none so far

lyc1982
post Nov 1 2017, 11:17 AM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(BenYeeHua @ Nov 1 2017, 11:06 AM)
Yup, tampermonkey.

And for people that want to run on non-Admin user, just download the zip file here.(Windows x86 embeddable zip file)
You can download x86-64 if the Windows is 64 bit.

Python 3.x
https://www.python.org/downloads/release/python-363/

Use the code that I provide before, then follow the YouTube video, and done.
Err, nope, it will save as voucherCodeHi.txt, at the same folder that you save and run the x.py

Unless you are talking about tampermonkey, then it will only record on the F12(dev console).
*
i am using tampermonkey method...so far none voucher code

if managed to score one...will it be recorded visibly on the dev console ? or will it be hidden ?
lyc1982
post Nov 1 2017, 01:44 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(bighead.23 @ Nov 1 2017, 12:54 PM)
any professional here can pm me 29% code ? Wants to buy a new phone for my dad
*
i was wondering when will this start...

ppl have been sharing ways to spin the wheel and yet some still wanna be spoonfed without any efforts






let me join the bandwagon:

any kind soul can pm me few 29% codes ?

i want to buy new fridge for mother
i want to buy new wallet for father
i want to buy new phone for brother
i want to buy new watch for sister
lyc1982
post Nov 1 2017, 01:54 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(bighead.23 @ Nov 1 2017, 01:51 PM)
Duhh, i really tried but failed with the python, im not and expert and im really looking to buy redmi note 4 to replace my dad's galaxy duos
*
dduhhh...i am also noob in IT...but do you see me beg ?

there's other way apart from python
lyc1982
post Nov 1 2017, 03:04 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(sendohz @ Nov 1 2017, 02:30 PM)
i opened 5 tabs. Two tabs got voucher then i close it.
After that add another session this error came out and the script does not run on the console.
*
just wanna check...you using tampermonkey o python ?
lyc1982
post Nov 1 2017, 03:23 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(maxera @ Nov 1 2017, 03:13 PM)
1. Install sessionbox extensions on Chrome
2. Copy this code
var i = 0;
setInterval(function() {
$.getJSON('http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=2566d34226c6835fc7ebeebe8d2fc7a4&dpr=1', function(data){
i++
if(data != undefined) {
if(data.data.voucherCode) {
console.log('Voucher: ' + data.data.voucherCode);
alert('Voucher: ' + data.data.voucherCode);
}
else {
console.log('no voucher');
}
document.getElementsByClassName("breadcrumb__item-text")[1].innerHTML = 'Help Center on Lazada Malaysia - Spins: ' + i;
}
}
); }, 1000);
3. Right click on any lazada page and choose Inspect
4. Choose "Sources" tab and create new snippet.
5. Paste the code on the right.
6. Right click the new snippet and click Run.

EDIT : Make sure to run the code in Sessionbox tab.
*
ok found the create new snippet option

This post has been edited by lyc1982: Nov 1 2017, 03:23 PM
lyc1982
post Nov 1 2017, 03:48 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(maxera @ Nov 1 2017, 03:13 PM)
1. Install sessionbox extensions on Chrome
2. Copy this code
var i = 0;
setInterval(function() {
$.getJSON('http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=2566d34226c6835fc7ebeebe8d2fc7a4&dpr=1', function(data){
i++
if(data != undefined) {
if(data.data.voucherCode) {
console.log('Voucher: ' + data.data.voucherCode);
alert('Voucher: ' + data.data.voucherCode);
}
else {
console.log('no voucher');
}
document.getElementsByClassName("breadcrumb__item-text")[1].innerHTML = 'Help Center on Lazada Malaysia - Spins: ' + i;
}
}
); }, 1000);
3. Right click on any lazada page and choose Inspect
4. Choose "Sources" tab and create new snippet.
5. Paste the code on the right.
6. Right click the new snippet and click Run.

EDIT : Make sure to run the code in Sessionbox tab.
*
followed your step by step method...clicked Run...but nothing is happening...odd

EDIT: i realize i can only run 1 tab sessionbox at a time...

This post has been edited by lyc1982: Nov 1 2017, 03:52 PM
lyc1982
post Nov 1 2017, 04:02 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(fuzzy @ Nov 1 2017, 03:59 PM)
So it won't be tracked as multiple tab from the same ip, rather each is track as individual. If you use usual manner, you open 10 tabs if one kena, the rest considered kena so all invalid. This one, the other 9 continues.
*
i tried to open 2 tabs with sessionbox...but the 2nd tab sessionbox is not green (not farming voucher at all) while 1st tab is showing green...

any solution ?

got this message:
You've reached the limit of free synced sessions
Upgrade for unlimited sync.

This post has been edited by lyc1982: Nov 1 2017, 04:03 PM
lyc1982
post Nov 2 2017, 10:51 AM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(metrytobenice @ Nov 1 2017, 10:57 PM)
working spinning script

[attachmentid=9293671]
*
can copy and paste the script here ...?

QUOTE(b0rhui @ Nov 2 2017, 12:03 AM)
Yup. If voucher appears it will be logged next line under the no voucher
*
so help centre page has higher chance than the wheel spinning paege ?
lyc1982
post Nov 2 2017, 12:46 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(sendohz @ Nov 2 2017, 12:14 PM)
Hi just want to ask if anyone encountered your browser tab refreshed while mining using sessiontab?

Is it because i did not retrieve any voucher code and it refresh>?
*
mine also same...

the sessionbox console closed...no codes nothing
lyc1982
post Nov 5 2017, 10:41 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(Maxieos @ Nov 5 2017, 08:32 PM)
How is the gift card works ? If buy item price above RM 110 but using RM 100 gift card , what about the balance ?
*
lel
lyc1982
post Nov 6 2017, 11:55 AM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(chicaman @ Nov 6 2017, 11:30 AM)
Actually, this 11.11 is so stupid, you need to have voucher to purchase.

Unlike Black Friday / Cyber Monday and 11.11 in China. Usually the store itself provide Price Cut directly, no need funky voucher and waste time & resource to spin that crap.
*
what do you mean ?
i thought can buy on 11/11 without any voucher ?
lyc1982
post Nov 11 2017, 12:58 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
so many beggars...beggars everywhere

nenek emak setori all come out
lyc1982
post Nov 11 2017, 01:07 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(life27 @ Nov 11 2017, 01:05 PM)
I need 29% code , need to buy a tablet , please share to my inbox too, ty
*
i need to buy 10x tablets for my family too...

poorfag here
lyc1982
post Nov 11 2017, 01:09 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(khainiz94 @ Nov 11 2017, 01:07 PM)
Wah. Poorfag tapi beli 10 tablet.
*
hence i need 10x 29% codes loh...
lyc1982
post Nov 11 2017, 11:53 PM

ExpectNoMercy
*******
Senior Member
2,329 posts

Joined: Jun 2015
QUOTE(Room237 @ Nov 11 2017, 11:50 PM)
LZORDG32weno

15% off last digi code. Use fast!
*
capped at ?

Bump Topic Topic ClosedOptions New Topic
 

Change to:
| Lo-Fi Version
0.1170sec    0.53    7 queries    GZIP Disabled
Time is now: 8th December 2025 - 11:48 AM