Raised This Month: $32 Target: $400
 8% 

[REQ] Vip list


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
sNok3
Junior Member
Join Date: Mar 2017
Location: GeoIP
Old 03-27-2017 , 15:04   [REQ] Vip list
Reply With Quote #1

How I said in the tittle I need a plugin to show all the vips online, my VIP flag is T.
P.S.: Vips online should be desplayed on the chat to all.
Thanks.
sNok3 is offline
PandahChan
New Member
Join Date: Mar 2017
Old 03-27-2017 , 15:44   Re: [REQ] Vip list
Reply With Quote #2

This should be the start to help you it's a method from my plugin to list online VIPs, this is to go directly to a menu but it shouldn't be much harder if you have knowledge to tweak this to go to chat.

Code:
public Action cmdListOnlineVips(int client, int args)
{
  if (client)
  {
    char buffer[MAX_NAME_LENGTH];
    Menu vipList = CreateMenu(noMenuHandler);

    SetMenuTitle(vipList, ">>> Online VIPs <<<");

    for (int i = 1; i <= MaxClients; i++)
    {
      if (IsClientInGame(i))
      {
        if (CheckCommandAccess(i, "", ADMFLAG_CUSTOM6))
        {
          Format(buffer, sizeof(buffer), "%N", i);
          AddMenuItem(vipList, "", buffer);
        }
      }
    }

    if (GetMenuItemCount(vipList) > 0)
    {
      DisplayMenu(vipList, client, 30);
    }
    else
    {
      AddMenuItem(vipList, "", "No vips are currently online.");
      DisplayMenu(vipList, client, 30);
    }
  }
  return Plugin_Handled;
}
PandahChan is offline
sNok3
Junior Member
Join Date: Mar 2017
Location: GeoIP
Old 03-30-2017 , 14:09   Re: [REQ] Vip list
Reply With Quote #3

Actually, is very helpful, I changed my mind and yes, a menu is greater ! Thank you !


EDIT: I created a new menu called noMenuHandler and I set a command to acces the menu, it works fine ! Thank you

Last edited by sNok3; 03-30-2017 at 14:48.
sNok3 is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 18:49.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode