• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

You can not execute this command (god char) tfs 1.2

Axelor

Member
Joined
Sep 2, 2010
Messages
505
Reaction score
9
Hey there!

I got an problem aswell on my tfs 1.2 server.
I can not /reload any scripts.

I have on accounts at type: 5.
And group_id on characters is at : 6. Tried 5 aswell, 4 aswell.

I still can't reload anything. And yes, During changing I was offline.
What's wrong? I will pay through paypal if needed.
 
After changing to group _ id 3.
I became a senior tutor....

My groups.xml are:

PHP:
<?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="tutor" flags="137455730688" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="3" name="senior tutor" flags="137455730688" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="4" name="gamemaster" flags="13403503257359" access="1" maxdepotitems="0" maxvipentries="0" />
  <group id="5" name="community manager" flags="13403507451663" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="6" name="god" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
 </groups>
 
if you have the official release of 1.2 it should work with account type god (5)
Code:
Commands::Commands()
{
    // set up command map
    for (auto& command : defined_commands) {
        commandMap[command.name] = new Command(command.f, 1, ACCOUNT_TYPE_GOD, true);
    }
}
show screenshot of your account type after reloading database
 
if you have the official release of 1.2 it should work with account type god (5)
Code:
Commands::Commands()
{
    // set up command map
    for (auto& command : defined_commands) {
        commandMap[command.name] = new Command(command.f, 1, ACCOUNT_TYPE_GOD, true);
    }
}
show screenshot of your account type after reloading database


I don't exactly understand what you mean.

But. I have putted account type 5, it's not working. What should I do now?
 
Back
Top