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!

enable attendance events

Elite Diviner
Joined
Feb 5, 2016
Messages
416
Reaction score
32
anyone hav way to enable attendance events i try edit in database change to 2018 but when edit in event config it not work
 
Joined
Oct 28, 2011
Messages
2,465
Reaction score
1,258
@kbnnlan
Edit file:
gameserver\bin\configs\events.properties



Code:
# Attendance eventId(int);enable(bool);startDate(Format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z');period(ms);.
# Default: 1;false;2016-12-24T10:00:00+03:00;2592000000,2;false;2016-12-24T10:00:00+03:00;2592000000
event.attendance.events = 1;true;2018-01-23T10:00:00+03:00;2592000000,2;false;2016-12-24T10:00:00+03:00;2592000000

# Enable Auto reward event.
# Default: false
event.auto.reward.enable = true

# Auto reward each 30 min.
# Default: 30
event.auto.reward.time = 30

Top portion shown only


There is more in the file than those 3 fields in the code block.
At the very bottom of the file:
Make sure the itemid of the reward at the bottom of the file actually exists and is what you plan on sending
 
Last edited:
Upvote 0
Elite Diviner
Joined
Feb 5, 2016
Messages
416
Reaction score
32
tks u verymuch



@kbnnlan
Edit file:
gameserver\bin\configs\events.properties



Code:
# Attendance eventId(int);enable(bool);startDate(Format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z');period(ms);.
# Default: 1;false;2016-12-24T10:00:00+03:00;2592000000,2;false;2016-12-24T10:00:00+03:00;2592000000
event.attendance.events = 1;true;2018-01-23T10:00:00+03:00;2592000000,2;false;2016-12-24T10:00:00+03:00;2592000000

# Enable Auto reward event.
# Default: false
event.auto.reward.enable = true

# Auto reward each 30 min.
# Default: 30
event.auto.reward.time = 30

Top portion shown only


There is more in the file than those 3 fields in the code block.
At the very bottom of the file:
Make sure the itemid of the reward at the bottom of the file actually exists and is what you plan on sending

and do u know how to enable event ?
 
Upvote 0
Experienced Elementalist
Joined
Jun 17, 2014
Messages
273
Reaction score
33
Hello,

Is it possible not to add a reward every 30 min but, for example, 1x / day upon connection ?

Thanks !



Hello,

Is it possible not to add a reward every 30 min but, for example, 1x / day upon connection ?

Thanks !
 
Upvote 0
Newbie Spellweaver
Joined
May 26, 2018
Messages
30
Reaction score
1
Hello,

Is it possible not to add a reward every 30 min but, for example, 1x / day upon connection ?

Thanks !



Hello,

Is it possible not to add a reward every 30 min but, for example, 1x / day upon connection ?

Thanks !
If brother, you only have to change the amount of time, for example, if there says 30 minutes, you put the equivalent, for example: 1440 minutes
You can also change the id of the item you want to give as a reward and the quantity, in the file, event.propieties
 
Upvote 0
Experienced Elementalist
Joined
Jun 17, 2014
Messages
273
Reaction score
33
Yeah I know that already, my question was more about changing how the item are distributed:
- now its "every x minutes"
- I'm looking for "once per day upon connection"

:)
 
Upvote 0
Back
Top