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

/i in game to create items does not work tfs

Jake Damico

New Member
Joined
Aug 31, 2014
Messages
101
Reaction score
1
cant get my admin character to create items in game, /i does not work here is my create_item.lua file
 

Attachments

Set type 6 on admin's account in database

Lua:
    ACCOUNT_TYPE_NORMAL = 1,
    ACCOUNT_TYPE_TUTOR = 2,
    ACCOUNT_TYPE_SENIORTUTOR = 3,
    ACCOUNT_TYPE_GAMEMASTER = 4,
    ACCOUNT_TYPE_COMMUNITYMANAGER = 5,
    ACCOUNT_TYPE_GOD = 6

You should have search first, its a very very common issue
 
Set type 6 on admin's account in database

Lua:
    ACCOUNT_TYPE_NORMAL = 1,
    ACCOUNT_TYPE_TUTOR = 2,
    ACCOUNT_TYPE_SENIORTUTOR = 3,
    ACCOUNT_TYPE_GAMEMASTER = 4,
    ACCOUNT_TYPE_COMMUNITYMANAGER = 5,
    ACCOUNT_TYPE_GOD = 6

You should have search first, its a very very common issue
I have group Id set to 6 I am god in server and it still won’t work
 
I have group Id set to 6 I am god in server and it still won’t work

On accounts table, set your account type column to 6 — that means ACCOUNT_TYPE_GOD, and you can find it the value possibilities if you search for AccountType_t within enums.h.
On players table, set your player group_id column to 6 — that means god of your TFS groups and you can find it within groups.xml.

These values are based on latest TFS.
You should double check on mentioned files to be sure.
 
Back
Top