Processing time 10-40 minutes
If your VVDI BGA cant reset some of ECU's, order reset hash by typing "Special hash" before payment in text box.

OUR BEST USER IS Craig from South Africa

MHH and DK users have discount

Dealer Hash to Dealer Password calculation
You can reset
ENGINE ECU (any)
GEARBOX UNIT (7G Tronic, ISM)
EZS (Any)

MB CAN Tool for users who doesnt have VVDI or any other tool to reset
Tool price is 250EURO and you can reset 7G, ECU, ISM
PROMOTION ENDED
All order can be made on mail mojslikarskiatelje#gmail.com



More videos comming.


$25.00

RESET HASH

Dealer Hash to Dealer Password calculation


Add to Cart

$8.00

Conversion of EIS Password to ELV password

Very useful if you want preprogram EMU and send it directly to customer.


Add to Cart

$1000.00

HASH Key Algorithm RIPEMD

Writen in C#/C++


Add to Cart

$2000.00

HASH Algorithm RIPEMD64 Bruteforce n-1

Writen in C#/C++/CUDA for Nvidia


Add to Cart

$3000.00

W204/212 NEC ELV Emulator Algo

Writen in C#/C++


Add to Cart



Your Cart

The cart is empty!

ENTER YOUR DEALER HASH HERE Payment through PayPal.com


Go back to cart Continue

ATN Simple Cart Frequently Asked Questions



1) How to add it in a .php file?


If you downloaded atn-simple-cart.zip and extracted the files in a sub folder /atn-simple-cart , it's enough to add such line of php code:

<?php
include("atn-simple-cart/cart.php");
?>

at the position in your php file where you would like the cart to show up.


2) How to add it in a .html file?


To add the cart in a .html file, you need to insert an iframe line of code in it (see below). Please note when using this option, you still need to have PHP running on your server, since it's used to process the cart, send email notifications to you and others.

The iframe code to be inserted in your html file (at the position you would like the cart to show up) is:

<iframe src="atn-simple-cart/cart-iframe.php" width="100%" frameborder="0" height="100%"></iframe>


Please note sometimes you may need to limit the height taken by the cart - you could do that by setting the height in pixels using the height parameter of the iframe tag. For example the line below will set it to 600px:
<iframe src="atn-simple-cart/cart-iframe.php" width="100%" frameborder="0" height="600"></iframe>



3) How to define my own products?


You could do that by editing the products.xml file located in the /atn-simple-cart folder.

You may find below the content of the sample products.xml file we are using in our demos:

<my_products>
	<product>
		<id>1</id>
		<name>Some test product</name>
		<price>49.00</price>
		<description>
			Here comes the description of the test product ...
		</description>
		<details_link>www.google.com</details_link>
	</product>
	<product>
		<id>2</id>
		<name>Another test product</name>
		<price>69.00</price>
		<description>
			This is the description of the second test product ...
		</description>
		<details_link>www.yahoo.com</details_link>
	</product>
</my_products>

For every product you may use the following fields:

id - the unique id of the product.
name - is the name of the product
price - price of the product, it should be entered without the currency symbol
description - the product description
details_link - you may fill a value in it, if you would like to have a Details button linking to the product details page. If you leave it empty, then no Details link will show up for the product.


4) Setting the currency symbol, PayPal currency code, PayPal account and email address to be used for order notifications?



To change these values, you need to edit the configuration file - config.xml located in the /atn-simple-cart folder.

You may check the content of the sample config.xml file below -

<my_config>
	<configuration>
		<notification_email>[email protected]</notification_email>
		<currency_symbol>$</currency_symbol>
		<currency_code>USD</currency_code>
		<paypal_account>[email protected]</paypal_account>
	</configuration>
</my_config>