This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/lib/account.inc

13 lines
344 B
PHP

<?php
/****************************************************************************
* ACCOUNT MANAGEMENT FUNCTIONS
****************************************************************************/
function accountLog($what, $uid) {
$game = config::getGame('main');
$lib = $game->getLib('main/account');
$lib->call('log', $uid, $what);
}
?>