Tera level 100 version

I tried to add 20000021 to Play Time event reward, but nothing happens when I try to claim the VIP EXP.

You know a way to do it after player has played a certain time and/or for achievement reward? Maybe there is another way to give rewards for playtime beside the actual "Play Time" event?

Edit: If I try to use "/@makeitem 20000021 10" then it say "Reward points isn't for you".
Hi,

Try using TERA Rewards Loot Box or adding it as a quest rewards like i did for Vanguards

Hello friends. I've had so many great answers to my questions on this forum and it's been awesome. I have a few more I'd like to have answered for our project.

1: How do we disable the profanity filter? I'm aware of the abuselist but I've gotten rid of everything in them and we still have a profanity filter. It's driving me wild, lol.

2: Are we able to have dungeons drop EMP, the premium currency? Or must we only use the tikat store for everything like that. It's not the end of the world but I'm so used to the premium store over tikats, lol.

3: Finally, Is there an easy way to make all players who create an account instantly have elite status and start with a certain number of premium currency?

Hi,

1. Check AbuseLetterList.xml (Both C & S) and "DownloadedResources.dat\AbuseLetterList.txt"

2. AFAIK, not yet, but you can use the dressing room and set an initial amount of tikats at CreateChatData, but, unfortunately this is exploitable (Create/delete character gives currency indefinitely). Other alternative is set a Mail Event and send tikats every x time.

3. Using the API by hsdn, you can set API_PORTAL_BENEFIT_ID_ELITE_STATUS and API_PORTAL_INITIAL_BENEFIT_ID_XXX_DAYS, being XXX the benefit from StrSheet_AccountBenefit (Ex. 333 for EME Elite Status or 433 for GF VIP Status) for give Elite/VIP Status automatically. To give currency you can set a promocode from the api at config\promoCode.js
 
Last edited:
Is there an easy way to make all players who create an account instantly have elite status and start with a certain number of premium currency?
As Archgeus said, you can use the Promo Code system to add currency to your account. But in a future Tera API update, it will be possible to specify the initial balance (when creating an account) in the .env file.
 
Hi,

Try using TERA Rewards Loot Box or adding it as a quest rewards like i did for Vanguards
Hey Archgeus,

thanks for your time. After checking it seems the TERA Rewards Loot Box is for VIP points/credits/currency and not XP? I did add VIP XP to vanguard requests already but was looking for more options to obtain them. How to do via Quest? I checked QuestCompensationData.xsd to understand how to, but I cannot a similiar way as VIP XP Reward is done via vanguard request.
 
Last edited:
Hi,

Try using TERA Rewards Loot Box or adding it as a quest rewards like i did for Vanguards



Hi,

1. Check AbuseLetterList.xml (Both C & S) and "DownloadedResources.dat\AbuseLetterList.txt"

2. AFAIK, not yet, but you can use the dressing room and set an initial amount of tikats at CreateChatData, but, unfortunately this is exploitable (Create/delete character gives currency indefinitely). Other alternative is set a Mail Event and send tickats every x time.

3. Using the API by hsdn, you can set API_PORTAL_BENEFIT_ID_ELITE_STATUS and API_PORTAL_INITIAL_BENEFIT_ID_XXX_DAYS, being XXX the benefit from StrSheet_AccountBenefit (Ex. 333 for EME Elite Status or 433 for GF VIP Status) for give Elite/VIP Status automatically. To give currency you can set a promocode from the api at config\promoCode.js
Hello, Thanks for responding.

1: For the profanity filter, what do you mean both C & S? I was only able to find the following files in my search.

AbuseLetterList.xml (Located in bin>datasheet)

AbuseLetterList-00000.xml (located in DataCenter_Final_EUR>AbuseLetterList Folder, along with AbuseLetterList.xsd)


2: I'll do some investigations to work on the Tikat shop, thank you.

3: I will give that a whirl. Will report back when I can.
 
Hello, Thanks for responding.

1: For the profanity filter, what do you mean both C & S? I was only able to find the following files in my search.

AbuseLetterList.xml (Located in bin>datasheet)

AbuseLetterList-00000.xml (located in DataCenter_Final_EUR>AbuseLetterList Folder, along with AbuseLetterList.xsd)


2: I'll do some investigations to work on the Tikat shop, thank you.

3: I will give that a whirl. Will report back when I can.

C = Client
S = Server

So you found already the two files.
 
C = Client
S = Server

So you found already the two files.
Upon checking our client files, the client DL does not have any abuseletterlist files in it. And downloadedresources.dat doesn't have any mention about abuseletterlist either. Which client files am I supposed to look for?
 
Upon checking our client files, the client DL does not have any abuseletterlist files in it. And downloadedresources.dat doesn't have any mention about abuseletterlist either. Which client files am I supposed to look for?

Hi, some clients have inbuild the AbuseLetterList into DownloadResources.dat, that's why i mention it, just to be sure.

subzeros - Tera level 100 version - RaGEZONE Forums


Only these files should contain the profanity list. (I could be wrong, but i didn't found any other file mentioning banned words)

AbuseLetterList.xml > Server
AbuseLetterList-000000.xml > Client
 
Hey Archgeus,

thanks for your time. After checking it seems the TERA Rewards Loot Box is for VIP points/credits/currency and not XP? I did add VIP XP to vanguard requests already but was looking for more options to obtain them. How to do via Quest? I checked QuestCompensationData.xsd to understand how to, but I cannot a similiar way as VIP XP Reward is done via vanguard request.

Hi,

Checking once again how the VIP Rewards works for EME, there are only 2 ways to get Reward Points (VIP Exp)

Quoting what it says,

How Do Reward Points Work?

Players earn Reward Points by completing certain max-level Vanguard Requests. The daily amount of Reward Points you can earn from in-game content is limited by your daily Vanguard Request cap. Players can also earn Reward Points by purchasing items in the TERA store. Points earned from TERA Store purchases have no daily cap. Reward Points are shared across a player’s entire account. Src


So, leaving aside the rewards by shop purchases, they are only designed to work with Vanguards. I could be wrong of course.

Maybe setting up a daily quest with this rewards could work.

<Quest questId="xxxxxx">
<Compensation compensationId="1">
<CompensationType type="vipexp" exp="" gold="" policyPoint="" npcGuildId="" reputationExp="" reputationPoint="" memo="">
<Item templateId="20000021" quantity="250" /> <!-- VIP Exp -->
<Item templateId="201154" quantity="250" /> <!-- VIP Coin -->
</CompensationType>
</Compensation>
</Quest>

I'm guessing.
 
Hi, some clients have inbuild the AbuseLetterList into DownloadResources.dat, that's why i mention it, just to be sure.

subzeros - Tera level 100 version - RaGEZONE Forums


Only these files should contain the profanity list. (I could be wrong, but i didn't found any other file mentioning banned words)

AbuseLetterList.xml > Server
AbuseLetterList-000000.xml > Client
Thanks for all the help so far, I really appreciate you doing this for me. But I'm a bit confused on how you opened up the .dat file. When I open mine using notepad++ I get a considerable amount of problematic font. Is there a dedicated editor I should be using for it or am I doing something incorrectly. (Probably that, lol)
 
Thanks for all the help so far, I really appreciate you doing this for me. But I'm a bit confused on how you opened up the .dat file. When I open mine using notepad++ I get a considerable amount of problematic font. Is there a dedicated editor I should be using for it or am I doing something incorrectly. (Probably that, lol)

Hi,

Check my thread

 
Hi,

Checking once again how the VIP Rewards works for EME, there are only 2 ways to get Reward Points (VIP Exp)

Quoting what it says,




So, leaving aside the rewards by shop purchases, they are only designed to work with Vanguards. I could be wrong of course.

Maybe setting up a daily quest with this rewards could work.

<Quest questId="xxxxxx">
<Compensation compensationId="1">
<CompensationType type="vipexp" exp="" gold="" policyPoint="" npcGuildId="" reputationExp="" reputationPoint="" memo="">
<Item templateId="20000021" quantity="250" /> <!-- VIP Exp -->
<Item templateId="201154" quantity="250" /> <!-- VIP Coin -->
</CompensationType>
</Compensation>
</Quest>

I'm guessing.
It seems that this is not a valid quest compensation type, because on WorldServer start I get:

Code:
2024-12-31 10:27:24 Loading QuestCompensation Template
2024-12-31 10:27:25 last read[.\Datasheet\\.\CompensationData\QuestCompensationData_XXX.xml]
2024-12-31 10:27:25 QuestCompensation::cannot find QuestCompensationType
2024-12-31 10:27:25 last read[.\Datasheet\\.\CompensationData\QuestCompensationData_XXX.xml]
2024-12-31 10:27:25 QuestCompensation Item Template isn't exist! questId[XXXXX] compensationId[2] templateId[20000021]
2024-12-31 10:27:25 Quest Compensation Data Loading Error!
...
2024-12-31 10:27:46 Datasheets Loading Error!

What I put into my QuestCompensationData_XXX.xml:

Code:
<QuestCompensationData huntingZoneId="XXX">
...
    <Quest questId="XXXXX">
...
        <Compensation compensationId="2">
            <CompensationType type="vipexp" exp="0" gold="0" itemBag="allpay" memo="" policyPoint="">
                <Item templateId="20000021" quantity="250" />
            </CompensationType>
        </Compensation>
    </Quest>
...
</QuestCompensationData>

Of course the XXX and XXXXX are correct numbers, the quest worked before adding.

If I want to add it to TERA Shop, do I just add templateId 20000021 to corresponding DB table?
 
It seems that this is not a valid quest compensation type, because on WorldServer start I get:

Code:
2024-12-31 10:27:24 Loading QuestCompensation Template
2024-12-31 10:27:25 last read[.\Datasheet\\.\CompensationData\QuestCompensationData_XXX.xml]
2024-12-31 10:27:25 QuestCompensation::cannot find QuestCompensationType
2024-12-31 10:27:25 last read[.\Datasheet\\.\CompensationData\QuestCompensationData_XXX.xml]
2024-12-31 10:27:25 QuestCompensation Item Template isn't exist! questId[XXXXX] compensationId[2] templateId[20000021]
2024-12-31 10:27:25 Quest Compensation Data Loading Error!
...
2024-12-31 10:27:46 Datasheets Loading Error!

What I put into my QuestCompensationData_XXX.xml:

Code:
<QuestCompensationData huntingZoneId="XXX">
...
    <Quest questId="XXXXX">
...
        <Compensation compensationId="2">
            <CompensationType type="vipexp" exp="0" gold="0" itemBag="allpay" memo="" policyPoint="">
                <Item templateId="20000021" quantity="250" />
            </CompensationType>
        </Compensation>
    </Quest>
...
</QuestCompensationData>

Of course the XXX and XXXXX are correct numbers, the quest worked before adding.

If I want to add it to TERA Shop, do I just add templateId 20000021 to corresponding DB table?

Try using API Admin Panel,

1735664105103 - Tera level 100 version - RaGEZONE Forums
 
Try using API Admin Panel,

View attachment 273766
I bought it via shop, but when I claim the item it gives me error pop-up saying: This character cannot claim the item.

Edit: After relog the item claim even disappeared.

It might be somehow related to box_info or box_items db table, because it automatically sets service item id to 35, but both tables are empty?
 
Last edited:
I was able to work through the profanity filter according to your guide. Absolutely awesome work. I think one of the only things I still haven't been able to get figured out is the GM mode. GM's can't use items or deal damage, even outside of the default "invisibility" action from the GM command. Any idea why on that too?
 
Perfect, got it fixed and checking it now. Only other thing I have questions about are the following:

1: GM's can't attack or use items. Any idea why?

2: How do I edit dungeon loot drops.

3: How do I edit quest loot drops (specifically vanguard and guild quest loot)

4: How do I change the welcome message when loading into the server from the gameforge one?
 
Perfect, got it fixed and checking it now. Only other thing I have questions about are the following:

1: GM's can't attack or use items. Any idea why?

2: How do I edit dungeon loot drops.

3: How do I edit quest loot drops (specifically vanguard and guild quest loot)

4: How do I change the welcome message when loading into the server from the gameforge one?

1. Use privilege 31 instead of 32/33
2. ECompensation_XXXX & ICompensation_XXXX
3. Vanguard EventMatching and XXXXX.quest
4. Check FAQ
 
Try using API Admin Panel,

View attachment 273766

Not sure if you missed my last post:

In the meantime I logged into admin panel and checked logs and box of item claim:
item claim boxes - Tera level 100 version - RaGEZONE Forums

item claim logs - Tera level 100 version - RaGEZONE Forums


I also tried to search for item claim in db, but I couldn't find the table.

Have you been able to solve it and do you have any idea how to go on?
 
I bought it via shop, but when I claim the item it gives me error pop-up saying: This character cannot claim the item.

Edit: After relog the item claim even disappeared.

It might be somehow related to box_info or box_items db table, because it automatically sets service item id to 35, but both tables are empty?

I think that since the vip was only designed to work with eme and from vanguard request, is not possible to use it in a different location. I could be wrong ofc, but i don't have time to test unfortunately.
 
Last edited:
Back