I noticed TWLM wasn't properly reset yet and had my test data still in there.
I have fully reset TWLM and it is now ready for week 1.
I am happy to update TWLM every week despite stepping down from staff.
If staff rather I didn't, here is the guide: All SQL statements can just be copy and pasted.
Late on friday - Lock TWLM
UPDATE tblTWL__SiteVars SET fcVarData="True" WHERE fnID=3
Reset Player value changes from previous week:
UPDATE tblTWL__PlayerValues SET fnDVC=0, fnJVC=0, fnFVC=0, fnSVC=0, fnTVC=0 WHERE fnUserId>0
Update all previous weeks bets before processing new bets.
UPDATE tblTWL__Bet SET fnResult=3 WHERE fnResult=1
UPDATE tblTWL__Bet SET fnResult=4 WHERE fnResult=2
Process all matches using built in admin page.
Process all bets using built in admin page.
After everything is updated after weekend matches - late on Sunday/monday Unlock TWLM
UPDATE tblTWL__SiteVars
SET fcVarData="False"
WHERE fnID=3
I have fully reset TWLM and it is now ready for week 1.
I am happy to update TWLM every week despite stepping down from staff.
If staff rather I didn't, here is the guide: All SQL statements can just be copy and pasted.
Late on friday - Lock TWLM
UPDATE tblTWL__SiteVars SET fcVarData="True" WHERE fnID=3
Reset Player value changes from previous week:
UPDATE tblTWL__PlayerValues SET fnDVC=0, fnJVC=0, fnFVC=0, fnSVC=0, fnTVC=0 WHERE fnUserId>0
Update all previous weeks bets before processing new bets.
UPDATE tblTWL__Bet SET fnResult=3 WHERE fnResult=1
UPDATE tblTWL__Bet SET fnResult=4 WHERE fnResult=2
Process all matches using built in admin page.
Process all bets using built in admin page.
After everything is updated after weekend matches - late on Sunday/monday Unlock TWLM
UPDATE tblTWL__SiteVars
SET fcVarData="False"
WHERE fnID=3
Comment