We present our new product at turbosmurfs.gg, unranked fresh lol
accounts with
pre-defined skins, you get all the benefits from our other products, but with your selected skin,
you can pick
from all leauge of legends skins.
We want to inform you about the recent changes in Riot's ban system.
Lately, we've noticed an increase in account bans.
It's crucial to understand that not every account is affected,
as it is not a ban wave, but rather a more stringent enforcement system targeting rule violators, this affects all account sellers, not only Turbosmurfs.
Transparency is essential to us, and we must be honest about the situation. We cannot guarantee the safety of our botted accounts we provide due to the current state of affairs.
Therefore, we have to lower our botted accounts warranty to 7 days.
We value our customers' trust and believe in being straightforward with you. If you still wish to proceed and take the risk, you can continue with the purchase at your discretion.
During this period, botted accounts will only come with a 7 day warranty, skin accounts will have 14 day warranty, handleveled accounts remains at lifetime.
An alternative we strongly suggest is purchasing a hand-leveled account. Use the discount code Hand20 to get a 20% discount.
$(document).ready(function() {
$.get('/api/authenticated').then(response => {
if(response !== 'false') {
$("#auth_bar").html(response);
const avatar = $(".header-avatar").attr('src');
$(".comment-avatar").attr('src', avatar);
}
(function () {
const header = $('.js-header'),
popup = header.find('.avatar_popup'),
icon = header.find('.header__avatar');
icon.on('click', function (e) {
e.stopPropagation();
popup.toggleClass('visible');
});
$(document).on('click', 'body', function (e) {
if (!$(e.target).is('.visible'))
popup.removeClass('visible');
})
}());
});
})
$('#subscribeBlogForm').submit(function(e) {
e.preventDefault();
const email = $("#emailSubscribeBlog").val();
$.post('/api/subscribe', {
email
}).then(response => {
$("#subscribeBlogForm").hide();
$(".subscribe-success").show();
});
});
let regions = {
'RU': 'Russia (RU)',
'EUW': 'Europe West (EUW)',
'ME': 'Middle East (ME)',
'EUNE': 'Europe Nordic and East (EUNE)',
'NA': 'North America (NA)',
'TR': 'Turkey (TR)',
'OCE': 'Oceania (OCE)',
'BR': 'Brazil (BR)',
'LAS': 'Latin America South (LAS)',
'LAN': 'Latin America North (LAN)',
};
var productRegion = '';
var productName = '';
var price = '';
var productId = '';
var category = '';
var quantity = 1;
var bottedWarning = false;
function addToCart(region, productName, price, productId, category, quantity) {
dataLayer.push({ ecommerce: null });
dataLayer.push({
event : "add_to_cart",
ecommerce: {
items: [{
item_name : productName, // Name or ID is required.
item_id : productId,
price : price,
currency: "EUR",
item_brand : region,
item_category : category,
item_variant : "",
item_list_name: "",
item_list_id : "",
index : 0,
quantity : quantity,
}]
}
});
}
function checkoutEvent(region, productName, price, productId, category, quantity) {
dataLayer.push({ ecommerce: null });
dataLayer.push({
event : "checkout",
ecommerce: {
items: [{
item_name : productName, // Name or ID is required.
item_id : productId,
price : price,
currency: "EUR",
item_brand : region,
item_category : category || "",
item_variant : "",
item_list_name: "",
item_list_id : "",
index : 0,
quantity : quantity,
}]
}
});
}
$('body').on('click', '.order_now', function(e) {
productRegion = $(this).data('region');
productName = $(this).attr('product-name');
price = $(this).attr('unit-price');
productId = $(this).attr('product-id');
category = $(this).data('category');
$(".second_step").removeClass('show active');
$(".first_step").addClass('show active');
$('.apply-coupon').show();
$('#product_name').text($(this).attr('product-name'));
$('#unit_price').text($(this).attr('unit-price'));
$('#total').text($(this).attr('unit-price'));
$('#product_id').val($(this).attr('product-id'));
$('#quantity').attr('max', $(this).attr('max'));
$("#current_region").text(regions[$(this).data('region')]);
$(".ranked-warning").hide();
if (productName.includes('Marvel Rivals') || productName.includes('FragPunk') || productName.includes('Valorant')) {
if (!productName.includes('Ranked Ready')) {
$('.apply-coupon').hide();
}
}
if($(this).attr('product-type') === 'skin') {
$(".skin-info").show();
$("#current_be").text('40-60K');
$("#current_skin").text($(this).data('skin'));
$("#skin_tier").text($(this).data('skin-tier'));
$(".quantity-area").hide();
$('#skin_id').val($(this).data('skin-id'));
$(".skin-warning").show();
} else {
var be = $(this).data('slug');
var be = be.split('-');
if(Number.isInteger(parseInt(be[0]))) {
$("#current_be").text(be[0]);
$("#account_type").text('Unranked');
} else {
$("#current_be").text('30000');
$("#account_type").text('Handleveled');
}
}
if(productName.toLowerCase().includes('handleveled')
|| productName.toLowerCase().includes('valorant')) {
$("#warranty").text('Lifetime');
if (!productName.toLowerCase().includes('valorant')) {
$('.rank-ready-link').attr('href', `https://turbosmurfs.gg/product/handleveled-mmr-accounts`)
}
} else {
if ($(this).attr('product-type') === 'skin') {
$("#warranty").text('14 Days Warranty');
} else {
$("#warranty").text('7 Days Warranty');
}
if (!productName.toLowerCase().includes('valorant')) {
$('.rank-ready-link').attr('href', `https://turbosmurfs.gg/product/30k-be-2300-mmr-${productRegion.toLowerCase()}`)
}
}
if (!["EUW", "NA", "EUNE"].includes(productRegion)) {
$('.rank-ready-text').hide()
} else {
$('.rank-ready-text').show()
}
if (!productName.toLowerCase().includes('valorant')
&& !productName.toLowerCase().includes('mmr')) {
$(".ranked-warning").show();
}
addToCart(productRegion, productName, price, productId, category, quantity);
})
$('#quantity').change(function(e) {
$('#total').text(($("#unit_price").text() * $(this).val()).toFixed(2));
if(parseInt($(this).val()) > parseInt($(this).attr('max'))) {
$(this).val($(this).attr('max'));
$('#total').text($("#unit_price").text() * $(this).val());
swal.fire('Oops..', 'We only have ' + $(this).attr('max') + ' in stock of this account.', 'warning');
}
quantity = $(this).val();
$(".double_amount").text(quantity);
});
$('#quantity').keyup(function(e) {
$('#total').text(($("#unit_price").text() * $(this).val()).toFixed(2));
if(parseInt($(this).val()) > parseInt($(this).attr('max'))) {
$(this).val($(this).attr('max'));
$('#total').text($("#unit_price").text() * $(this).val());
swal.fire('Oops..', 'We only have ' + $(this).attr('max') + ' in stock of this account.', 'warning');
}
});
$("#apply_coupon").click(function(e) {
$.get( "/api/coupon/"+$("#coupon").val()+'/'+$("#product_id").val().toLowerCase(), function( data ) {
if(data != "")
{
if(data !== 0 && data !== "0")
{
$('.apply-coupon').css('display', 'none');
$('#warranty_new').prop('disabled', true);
$('#total').text(($("#total").text() * data.discount).toFixed(2));
$('#unit_price').text(($("#unit_price").text() * data.discount).toFixed(2));
swal.fire('Coupon Applied!', 'Your coupon has been applied', 'success');
} else {
$('.coupon-applied').css('display', 'none');
$("#coupon").val();
swal.fire('Oops..', 'This coupon is no longer valid or is not usable on this product.', 'error');
}
}
});
});
$('.wizard-button').click(function(e) {
$(this).removeClass('active');
})
$(".payment-method").click(function(e) {
$('.payment-method.active').removeClass('active');
$(this).addClass('active');
$('#method').val($(this).attr('data-payment-method'));
});
$('.continue-checkout').click(function() {
checkoutEvent(productRegion, productName, price, productId, category, quantity);
});
$('.acceptWarning').click(function() {
bottedWarning = true;
})
$("#checkout_form").submit(function(e) {
$('.wizard-button.checkout').addClass('is-loading');
$('.wizard-button.checkout').attr('form', '');
e.preventDefault();
$.ajax({
type: 'post',
url: '/checkout',
data: $('#checkout_form').serialize(),
success: function (data) {
if (data.redirect) {
window.location = data.redirect;
}
if($("#method").val() === 'crypto') {
window.location.href = data;
} else {
return stripe.redirectToCheckout({ sessionId: data });
}
}
});
});