Phoenix 3.11.0 - Give Respect don't show

Newbie Spellweaver
Joined
Jul 9, 2011
Messages
29
Reaction score
1


New users can't give respects. :blushing:
 
Newbie Spellweaver
Joined
Feb 13, 2014
Messages
7
Reaction score
1
Have you ran a query to update them? if not then run this:
PHP:
UPDATE user_stats SET DailyPetRespectPoints = 3, DailyRespectPoints = 3
 
Upvote 0
Junior Spellweaver
Joined
Jul 22, 2013
Messages
166
Reaction score
25
Code:
CREATE DEFINER=`root`@`localhost` EVENT `update_respect` ON SCHEDULE EVERY 24 HOUR STARTS '2012-01-01 23:59:00' ON COMPLETION NOT PRESERVE ENABLE DO UPDATE user_stats
SET
DailyRespectPoints = '3',
DailyPetRespectPoints = '3'

Make an event by running that
 
Upvote 0
Back
Top