How to see the people I've added to groups vrp

Hello friends, I would like to know if there is a way to see the people that I have added to a specific group, for example, to see all the people that I have added to the police group

Do a MySQL query… For your example, when want to search for the cop group. You’d do it like this:

SELECT `user_id`, `dkey`, `dvalue` FROM `vrpfx`.`vrp_user_data` WHERE `dkey`='vRP:datatable' AND `dvalue`LIKE '%cop%'

Just replace cop with whatever group name you want to find if they’re in that group.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.