The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades.
×
- 0
How to enable Attendance System in 2018-06-21 client?
-
Recently Browsing 0 members
- No registered users viewing this page.
Question
nasagnilac
What is the problem with my client? I still cant open and saying You are not allowed to use the attendance system.
db/import/attendance.yml
Header: Type: ATTENDANCE_DB Version: 1 Body: # - Start: 20190423 # End: 20191231 # Rewards: # - Day: 1 # ItemId: 22979 # - Day: 2 # ItemId: 6316 # - Day: 3 # ItemId: 12265 # Amount: 5 # - Day: 4 # ItemId: 23047 # Amount: 5 # - Day: 5 # ItemId: 23038 # - Day: 6 # ItemId: 23043 # - Day: 7 # ItemId: 23340 # Amount: 3 # - Day: 8 # ItemId: 12516 # Amount: 5 # - Day: 9 # ItemId: 23307 # Amount: 5 # - Day: 10 # ItemId: 12610 # - Day: 11 # ItemId: 14533 # Amount: 2 # - Day: 12 # ItemId: 23012 # Amount: 3 # - Day: 13 # ItemId: 23048 # Amount: 5 # - Day: 14 # ItemId: 12264 # Amount: 5 # - Day: 15 # ItemId: 23046 # Amount: 5 # - Day: 16 # ItemId: 12515 # Amount: 5 # - Day: 17 # ItemId: 12522 # Amount: 5 # - Day: 18 # ItemId: 12523 # Amount: 5 # - Day: 19 # ItemId: 6234 # - Day: 20 # ItemId: 22845
CheckAttendance.lub
Config = { StartDate = 20190423, EndDate = 20191231 } Reward = { { 1, 22979, 1 }, { 2, 6316, 1 }, { 3, 12265, 5 }, { 4, 23047, 5 }, { 5, 23038, 1 }, { 6, 23043, 1 }, { 7, 23340, 3 }, { 8, 12516, 5 }, { 9, 23307, 5 }, { 10, 12610, 1 }, { 11, 14533, 2 }, { 12, 23012, 3 }, { 13, 23048, 5 }, { 14, 12264, 5 }, { 15, 23046, 5 }, { 16, 12515, 5 }, { 17, 12522, 5 }, { 18, 12523, 5 }, { 19, 6234, 1 }, { 20, 22845, 1 } } function main() result, msg = InsertCheckAttendanceConfig(Config.EvendOnOff, Config.StartDate, Config.EndDate) if not result then return false, msg end for k, rewardtbl in pairs(Reward) do result, msg = InsertCheckAttendanceReward(rewardtbl[1], rewardtbl[2], rewardtbl[3]) if not result then return false, msg end end return true, "success" end
Link to comment
Share on other sites
12 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.