Raised This Month: $ Target: $400
 0% 

Simple CS:GO Menu


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Thommen
Member
Join Date: May 2019
Old 05-21-2019 , 09:18   Simple CS:GO Menu
Reply With Quote #1

Hello,
I need a simple Menu that will show players what our VIP would give them.
By menu I mean this block on left side. When you click 0 you exit this window.

Can anyone help me, please?
Regards,
Thommen
Thommen is offline
Pilo
AlliedModders Donor
Join Date: Jan 2019
Location: Israel
Old 05-21-2019 , 10:02   Re: Simple CS:GO Menu
Reply With Quote #2

PHP Code:
#include <sourcemod>

Menu vipinfo;

public 
void OnPluginStart()
{
    
RegConsoleCmd("sm_vipinfo"Command_VIPInfo);
    
    
vipinfo = new Menu(menuHandler_VIPInfo);
    
vipinfo.SetTitle("VIP Info");
    
    
vipinfo.AddItem("""Text1"ITEMDRAW_DISABLED);
    
vipinfo.AddItem("""Text2"ITEMDRAW_DISABLED);
    
vipinfo.AddItem("""Text3"ITEMDRAW_DISABLED);
    
vipinfo.AddItem("""Text4"ITEMDRAW_DISABLED);
}

public 
Action Command_VIPInfo(int clientint args)
{
    if (
IsClientInGame(client))
    {
        
vipinfo.Display(clientMENU_TIME_FOREVER);
    }
}

public 
int menuHandler_VIPInfo(Menu menuMenuAction actionint param1int param2)
{

Try to learn how to code by yourself , I did something simple for you.
Now edit it as you want compile it and upload it to your server.
Feel free to add me on discord for more information.
__________________

Taking Private(PAID) Plugins In PM
Feel free to Donate with PayPal
Feel free to message me in Discord Pilo#8253
Total donated : 25$
Pilo is offline
Thommen
Member
Join Date: May 2019
Old 05-21-2019 , 10:18   Re: Simple CS:GO Menu
Reply With Quote #3

Thanks a lot, i tried to learn how to code in sourcemod but it's kinda complicated for me, i don't know where to get the basics :/
I'm trying to understand every line and it's fine but when I have to write anything i got blocked in my head.
Anyway, thanks a lot again
Thommen is offline
Pilo
AlliedModders Donor
Join Date: Jan 2019
Location: Israel
Old 05-21-2019 , 10:26   Re: Simple CS:GO Menu
Reply With Quote #4

Feel free to add me on discord if you need any help
__________________

Taking Private(PAID) Plugins In PM
Feel free to Donate with PayPal
Feel free to message me in Discord Pilo#8253
Total donated : 25$
Pilo is offline
Reply



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 15:39.


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