Welcome Guest ( Log In | Register )

Bump Topic Topic Closed RSS Feed
315 Pages « < 225 226 227 228 229 > » Bottom

Outline · [ Standard ] · Linear+

> Lazada Discussion V20 | #BuyFirstRegretLater, lalalaxx.com | pricecampers.com

views
     
monodevil
post Sep 11 2017, 03:03 PM

On my way
****
Junior Member
681 posts

Joined: Sep 2008


QUOTE(budak minyak @ Sep 11 2017, 03:02 PM)
petpet cant use voucher right?
*
drypers still can
shopkawkaw
post Sep 11 2017, 03:03 PM

New Member
*
Newbie
0 posts

Joined: Sep 2017
QUOTE(ziniowong @ Sep 11 2017, 03:02 PM)
im still getting 29% codes.....just keep trying la.....dont need to beg for codes
*
can share again the script for farming? i search from morning till now i still cant find. at least i want to try farming myself

SUSAmeiN
post Sep 11 2017, 03:04 PM

★★★★★★★
*******
Senior Member
4,735 posts

Joined: Feb 2010
From: ★~Starlight~★
QUOTE(michaelpsy13 @ Sep 11 2017, 03:01 PM)
Petpet also not bad and cheaper.

Check out this item I found on Lazada! Petpet Jumbo Pack NB62 (3 + 1 FREE packs)
http://www.lazada.com.my/petpet-jumbo-pack...s-11258283.html

I'm buying this and the m size for my baby next year. Later wait for 29voucher try again.
*
last time using pet pet but then after my baby 7-8m selalu bocor, then change to mamypoko
SUSAmeiN
post Sep 11 2017, 03:05 PM

★★★★★★★
*******
Senior Member
4,735 posts

Joined: Feb 2010
From: ★~Starlight~★
QUOTE(shopkawkaw @ Sep 11 2017, 03:03 PM)
can share again the script for farming? i search from morning till now i still cant find. at least i want to try farming myself
*
ok lah aku spoonfeed hang

QUOTE(Imp Bron @ Sep 10 2017, 02:20 PM)
I use script from here, probably from you, and add it into tempermonkey

Here my latest method

1. Install tempermonkey
2. Click on tempermonkey, create new script, then paste this script(copied from this tered), then saved it
» Click to show Spoiler - click again to hide... «

3. Install SessionBox plugin
4. Open http://www.lazada.com.my/helpcenter/
5. Press Ctrl+Shift+A to open new temporary session tab
6. Press Ctrl+Shit+J to open console
7. Repeat step 5 and 6 until you have how many session tab you want
8. You will get notified, copy the code and close that tab that already get voucher
9. Repeat step 5&6 to create new tab to replace the tab you had closed

*in my computer somehow need to open console for the code to loop more than 1000times. If I dont open console the script stuck at 1000th time. So I add step 6 to solve this.
*
skywys19
post Sep 11 2017, 03:05 PM

Getting Started
**
Junior Member
162 posts

Joined: Sep 2004
From: Kuala Lumpur


Dear All,
Good day. I have tried to follow the script since 2 days ago but so far only get one 5% & one 9% voucher. I am using Chrome without incognito mode to run the script.

May i know is my step wrong in order to run the script? Wondering why no luck to get a single 29kaw voucher? Appreciate your assistance to check my script below.


On Chrome
1. Install tempermonkey
2. Click on tempermonkey, create new script, then paste this script(copied from this tered), then saved it

// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://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() {
getJSON('http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=b5dd7e9dcbde84b3e11a9ae90d377b02&dpr=2').then(function(data) {
if(data.data.voucherCode) {
console.log('Voucher: ' + data.data.voucherCode);
alert('Voucher: ' + data.data.voucherCode);
}
else { console.log('no voucher'); }
}, function(status) { //error detection....
alert('Something went wrong.');
}); }, 1000);

3. Install SessionBox plugin
4. Open http://www.lazada.com.my/helpcenter/
5. Press Ctrl+Shift+A to open new temporary session tab
6. Press Ctrl+Shit+J to open console
7. Wait till been notified for the voucher.

