RESOURCES HUB
Premium
2.
Account Management (Account Operations )
Feature Explanation Account List View all accounts, search (login/email) Account Details View account information by ID. Ban/ Unban Changing account status (0=Banned, 1=Active) IP Tracking View the last IP addresses of the accounts.
| Feature | Explanation |
|---|---|
| Account List | View all accounts, search (login/email) |
| Account Details | View account information by ID. |
| Ban/ Unban | Changing account status (0=Banned, 1=Active) |
| IP Tracking | View the last IP addresses of the accounts. |
Technical Note: In version 40250, the status field works as TINYINT (0=ban, 1=active)
3.
Player (Character) Management
Feature Explanation Character List Displaying level, experience, gold, profession, and playtime. Character Details Detailed character information + linked account login. Golden Regulation Updating player's gold amount (0-2M limit) Level Adjustment Level and EXP adjustment (between 1-250) IP Tracking The player's last IP address
| Feature | Explanation |
|---|---|
| Character List | Displaying level, experience, gold, profession, and playtime. |
| Character Details | Detailed character information + linked account login. |
| Golden Regulation | Updating player's gold amount (0-2M limit) |
| Level Adjustment | Level and EXP adjustment (between 1-250) |
| IP Tracking | The player's last IP address |
4.
Item Management
Feature Explanation Item Prototype List of all in-game items (vnum, name, type) Player Inventory View all items of a specific player. Adding Items Giving items to the player (socket, attribute supported) Item Deletion Remove items from the player Item Attr List of item attributes and rarities Refine Proto Refine (development) data
| Feature | Explanation |
|---|---|
| Item Prototype | List of all in-game items (vnum, name, type) |
| Player Inventory | View all items of a specific player. |
| Adding Items | Giving items to the player (socket, attribute supported) |
| Item Deletion | Remove items from the player |
| Item Attr | List of item attributes and rarities |
| Refine Proto | Refine (development) data |
5.
Mob (Monster) Management
- List of all mob prototypes
- Vnum and name-based search
- View mob properties
6.
Guild Management
Feature Explanation Guild List List all guilds in order of level. Guild Details Guild information based on ID + leader name. Member Management View guild members (name, level)
| Feature | Explanation |
|---|---|
| Guild List | List all guilds in order of level. |
| Guild Details | Guild information based on ID + leader name. |
| Member Management | View guild members (name, level) |
7.
Quest Management
| Feature | Explanation |
|---|---|
| Quest List | Viewing the player's active quests |
| Quest Flag Update | Modifying Quest Values (UPSERT logic) |
Database Structure: dwPID, szName, lValue, szState
8.
Skill Management
Feature Explanation Skill Prototype List of all skills (vnum, name, profession, max level) Player Skills The player's abilities and effects.
| Feature | Explanation |
|---|---|
| Skill Prototype | List of all skills (vnum, name, profession, max level) |
| Player Skills | The player's abilities and effects. |
9.
GM (Game Master) Management
| Feature | Explanation |
|---|---|
| GM List | List all authorities according to their level of authority. |
| GM Details | GM details along with account information. |
| Add GM | New authorized appointments (5 different levels) |
| Authorization Update | Changing the current GM's authority. |
| GM Extraction | Revoking authorization |
10.
Offline Shop (Note: Not available at 40250 )
This version does not include an offline shop system, so it will return an empty result.
Technical Infrastructure
Database Connections
phpCopy
Metin2DB::getAccountDB() // Account database
Metin2DB::getPlayerDB() // Player/Item/Mob database
Metin2DB::getCommonDB() // Common/GmList database
Security Features
PDO Prepared Statements (SQL Injection protection)
Input validation (level, gold limits)
Authority control (blocking invalid authority)