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

Solved I Need commands of commands.xml

ZORAM

New Member
Joined
Aug 6, 2013
Messages
27
Reaction score
0
Hi guys, i have a problem with theforgottenserver V1.0, version 10.37.

The my commands.xml not have commands in file, for player use or GM and ADM.

Here it is my commands.xml.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<commands>
    <command cmd="/reload" group="2" acctype="5" log="yes"/>
    <command cmd="/raid" group="2" acctype="4" log="yes"/>
    <command cmd="!sellhouse" group="1" acctype="1" log="no"/>
</commands>

i would of add more commands and new commands in commands.xml, if you can help me, i will be grateful.

Thank you, for help me!

A big hug and with be God!
 
now i have a problem, some commands not work, for example: /i item , the item not and created in bag.
I am using last source and TFS v1.0 version 10.37.
 
Last edited:
Yes, i be used character god, my groud_id is 3 in Database, because my server have this rank.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
    <group id="1" name="player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" />
    <group id="2" name="gamemaster" flags="137438953471" access="1" maxdepotitems="0" maxvipentries="200" />
    <group id="3" name="god" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>
 
Account ID has to be 5. Find it in the accounts table.
nope :p actually in tfs 1.0 you need only to change group_id from player, since account table is like his:

Code:
CREATE TABLE IF NOT EXISTS `accounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL,
  `password` char(40) NOT NULL,
  `type` int(11) NOT NULL DEFAULT '1',
  `premdays` int(11) NOT NULL DEFAULT '0',
  `lastday` int(10) unsigned NOT NULL DEFAULT '0',
  `email` varchar(255) NOT NULL DEFAULT '',
  `creation` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB;

and you can have both normal and gods characters on a single acc
 
I get error after change ground_id in database for rank 5. all number greater 3 cause this error.

s3U4NbN.jpg
 
nope :p actually in tfs 1.0 you need only to change group_id from player, since account table is like his:


and you can have both normal and gods characters on a single acc


Woopsie :p I meant account type.
For TFS 1.0, to have full God rights you need to set the account type to 5 as well as the group id to 3
 
Back
Top