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

PHP - Auto updater - OTCLIENT HELP

Unvincible

Member
Joined
Sep 1, 2015
Messages
44
Reaction score
10
Hi, i have OTclient edited with my own functions. but im having problems to make auto update works, maybe someone can help me since im bad with php.

PHP:
<?php
function file_crc($file)
{
    $file_string = file_get_contents($file);

    $crc = crc32($file_string);
 
    return sprintf("%u", $crc);
}

$dat = '/var/www/update/Tibia.dat';

echo 'Tibia.dat '.file_crc($dat).'';

?>


OTclient update is working, but need to update every time try to login server.
 
Back
Top