This repository has been archived on 2024-07-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
lwb5/scripts/game/beta5/library/preRegister.inc

31 lines
661 B
PHP

<?php
//-----------------------------------------------------------------------
// LegacyWorlds Beta 5
// Game libraries
//
// beta5/library/preRegister.inc
//
// This function adds an account to the registration queue.
//
// Copyright(C) 2004-2008, DeepClone Development
//-----------------------------------------------------------------------
class beta5_preRegister {
public function __construct($lib) {
$this->lib = $lib;
$this->db = $this->lib->game->db;
}
public function run($account, $planet) {
$this->db->query(
"INSERT INTO planet_reg_queue (account, p_name) "
. "VALUES ($account, '" . addslashes($planet) . "')"
);
}
}
?>