Welcome Guest ( Log In | Register )

Bump Topic Topic Closed RSS Feed
206 Pages « < 7 8 9 10 11 > » Bottom

Outline · [ Standard ] · Linear+

> Lazada Discussion V22 | #MYCyberSCAM, lalalaxx.com | pricecampers.com

views
     
cyril_fong
post Oct 3 2017, 05:04 PM

Getting Started
**
Junior Member
68 posts

Joined: Apr 2010
QUOTE(AmeiN @ Oct 3 2017, 05:00 PM)
SCRIPT

TAG: script tampermonkey tamper monkey spin spinner autospin
*
Attached Image

Like this? Consider spinning?
Keatsan
post Oct 3 2017, 05:05 PM

If it ain't broke, don't 6ix it
******
Senior Member
1,218 posts

Joined: Jan 2010
From: Today 06.09 am
QUOTE(AmeiN @ Oct 3 2017, 05:00 PM)
SCRIPT

TAG: script tampermonkey tamper monkey spin spinner autospin
*
HASHTAG MANA? HASHTAGGGG
whilly
post Oct 3 2017, 05:06 PM

Getting Started
**
Junior Member
99 posts

Joined: May 2007


QUOTE(cyril_fong @ Oct 3 2017, 05:04 PM)
Attached Image

Like this? Consider spinning?
*
Use the script in v21
SUSAmeiN
post Oct 3 2017, 05:07 PM

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

Joined: Feb 2010
From: ★~Starlight~★
QUOTE(Keatsan @ Oct 3 2017, 05:05 PM)
HASHTAG MANA? HASHTAGGGG
*
this nub forum where got that function..owaaaaaaaaiiii

user posted image
SUSAmeiN
post Oct 3 2017, 05:08 PM

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

Joined: Feb 2010
From: ★~Starlight~★
QUOTE(cyril_fong @ Oct 3 2017, 05:04 PM)
Attached Image

Like this? Consider spinning?
*
lol forgot thats for old spinner innocent.gif whistling.gif
sendohz
post Oct 3 2017, 05:10 PM

Regular
******
Senior Member
1,361 posts

Joined: May 2006


satu 5% satu 12%
cyril_fong
post Oct 3 2017, 05:11 PM

Getting Started
**
Junior Member
68 posts

Joined: Apr 2010
QUOTE(AmeiN @ Oct 3 2017, 05:08 PM)
lol forgot thats for old spinner  innocent.gif  whistling.gif
*
var i = 0;
setInterval(function() {
$.getJSON('http://www.lazada.com.my/ajax/lottery/spinTheWheel/?lang=en&platform=desktop&wheelToken=1e48eefec55aba8b941095da02508bbf&dpr=2', 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);

Found this on v21 but cannot save on tempermonkey.
Showing me invalid userscript doh.gif
skycrew
post Oct 3 2017, 05:12 PM

-sKy-
*****
Junior Member
928 posts

Joined: Nov 2006
From: Today, 08:30 PM
nah

CODE

5CYBERo5hxlu
5CYBERrbpfyt
5CYBERihyo4x
5CYBERft371i


3 12% punya simpan dulu.

farming 10% jap
alexander3133
post Oct 3 2017, 05:13 PM

Regular
******
Senior Member
1,716 posts

Joined: May 2006
From: JDT


Spoon feed time?

CODE

// ==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=1e48eefec55aba8b941095da02508bbf&dpr=desktop', 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);



rayken
post Oct 3 2017, 05:13 PM

Getting Started
**
Junior Member
165 posts

Joined: Jan 2003
LOL cyber sales also havent start but the wheel can spin LOL

fulltimekiller86
post Oct 3 2017, 05:13 PM

New Member
*
Junior Member
42 posts

Joined: Nov 2015


wah, new thread again! huat! biggrin.gif
cyril_fong
post Oct 3 2017, 05:14 PM

Getting Started
**
Junior Member
68 posts

Joined: Apr 2010
QUOTE(alexander3133 @ Oct 3 2017, 05:13 PM)
Spoon feed time?

CODE

// ==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=1e48eefec55aba8b941095da02508bbf&dpr=desktop', 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);

*
Thanks bro,just realized I have erased the first phase doh.gif
1qaz1qaz
post Oct 3 2017, 05:17 PM

What Are You Looking At???!
******
Senior Member
1,894 posts

Joined: Jul 2011
From: Heaven in Hell
lol hahaha
any good deal/code for coming cyber sale?
rayken
post Oct 3 2017, 05:24 PM

Getting Started
**
Junior Member
165 posts

Joined: Jan 2003
QUOTE(1qaz1qaz @ Oct 3 2017, 05:17 PM)
lol hahaha
any good deal/code for coming cyber sale?
*
29 again maybe
rhytion
post Oct 3 2017, 05:24 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(rayken @ Oct 3 2017, 05:24 PM)
29 again maybe
*
Where got 29? Unless not from spin wheel brows.gif
Uchiha_Itachi1991
post Oct 3 2017, 05:27 PM

Regular
******
Senior Member
1,095 posts

Joined: Mar 2012
From: Cyberjaya, Selangor


QUOTE(rayken @ Oct 3 2017, 05:24 PM)
29 again maybe
*
http://www.lazada.com.my/mycybersale/
only got 10% and 12% la.... the only hope left for this event is see what is on sale or their flash sale.... i bet most ppl already starting to miss the 19KAW code d that they threw away d... whistling.gif whistling.gif
1qaz1qaz
post Oct 3 2017, 05:31 PM

What Are You Looking At???!
******
Senior Member
1,894 posts

Joined: Jul 2011
From: Heaven in Hell
QUOTE(rayken @ Oct 3 2017, 05:24 PM)
29 again maybe
*
pusing agian ar? biggrin.gif drool.gif
jianqiang
post Oct 3 2017, 05:38 PM

Getting Started
**
Junior Member
78 posts

Joined: Jul 2013
QUOTE(Uchiha_Itachi1991 @ Oct 3 2017, 05:27 PM)
http://www.lazada.com.my/mycybersale/
only got 10% and 12% la.... the only hope left for this event is see what is on sale or their flash sale.... i bet most ppl already starting to miss the 19KAW code d that they threw away d...  whistling.gif  whistling.gif
*
maybe those xxKAW codes can be used in this cyber sale....who knows Laz is so desperate for sales figure whistling.gif whistling.gif whistling.gif
rhytion
post Oct 3 2017, 05:41 PM

Casual
***
Junior Member
389 posts

Joined: Oct 2016
From: Kota Kinabalu


QUOTE(jianqiang @ Oct 3 2017, 05:38 PM)
maybe those xxKAW codes can be used in this cyber sale....who knows Laz is so desperate for sales figure  whistling.gif  whistling.gif  whistling.gif
*
I did get some KAW vouchers from the wheel when the spin first started, but I don't think they'll work.
pcboss00
post Oct 3 2017, 05:44 PM

Getting Started
**
Junior Member
177 posts

Joined: Jul 2013
advice needed.
I want to buy PS4. buy now or better wait for cybersale?

206 Pages « < 7 8 9 10 11 > » 
Bump Topic Topic ClosedOptions New Topic
 

Change to:
| Lo-Fi Version
0.0279sec    0.90    6 queries    GZIP Disabled
Time is now: 30th November 2025 - 08:31 PM