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

Solved Tfs 1.2 Talkactions don't work

Og1999

New Member
Joined
Apr 1, 2015
Messages
34
Reaction score
1
Hello!
I Just download the new tfs 1.2 and using client 10.77.
And iam following the tutorial:
Many talkactions dont work, i dont know why...
for example: /i /summon and so on...


Anyone have any ideas what it could be?
 
Thank you so much!
It's working now :)
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="5" name="God" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>

dosent work for me.. im using tfs 1.2 tibia global ot 10.90

some talkactions not work.. but other god talacktions of the same group 5. i try with id 3 and not..


why can use a god /a /save /r but not /i /addskill /m etc etcetc

thanks
 
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="5" name="God" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>

dosent work for me.. im using tfs 1.2 tibia global ot 10.90

some talkactions not work.. but other god talacktions of the same group 5. i try with id 3 and not..


why can use a god /a /save /r but not /i /addskill /m etc etcetc

thanks

The Group ID is fine on 3: <group id="3" name="God" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />

but the things you need to change is on MySql, go and check on your ServerDataBase and in section 'accounts' find your account and change acctype from 1 to 5.

or execute this:
Code:
UPDATE `accounts` SET `type` = '5' WHERE `accounts`.`id` = 1;

and in players table edit groupid to 3, or execute this sql query, but take care because my character ID is ID 1, check yourst if have another character ID:
Code:
UPDATE `players` SET `group_id` = '4' WHERE `players`.`id` = 1;

13319995_273824966338519_810249723198700082_n.jpg


Hope this would be useful.
 
Back
Top