⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 include_all.php

📁 一个基于web的rpg游戏源代码
💻 PHP
字号:
<?php/*** Netlands World Server is the coordinator of the VR in the Netlands Project* Copyright (C) 2002 Ricard Pillosu* * This program is free software; you can redistribute it and/or* modify it under the terms of the GNU General Public License* as published by the Free Software Foundation; either version 2* of the License, or (at your option) any later version.* * This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the* GNU General Public License for more details.* * You should have received a copy of the GNU General Public License* along with this program; if not, write to the Free Software* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.*//* vim: set expandtab tabstop=4 shiftwidth=4 *//* General Admin (shutdown) functions */include_once($config['dirs']['common_lib'].'general_admin.php');/* Include connection managment commands */include_once($config['dirs']['common_lib'].'connection.php');/* Manage (create, drop, update, get) users */include_once($config['dirs']['common_lib'].'create_user.php');/* Include users login commands */include_once($config['dirs']['lib'].'login.php');/* Include characters managment (list,create,drop) commands */include_once($config['dirs']['lib'].'character.php');/* Include entity (get, childs, etc) commands */include_once($config['dirs']['lib'].'entity.php');/* Editor (create_entity, save_entities, etc) functions */include_once($config['dirs']['lib'].'editor.php');/* Admin (shutdown, print_tree, etc) functions */include_once($config['dirs']['lib'].'admin.php');/* Include go command */include_once($config['dirs']['lib'].'go.php'); // This will be a power/* Include say command */include_once($config['dirs']['lib'].'say.php'); // This will be a power/* Include put command */include_once($config['dirs']['lib'].'put.php'); // This will be a power/* Include get command */include_once($config['dirs']['lib'].'get.php'); // This will be a power?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -