📨 Have you signed up to the Forum's new Email Digest yet? Get a selection of trending threads sent straight to your inbox daily, weekly or monthly!

E: 30/9/05 Win Ipod With Walkers Crisps (MERGED)

Options
1252628303142

Comments

  • Damn, i feel sorry for you people who've entered 100+ codes and still didn't win. I tried entering 64 codes into 13 draws between 2 am and 4 am the night after i won and didn't win anything. I must've spent like £15 on this competition already. It's pretty addictive. I'm going to start limiting myself to only entering through the crisp packet codes, or else i'm gonna end up spend a fortune.

    I missed the call for my win and the person didn't call me back. I ended up having to call up the Walkers helpline. I'm sure many other people have had to as well. It's pretty obvious where they're making their money.
  • Whoopee, I'm a winner :)

    Yes, 3.26pm won an Ipod.

    Used a npn code after having changed my tactics. Previously I had entered about 10 codes for some 5 minutes periods, but decided to text 1 code at a time during my working day.

    Had the mobile on silent, so not to have it bleeping all the time in the office, and was lucky enough to see it lit up displaying private number. Answered, not expecting Walkers, but was well pleased.

    Will now have to try and stop texting :lol:

    Johnnypanic
    The person who says it cannot be done should not interrupt the person doing it.
  • aliasojo
    aliasojo Posts: 23,053 Forumite
    Part of the Furniture 10,000 Posts Combo Breaker
    Well done! :)
    Herman - MP for all! :)
  • All the winners listed who have no location next to their name are from London.

    There are quite a lot of them.
    Ah, well that makes more sense! No conspiracy after all then
  • The stats are available again, however they have changed the entry count to a decimal number (to 14 places) and they are changing the multiplier for each day of data. I've been able to work out the following so far (using known correct totals from http://nyx.netherworld.org.uk/ and http://www.wa-kers.h15.ru/cgi-bin/index.cgi)...

    2005/09/01 = 2619.08
    2005/09/02 = 2447.36
    2005/09/03 = 2351.58
    2005/09/04 = 2588.07
    2005/09/05 = 2551.44
    2005/09/06 = 2617.06
    2005/09/07 = 2643.43

    So.. any ideas boys and girls?
  • I'm stuffed eating Pickled Onion crisps.... and I still haven't won an ipod. If they offered eat your weight in crisps and get a free Ipod, I think Walkers would be onto a winner.....
  • bs7
    bs7 Posts: 774 Forumite
    i can't believe what lengths the wa-kers at walkers are going to hide the entries - they've actually re-written the flash script to try and hide it.


    i'm not particularly good with flash but perhaps someone can work out what's going on - here's the script contained in the flash file from http://www.winwithwalkers.com/Flash/WalkersIPod.swf:
    function getLastAvailableDate()
    !!
    	var _l1 = lastDate.split("-");
    	lastDay = Number(_l1[0]);
    	currDayID = lastDay;
    	dataLoader(lastDate);
    } // End of the function
    function dataLoader(date)
    !!
    	var _l1 = date.split("-");
    	currDay = new Date(Number(_l1[2]), Number(_l1[1] - 1), Number(_l1[0]), 0, 0, 0);
    	XMLurl = "http://81.29.80.207/" + createFileName(currDay);
    	myXML = new XMLparserClass();
    	myXML.go(XMLurl, parseData);
    	mcLoader._visible = true;
    	mcDate1._visible = false;
    	mcDate2._visible = false;
    	graph1.clear();
    	graph2.clear();
    	graph3.clear();
    } // End of the function
    function createFileName(date)
    !!
    	y = date.getFullYear();
    	m = date.getMonth() + 1;
    	d = date.getDate();
    	yyyy = y.toString();
    	mm = m < 10 ? ("0" + m.toString()) : (m.toString());
    	dd = d < 10 ? ("0" + d.toString()) : (d.toString());
    	str = yyyy + "_" + mm + "_" + dd + ".xml";
    	return (str);
    } // End of the function
    function initAll()
    !!
    	mcDate1._visible = false;
    	mcDate2._visible = false;
    	if (displayMonth == undefined)
    	!!
    		displayMonth = 9;
    	} // end if
    	displayDay = undefined;
    	displayHour = undefined;
    	numberDaysInMonth = [31, 30, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
    	allData = [];
    } // End of the function
    function parseData()
    !!
    	mcLoader._visible = false;
    	resetGraphData();
    	var _l1 = 0;
    	while (_l1 < Data_Source.length)
    	!!
    		var _l2 = Data_Source[_l1].value.split(",");
    		allData[_l1] = {id: _l1, date: parseDate(_l2[0]), value: Number(_l2[1])};
    		if (Number(allData[_l1].date.month) == displayMonth)
    		!!
    		 graphData_1[Number(allData[_l1].date.day) - 1] = graphData_1[Number(allData[_l1].date.day) - 1] + allData[_l1].value;
    		} // end if
    		_l1++;
    	} // end while
    	createGraph2(allData[0].date.day - 1);
    	delete Data_Source;
    	delete myXML;
    	graph3.clear();
    	mcDate1._visible = true;
    	mcDate2._visible = false;
    } // End of the function
    function parseDate(dateInput)
    !!
    	var _l1 = dateInput.split(":");
    	return ({year: currDay.getFullYear(), month: currDay.getMonth() + 1, day: currDay.getDate(), hour: _l1[0], minute: _l1[1], second: _l1[2]});
    } // End of the function
    function createGraph2(id)
    !!
    	resetGraphData();
    	var _l1 = 0;
    	while (_l1 < allData.length)
    	!!
    		if (Number(allData[_l1].date.day - 1) == id)
    		!!
    		 graphData_2[Number(allData[_l1].date.hour)] = graphData_2[Number(allData[_l1].date.hour)] + allData[_l1].value;
    		} // end if
    		_l1++;
    	} // end while
    	graph2 = new GraphClass(mcGraph2, graphData_2, "month", createGraph3, true);
    	date1 = new DateClass(mcDate1, graph1);
    	date1.displayInfo("month", allData[0].date.day - 1);
    	graph3.clear();
    	mcDate2._visible = false;
    } // End of the function
    function createGraph3(id)
    !!
    	displayHour = id;
    	resetGraphData();
    	var _l1 = 0;
    	while (_l1 < allData.length)
    	!!
    		if (Number(allData[_l1].date.hour) == id && Number(allData[_l1].date.day - 1) == currDayID - 1)
    		!!
    			var _l2 = Math.floor(Number(allData[_l1].date.minute) / 5);
    			graphData_3[_l2] = graphData_3[_l2] + allData[_l1].value;
    		} // end if
    		_l1++;
    	} // end while
    	graph3 = new GraphClass(mcGraph3, graphData_3, "minute", null, false);
    	date2 = new DateClass(mcDate2, graph2);
    	graph2.registerDateHandler(date2);
    } // End of the function
    function resetGraphData()
    !!
    	graphData_1 = [];
    	graphData_2 = [];
    	graphData_3 = [];
    	var _l1 = 0;
    	while (_l1 < numberDaysInMonth[displayMonth - 1])
    	!!
    		graphData_1[_l1] = 0;
    		_l1++;
    	} // end while
    	var _l3 = 0;
    	while (_l3 < 24)
    	!!
    		graphData_2[_l3] = 0;
    		_l3++;
    	} // end while
    	var _l2 = 0;
    	while (_l2 < 12)
    	!!
    		graphData_3[_l2] = 0;
    		_l2++;
    	} // end while
    } // End of the function
    initAll();
    
  • i have noticed that Apple no longer sell mini ipods direct from the web site so the value of these will probily drop very soon.
  • M2R_2
    M2R_2 Posts: 17 Forumite
    This is unbelieveable, looks like people who text @ the most busiest times during the day with 1 code WIN????? but alot of people (like me,) spend loads and still no WIN? !!

    and then its the other type of people who WIN, AND try n Win AGAIN !!! :mad: comon 1's enough surely............i know i would be 4 me :D

    by the way that link Evil_Pika posted is not working.
  • bs7 -> Nice one! I'll take a look at it, see if there's any link to the multiplier in there.
This discussion has been closed.
Meet your Ambassadors

🚀 Getting Started

Hi new member!

Our Getting Started Guide will help you get the most out of the Forum

Categories

  • All Categories
  • 351.1K Banking & Borrowing
  • 253.2K Reduce Debt & Boost Income
  • 453.6K Spending & Discounts
  • 244.1K Work, Benefits & Business
  • 599.1K Mortgages, Homes & Bills
  • 177K Life & Family
  • 257.5K Travel & Transport
  • 1.5M Hobbies & Leisure
  • 16.1K Discuss & Feedback
  • 37.6K Read-Only Boards

Is this how you want to be seen?

We see you are using a default avatar. It takes only a few seconds to pick a picture.