*i have restarted few time modem & desktop.

kanelee
post Sep 11 2017, 03:05 PM

Getting Started
**
Junior Member
123 posts

Joined: Aug 2006
From: Timbuktu


So did anyone used the kaw29 codes twice in one account and didn't get cancelled or so?
peja5081
post Sep 11 2017, 03:06 PM

Getting Started
**
Junior Member
291 posts

Joined: Sep 2007
Attached Image

why i got many error..5k no luck
SUSAmeiN
post Sep 11 2017, 03:07 PM

★★★★★★★
*******
Senior Member
4,735 posts

Joined: Feb 2010
From: ★~Starlight~★
QUOTE(skywys19 @ Sep 11 2017, 03:05 PM)
Dear All,
Good day. I have tried to follow the script since 2 days ago but so far only get one 5% & one 9% voucher. I am using Chrome without incognito mode to run the script.

May i know is my step wrong in order to run the script? Wondering why no luck to get a single 29kaw voucher? Appreciate your assistance to check my script below.
On Chrome
1. Install tempermonkey
2. Click on tempermonkey, create new script, then paste this script(copied from this tered), then saved it

// ==UserScript==
// @name        New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author      You
// @match        http://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() {
getJSON('http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=b5dd7e9dcbde84b3e11a9ae90d377b02&dpr=2').then(function(data) {
if(data.data.voucherCode) {
console.log('Voucher: ' + data.data.voucherCode);
alert('Voucher: ' + data.data.voucherCode);
}
else { console.log('no voucher'); }
}, function(status) { //error detection....
alert('Something went wrong.');
}); }, 1000);

3. Install SessionBox plugin
4. Open http://www.lazada.com.my/helpcenter/
5. Press Ctrl+Shift+A to open new temporary session tab
6. Press Ctrl+Shit+J to open console
7. Wait till been notified for the voucher.

*i have restarted few time modem & desktop.
*
u r missing no 8

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


SUSAmeiN
post Sep 11 2017, 03:08 PM

★★★★★★★
*******
Senior Member
4,735 posts

Joined: Feb 2010
From: ★~Starlight~★
QUOTE(peja5081 @ Sep 11 2017, 03:06 PM)
Attached Image

why i got many error..5k no luck
*
normal
limtenggen
post Sep 11 2017, 03:08 PM

Getting Started
**
Junior Member
142 posts

Joined: Mar 2014
From: Johor Baharu


QUOTE(skywys19 @ Sep 11 2017, 03:05 PM)
Dear All,
Good day. I have tried to follow the script since 2 days ago but so far only get one 5% & one 9% voucher. I am using Chrome without incognito mode to run the script.

May i know is my step wrong in order to run the script? Wondering why no luck to get a single 29kaw voucher? Appreciate your assistance to check my script below.
On Chrome
1. Install tempermonkey
2. Click on tempermonkey, create new script, then paste this script(copied from this tered), then saved it

// ==UserScript==
// @name        New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author      You
// @match        http://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() {
getJSON('http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=b5dd7e9dcbde84b3e11a9ae90d377b02&dpr=2').then(function(data) {
if(data.data.voucherCode) {
console.log('Voucher: ' + data.data.voucherCode);
alert('Voucher: ' + data.data.voucherCode);
}
else { console.log('no voucher'); }
}, function(status) { //error detection....
alert('Something went wrong.');
}); }, 1000);

3. Install SessionBox plugin
4. Open http://www.lazada.com.my/helpcenter/
5. Press Ctrl+Shift+A to open new temporary session tab
6. Press Ctrl+Shit+J to open console
7. Wait till been notified for the voucher.

*i have restarted few time modem & desktop.
*
if u got code means your on the right track

luck is what u lack lol


skywys19
post Sep 11 2017, 03:08 PM

Getting Started
**
Junior Member
162 posts

Joined: Sep 2004
From: Kuala Lumpur


Noted with thank. I will continue wait the luck till tonight. Thanks
taitianhin
post Sep 11 2017, 03:08 PM

Look at my STARS, it never burn out
******
Senior Member
1,523 posts

Joined: Apr 2005
From: too far to see


