Raised This Month: $51 Target: $400
 12% 

Need a VIP Plugin for CTF+GUNXP


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 09-25-2016 , 05:20   Need a VIP Plugin for CTF+GUNXP
Reply With Quote #1

Hello i have a question, anyone boring here and can help me? I need a VIPMENU ..

Speed: 350
Gravity: 0.8
2x HE
Invisibility 80%


Server have auto respawn after dead so it is possible that when they use /vipmenu and chose Speed - that it is then auto increased after respawn ?

I hope anyone is boring to do that would pay for it.

Last edited by Godofwar; 10-21-2016 at 12:43.
Godofwar is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 10-02-2016 , 07:39   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #2

-- removed

Last edited by Godofwar; 10-20-2016 at 14:32.
Godofwar is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 10-20-2016 , 14:33   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #3

Hm nobody ???? would pay for it :/
Godofwar is offline
indraraj striker
Veteran Member
Join Date: Mar 2014
Location: Under the water
Old 10-21-2016 , 13:21   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #4

search VIP or vip or vip+menu already there are so many vip plugins just edit little bit as per requirement.
__________________
Thanks everyone. #miss_you_all

Last edited by indraraj striker; 10-21-2016 at 13:23.
indraraj striker is offline
ish12321
Veteran Member
Join Date: May 2016
Old 10-21-2016 , 13:38   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #5

Quote:
Originally Posted by indraraj striker View Post
edit little bit as per requirement.
AlliedModders Forum Index > AMX Mod X > Plugins > Suggestions / Requests
__________________
['O|s|G'] | Death Wins a.k.a Ish Chhabra was here
ish12321 is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 10-21-2016 , 17:23   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #6

Quote:
Originally Posted by indraraj striker View Post
search VIP or vip or vip+menu already there are so many vip plugins just edit little bit as per requirement.

its a vip plugin then... Only for VIPS admin level H
Godofwar is offline
EFFx
Veteran Member
Join Date: Feb 2016
Location: São Paulo, Brasil
Old 10-21-2016 , 18:17   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #7

I dont tested this, you can try:

PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fakemeta>
#include <hamsandwich>
#include <fun>

#define PLUGIN "Simple vip Menu"
#define VERSION "1.0"
#define AUTHOR "EFFx"

#define HasFlags(%1) (access(%1,ADMIN_LEVEL_H))
#define iPrefix "[VIPMenu]:"

new bool:iSpeed[33]
new 
bool:iGravity[33]
new 
bool:iInvisibility[33]

public 
plugin_init() 
{
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
RegisterHam(Ham_Spawn,"player","PlayerSpawn",1)
    
    
register_clcmd("say /vipmenu","OpenVipMenu")
}
public 
PlayerSpawn(id)
{
    if(!
is_user_alive(id))
        return 
HAM_IGNORED
        
    
if(iSpeed[id])
        
set_user_morespeed(id,350.0)
        
    
iGravity[id] = false
    iInvisibility
[id] = false
    
    set_user_gravity
(id,1.0)
    
set_user_renderingidkRenderFxNone000kRenderNormal)
    return 
HAM_IGNORED
    
}
public 
OpenVipMenu(id)
{
    if(!
is_user_alive(id))
        
client_print(id,print_chat,"%s You cannot open menu without be alive!",iPrefix)
        
    else if(!
HasFlags(id))
        
client_print(id,print_chat,"%s You aren't VIP, you cannot use this menu!",iPrefix)
        
    else
    {
        new 
iMenu menu_create("VIP Menu","vip_menu_h")
        
        
menu_additem(iMenu,"Speed")
        
menu_additem(iMenu,"Gravity")
        
menu_additem(iMenu,"2x HE")
        
menu_additem(iMenu,"Invisibility \d80%")
        
        
menu_display(id,iMenu)
    }
    return 
PLUGIN_HANDLED
}
public 
vip_menu_h(Index,iMenu,iOption)
{
    if(!
is_user_alive(Index))
    {
        
menu_destroy(iMenu)
        return 
PLUGIN_HANDLED
    
}
    switch(
iOption)
    {
        case 
0:
        {
            if(!
iSpeed[Index])
            {
                
iSpeed[Index] = true
                
                client_cmd
(Index,"spk items/gunpickup2")
                
set_user_morespeed(Index,350.0)
            }
            else
                
client_print(Index,print_chat,"%s You already have this item!",iPrefix)
        }
        case 
1:
        {
            if(!
iGravity[Index])
            {
                
iGravity[Index] = true
                
                client_cmd
(Index,"spk items/gunpickup2")
                
set_user_gravity(Index,0.8)
            }
            else
                
client_print(Index,print_chat,"%s You already have this item!",iPrefix)
        }
        case 
2:
        {
            if(!
user_has_weapon(Index,CSW_HEGRENADE))
            {
                
client_cmd(Index,"spk items/gunpickup2")
                
give_item(Index,"weapon_hegrenade")
                
cs_set_user_bpammo(Index,CSW_HEGRENADE,2)
            }
            else
                
client_print(Index,print_chat,"%s You already have this item!",iPrefix)
        }
        case 
3:
        {
            if(!
iInvisibility[Index])
            {
                
iInvisibility[Index] = true
                
                client_cmd
(Index,"spk items/gunpickup2")
                
set_user_renderingIndexkRenderFxNone000kRenderTransAlpha80 )
            }
            else
                
client_print(Index,print_chat,"%s You already have this item!",iPrefix)
        }
    }
    
menu_destroy(iMenu)
    return 
PLUGIN_HANDLED
}
stock set_user_morespeedidFloat:MSpeed = -1.0 
{
    
engfuncEngFunc_SetClientMaxspeedidMSpeed );
    
set_pevidpev_maxspeedMSpeed );
    return 
1;

__________________
• Ranking System • AutoMix 5vs5 System
• Web Ban System • Plugins for free

____________________________________________
For private works:
• Discord: EFFEXo#8850 • Steam: EFFEXo

Last edited by EFFx; 10-22-2016 at 14:19.
EFFx is offline
indraraj striker
Veteran Member
Join Date: Mar 2014
Location: Under the water
Old 10-21-2016 , 23:50   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #8

Quote:
Originally Posted by ish12321 View Post
AlliedModders Forum Index > AMX Mod X > Plugins > Suggestions / Requests
Thanks i doesnt knew that still i would say search becoz we have 1000+ vip plugins
btw ish12321, Godofwar is you ? instead of quoting my comment you must help him
__________________
Thanks everyone. #miss_you_all
indraraj striker is offline
ish12321
Veteran Member
Join Date: May 2016
Old 10-22-2016 , 06:50   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #9

Quote:
Originally Posted by indraraj striker View Post
Thanks i doesnt knew that still i would say search becoz we have 1000+ vip plugins
btw ish12321, Godofwar is you ? instead of quoting my comment you must help him
LoL Okay!
Next Time I would Help (Y)
__________________
['O|s|G'] | Death Wins a.k.a Ish Chhabra was here
ish12321 is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 10-22-2016 , 07:34   Re: Need a VIP Plugin for CTF+GUNXP
Reply With Quote #10

lol thx for the plugin
EFFx

i will try it tonight and will let u know work or not working
Godofwar 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 05:10.


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