Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

TERA 92.03 How to make your server fully PvE

Joined
Mar 29, 2019
Messages
1,032
Reaction score
1,190
Open DeploymentConfig.xml and edit pveServer and set it to true like this

Code:
<ArbiterServerConfig qaServer="false" validatePacket="true" pveServer="true">

Now go to Datasheet and open GuildWar.xml then edit pvPServerDefault and set it to false and pvEServerDefault set it to true like this

Code:
<Acceptable pvPServerDefault="false" pvEServerDefault="true" toggleCoolTime="14400"/>

This disable Outlaw declaration skill also. (Open World PVP)

Restart the server and gtg
 
Experienced Elementalist
Joined
Apr 25, 2014
Messages
229
Reaction score
7
oppositely,,how to make my server to fully PVP??

 
Joined
Mar 29, 2019
Messages
1,032
Reaction score
1,190
oppositely,,how to make my server to fully PVP??

DeploymentConfig.xml
Code:
[COLOR=#666666]
<ArbiterServerConfig qaServer="false" validatePacket="true" pveServer="false">[/COLOR]

GuildWar.xml
Code:
[COLOR=#666666]
<Acceptable pvPServerDefault="true" pvEServerDefault="false" toggleCoolTime="14400"/>[/COLOR]
 
Back
Top