Respects & Likes

opinionswrest

Member
Jan 6, 2020
117
5
Hi

Im using arc 2.4 im wondering is it possible to allow certain ranks like vip and staff ranks more respect and likes all I can find is for every rank.

So like users 3 respects
vip 5 respects etc
 

Berk

berkibap#4233
Developer
Oct 17, 2015
863
190
Not entirely sure if this is the correct way but, you can try creating an event in navicat with this query, updating the respect points for desired users:
SQL:
UPDATE `users_settings`settings INNER JOIN `users` u ON settings.user_id = u.id  SET settings.`daily_respect_points` = 5 WHERE u.rank = YOURVIPRANKHERE
And the same for other ranks, if you want 900 respects for whoever is over rank 5 including 5 (for example ofc) you can do:
SQL:
UPDATE `users_settings` settings INNER JOIN `users` u ON settings.user_id = u.id  SET settings.`daily_respect_points` = 900 WHERE u.rank >= 5
 

Users who are viewing this thread

Top