Re: copy an embelm
hi,
Exporting an emblem
- Log into BF4 Battlelog.
- Visit the Customize emblem page.
- Select the emblem you wish to export.
- Open the console (Ctrl-Shift-J).
- Enter the following code snippet to copy the raw emblem data to the clipboard:
copy('emblem.emblem.load('+JSON.stringify(emblem.emblem.data,null,2)+');'); - Paste somewhere useful, like a gist. Whatever.
- Close the console (Ctrl-Shift-J).
and for importing
Importing an emblem
- Log into BF4 Battlelog.
- Visit the Customize emblem page.
- Click the "+ ADD" button to create a new, blank, emblem.
- Open the console (Ctrl-Shift-J).
- Paste the contents of a previously-exported emblem into the console and press Enter, making sure you get everything, from the emblem.emblem.load to the ending ;. (You should now see the emblem loaded with all its layers)
- Close the console (Ctrl-Shift-J).
- Click the "SAVE & USE" button in the top right.