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!

How to Increase Adventure Coin Points

Joined
Mar 29, 2019
Messages
1,032
Reaction score
1,190
Screenshot_197 - How to Increase Adventure Coin Points - RaGEZONE Forums


You have to edit ActPoint.xml in both server and client side

In this file you can set various values,

Code:
<ActPointData level="1" maxActPoint="1400" pointRecoveryRate="3" maxActPointForAccountTrait="2400" pointRecoveryRateForAccountTrait="5"/>

"level" Character level
"maxActPoint" Max. Adventure Points for non-elite accounts
"pointRecoveryRate" Amount of points which can be recovered for non-elite accounts every 3 min
"maxActPointForAccountTrait" Max. Adventure Points for elite accounts
"pointRecoveryRateForAccountTrait" Amount of points which can be recovered for elite accounts every 3 min

In order to apply this values, your Package "id" in AccountTrait.xml must have

<Property name="maxActPoint" enable="true" />

and

<Property name="actPointRecoveryRate" enable="true" />

To make this useful, remember to set requiredActPoint="" in DungeonConstraint.xml

Cheers
 

Attachments

You must be registered for see attachments list
Last edited:
Back
Top