Saturday, May 14, 2011

Unlock All Levels In Angry Birds

Its being few days since Angry Birds was made available in Chrome App Store and now there is a hack which can unlock all the levels in the game. If you are a fan of Angry birds, then this hack goes for you. When hacked, it enables all levels to play regardless of whether you have actually completed preceding levels or not.

Copy and paste and go the following code in the address bar to unlock all levels in Angry Birds.

javascript: var i = 0; while (i<=69) { localStorage.setItem('level_star_'+i,'3'); i++; } window.location.reload();


Use the following codes below to lock all the level again to it play state.

javascript: var i = 0; while (i<=69) { localStorage.setItem('level_star_'+i,'-1'); i++; } window.location.reload();

javascript: localStorage.setItem('level_star_0','0'); window.location.reload();

It is also possible to hack your score in Angry birds to a record breaking of 1000000.

javascript: var i = 0; while (i<=69) { localStorage.setItem('level_score_'+i,'1000000'); i++; } window.location.reload();

Modify the "1000000" to your desired score.

To revert the score back to zero, use the the code below.

javascript: var i = 0; while (i<=69) { localStorage.setItem('level_score_'+i,'0'); i++; } window.location.reload();

Enjoy playing all the levels in Angry Birds

No comments: