• 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!

how make to people can download exe from znote?

Felipe93

Ghost Member
Joined
Mar 21, 2015
Messages
2,035
Solutions
9
Reaction score
361
Location
Chile
like title says

<?php require_once 'engine/init.php'; include 'layout/overall/header.php'; ?>

<h1>Downloads</h1>
<p>In order to play, you need an compatible IP changer and a Tibia client.</p>

<p>Download otland IP changer <a href="htdocs/downloads/">HERE</a>.</p>
<p>Download Tibia client <?php echo ($config['client'] / 100); ?> <a href="<?php echo $config['client_download']; ?>">HERE</a>.</p>

<h2>How to connect and play:</h2>
<ol>
<li>
<a href="htdocs/downloads/<?php echo ($config['client']); ?>.exe">Download</a>, install and start the tibia client if you havent already.
</li>
<li>
<a href="htdocs/downloads/">Download</a> and run the IP changer.
</li>
<li>
In the IP changer, write this in the IP field: <?php echo $_SERVER['SERVER_NAME']; ?>
</li>
<li>
In the IP changer, write this in the Port field: <?php echo $config['port']; ?>
</li>
<li>
Now you can successfully login on the tibia client and play. <br>
If you do not have an account to login with, you need to register an account <a href="register.php">HERE</a>.
</li>
</ol>

<?php
include 'layout/overall/footer.php'; ?>
 
i oviusly need people downlaod my custom one its will work?
change this
PHP:
$config['client_download'] = 'http://clients.************/windows.php?tibia='. $config['client'] .'';
to this
PHP:
$custom_client = " add the path to the file here";
$config['client_download'] = $custom_client;
 
change this
PHP:
$config['client_download'] = 'http://clients.************/windows.php?tibia='. $config['client'] .'';
to this
PHP:
$custom_client = "C:\Users\Raquel\Desktop\custom.exe"; <<< something like that? thanks in advance dude
$config['client_download'] = $custom_client;
 
Back
Top