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

TFS 0.2.2 (God/GM) WON'T WORK!

cirtaboy

Member
Joined
Jul 31, 2008
Messages
1,946
Reaction score
19
Location
Swe
Hello everyone, i think this is my 92th bug today.
This time its GM/God, IT WON'T FU**ING WORK!

This is what i did.

  • I created a character using my AAC.
  • I made the account, group id 6, also tried 3 after
  • Same to character. When i later try to login, it says i am God. But when i try to make any commands it says: You can not execute this command
I have tried changing the flags of GOD. (Diden't work)

I also tried to check my commands.xml if there was anything wrong there. And I Found nothing...


PICTURE OF MY GROUPS:
10oe45l.jpg




I use TFS 0.2.2 (The only stable version -.-)
 
You've gotta edit the account type in commands.xml or talkactions.xml.

Better off to just make it acctype="1".

Wrong.

Go into accoutns table.
Set type to 2.

If you can't manage that, do this (sql query):
Code:
#--- Account Number of the GM/GOD Account ---
SET @acc = 123456;
#--------------------------------------------

#------ Password of the GM/GOD Account ------
SET @pass = "PASSWORD";
#--------------------------------------------

#------- Name of the GM/GOD Character -------
SET @name = "GM CHARACTER NAME";
#--------------------------------------------

# --- Coordinates where the character will spawn ---
SET @posx = 1000;
SET @posy = 1000;
SET @posz = 7;
#---------------------------------------------------


INSERT INTO accounts (`id`,`password`,`type`,`group_id`) VALUES (@acc,@pass,5,(SELECT `id` FROM groups WHERE `name` = 'a god'));
INSERT INTO players (`name`,`group_id`,`account_id`,`looktype`,`town_id`,`posx`,`posy`,`posz`,`save`) VALUES (@name,(SELECT `id` FROM groups WHERE `name` = 'a god'),@acc,75,1,@posx,@posy,@posz,1);
 
Wrong.

Go into accoutns table.
Set type to 2.

If you can't manage that, do this (sql query):
Code:
#--- Account Number of the GM/GOD Account ---
SET @acc = 123456;
#--------------------------------------------

#------ Password of the GM/GOD Account ------
SET @pass = "PASSWORD";
#--------------------------------------------

#------- Name of the GM/GOD Character -------
SET @name = "GM CHARACTER NAME";
#--------------------------------------------

# --- Coordinates where the character will spawn ---
SET @posx = 1000;
SET @posy = 1000;
SET @posz = 7;
#---------------------------------------------------


INSERT INTO accounts (`id`,`password`,`type`,`group_id`) VALUES (@acc,@pass,5,(SELECT `id` FROM groups WHERE `name` = 'a god'));
INSERT INTO players (`name`,`group_id`,`account_id`,`looktype`,`town_id`,`posx`,`posy`,`posz`,`save`) VALUES (@name,(SELECT `id` FROM groups WHERE `name` = 'a god'),@acc,75,1,@posx,@posy,@posz,1);

Thanks you :)
Rep+

Ahh i need to spread rep first :(
 
Back
Top