Skip to content

Instantly share code, notes, and snippets.

@walfie
Last active March 8, 2017 05:51
Show Gist options
  • Save walfie/5bcb1472a9541c4df3d98b1be2863e55 to your computer and use it in GitHub Desktop.
Save walfie/5bcb1472a9541c4df3d98b1be2863e55 to your computer and use it in GitHub Desktop.
Granblue reroll bookmarks and bookmarklets

Granblue reroll bookmarks and bookmarklets

Some useful bookmarklets which may or may not still work.

GBF Wiki Guide

https://gbf.wiki/Rerolling

Register

Visit page in device emulation mode (Chrome dev tools)

http://gbf.game.mbga.jp

Quick fill registration

javascript:(function() { function set(name, value) { document.querySelector('[name='+name+']').value = value }; set('nickname', "InsertNameHere"); set('subject_password', 'InsertPasswordHere'); set('subject_password_for_confirmation', 'InsertPasswordHere'); set('year', '1969'); set('month', '4');  set('day', '20'); document.querySelector('[for="receive_mail_magazine"]').click() }());

Main page

http://game.granbluefantasy.jp

Increment page by 1

javascript:(function() { var page = parseInt(window.location.href.split('/').slice(-1).pop()); window.location.href = window.location.href.replace(page, page+1) }());

Serial code page

http://game.granbluefantasy.jp/#serialcode

Insert serial codes

After using the bookmarklet below, you may have to click each input individually, and manually type something (anything) to get the button to be enabled.

Serial code 1

javascript:(function() { 'j5pa mkru 2vcx 4cr8'.split(' ').forEach(function(x, i) { document.querySelector('[name=alphanumeric'+ (i+1) + ']').value = x; }) }());

Serial code 2

javascript:(function() { 'yrwg yv8m cck2 wcbf'.split(' ').forEach(function(x, i) { document.querySelector('[name=alphanumeric'+ (i+1) + ']').value = x; }) }());

Log out

https://ssl.sp.mbga.jp/_logout

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment