• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Modern ACC Shop System Translate guide

Dylanaw

Godly Member
Joined
Feb 18, 2009
Messages
473
Reaction score
10
Hello,
I tried to follow this tutorial:

http://otland.net/f118/shop-system-full-modern-aac-114852/

But it is in spanish, so i used google translate but if i do that it will be so bad english.
So i don't understand a clue of it.

Could anyon explain or translate it for me?

Thank u:ninja:


------------------------------
Edit:
Here is the Spanish guide:huh:

Code:
1.- Copiar el contenido de la carpeta "htdocs" en la carpeta "htdocs" de tu web

2.- Copiar el script "shop.lua" de la carpeta "globalevents" en la carpeta "globalevents" de la data de tu servidor

3.- Abrir el archivo globalevents.xml y agregar la siguiente linea:

	<globalevent name="shop" interval="30" script="RUTA_DEL_SCRIPT"/>

	Cambiando la "RUTA_DEL_SCRIPT" por la ubicacion de tu script


/************************** INSTALAR EN WEBSITE ***********************/

Loguear con una cuenta de administrador en la web y entrar a la siguiente ruta:
	
	http://TUURL/p/v/gifts

Y se instalara por si sola


/************************** COMO EDITAR ***********************/

Para editar PayPal y ContenidoPago tienes que ir a la carpeta:

"htdocs" -> "gifts" -> "config"

y abrir el archivo "config.php"


/************************* CONTENIDO **************************/

$config['donations']['methods'] = array('ContenidoPago' => true, 'PayPal' => true);

	-> Poner true si el servicio esta habilitado para donaciones y false si no lo esta



$config['donations']['paypal'] = array('Mail' => '[email protected]', 'Points' => 6, 'Product' => 'Donation for VipHera', 'Money' => 'EUR', 'Amount' => 1);

	-> Mail = Tu correo de PayPal

	-> Points = Puntos que se sumaran a la cuenta del jugador

	-> Product = Nombre del Producto (Saldra en la pagina de PayPal)

	-> Money = Moneda (EUR,USD,etc..)

	-> Amount = Monto de dinero a enviar


$config['donations']['contenidopago'] = array('Product' => '1347', 'Points' => 4);  

	-> Product = ID de tu Alias en ContenidoPago

	-> Points = Puntos que se sumaran a la cuenta del jugador
 
Back
Top