QUOTE(ziniowong @ Sep 11 2017, 03:02 PM)
im still getting 29% codes.....just keep trying la.....dont need to beg for codes
*
Actually wat if the 29% code? any sos ? how to do thta...sorry late here
Can share 1? hehe
limtenggen
post Sep 11 2017, 03:09 PM

Getting Started
**
Junior Member
142 posts

Joined: Mar 2014
From: Johor Baharu


QUOTE(AmeiN @ Sep 11 2017, 03:07 PM)
u r missing no 8

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

*
how to install luck script ?
dagnarus
post Sep 11 2017, 03:09 PM

Casual
***
Junior Member
328 posts

Joined: Jul 2008


Anyone with experience buying a fitness cycle from Lazada? There seems to be quite a few of same design from the same OEM sold there, the one with the flywheel. Looks very nice, but there are not many reviews on there.... cost only like ~rm400
SUSTheHitman47
post Sep 11 2017, 03:10 PM

Nuke
******
Senior Member
1,053 posts

Joined: Sep 2009
From: In Your Mind



QUOTE(limtenggen @ Sep 11 2017, 03:09 PM)
how to install luck script ?
*
type "ON LUCK" send to 32288
limtenggen
post Sep 11 2017, 03:10 PM

Getting Started
**
Junior Member
142 posts

Joined: Mar 2014
From: Johor Baharu


QUOTE(kanelee @ Sep 11 2017, 03:05 PM)
So did anyone used the kaw29 codes twice in one account and didn't get cancelled or so?
*
i only use once so....

till now my order not yet been cancel
hanazismadi
post Sep 11 2017, 03:10 PM

New Member
*
Newbie
1 posts

Joined: Dec 2008
QUOTE(limtenggen @ Sep 11 2017, 03:09 PM)
how to install luck script ?
*
Me 2 want to know no 8
limtenggen
post Sep 11 2017, 03:11 PM

Getting Started
**
Junior Member
142 posts

Joined: Mar 2014
From: Johor Baharu


QUOTE(TheHitman47 @ Sep 11 2017, 03:10 PM)
type "ON LUCK" send to 32288
*
SCAM ! bruce.gif
syukaro
post Sep 11 2017, 03:12 PM

secret spy
******
Senior Member
1,681 posts

Joined: Feb 2012
From: : : :



QUOTE(skywys19 @ Sep 11 2017, 03:05 PM)
Dear All,
Good day. I have tried to follow the script since 2 days ago but so far only get one 5% & one 9% voucher. I am using Chrome without incognito mode to run the script.

May i know is my step wrong in order to run the script? Wondering why no luck to get a single 29kaw voucher? Appreciate your assistance to check my script below.
On Chrome
1. Install tempermonkey
2. Click on tempermonkey, create new script, then paste this script(copied from this tered), then saved it

// ==UserScript==
// @name        New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author      You
// @match        http://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() {
getJSON('http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=b5dd7e9dcbde84b3e11a9ae90d377b02&dpr=2').then(function(data) {
if(data.data.voucherCode) {
console.log('Voucher: ' + data.data.voucherCode);
alert('Voucher: ' + data.data.voucherCode);
}
else { console.log('no voucher'); }
}, function(status) { //error detection....
alert('Something went wrong.');
}); }, 1000);

3. Install SessionBox plugin
4. Open http://www.lazada.com.my/helpcenter/
5. Press Ctrl+Shift+A to open new temporary session tab
6. Press Ctrl+Shit+J to open console
7. Wait till been notified for the voucher.

*i have restarted few time modem & desktop.
*
just luck. the only time i got over 4 29kaw in few hours is during saturday midnight when there's less people trying.
Jo@NJS
post Sep 11 2017, 03:13 PM

On my way
****
Junior Member
534 posts

Joined: Dec 2004


Anyone bought slow juicer machine lately? If got, can give some reviews pls XD

315 Pages « < 225 226 227 228 229 > » 
Bump Topic Topic ClosedOptions New Topic
 

Change to:
| Lo-Fi Version
0.0347sec    0.72    6 queries    GZIP Disabled
Time is now: 10th December 2025 - 02:41 PM