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

[REQ] VIP plugin for cs 1.6


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Ciupanezul
Junior Member
Join Date: Feb 2020
Old 02-29-2020 , 07:07   [REQ] VIP plugin for cs 1.6
Reply With Quote #1

Hi guys, i m new here and I need your help .


I would need, if somebody can help me of VIP plugin with the following features :


--> VIP CT MENU <--

- M4A1/Ak47 gold (to offer 30% more damage than usual damage for all players) at $5.000 price
- no flash to buy (4000$).
- VIP flag at scoreboard

PASIVE : x3 jump
+15 hp per kill
+ 500$ per kill
personalized skin

----> VIP T MENU <-----

- super knife (12.000$) to offer 30% more dmg then usual damage to simple knife
- grab
- pack of grenades (1 flash + 1 smoke + 1 HE) at 5.000$ price

PASIVE : x3 jump
+15 hp per kill
+ 500$ per kill
personalized skin.


If anyone can help me with this request I would be very grateful! Thx so much <3 <3

Last edited by Ciupanezul; 02-29-2020 at 07:08.
Ciupanezul is offline
Napoleon_be
Veteran Member
Join Date: Jul 2011
Location: Belgium
Old 03-03-2020 , 05:13   Re: [REQ] VIP plugin for cs 1.6
Reply With Quote #2

Few questions:

1) Should the players have 3x gravity, or 3x multi jump?
2) What does "no flash to buy" mean?
3) What is "grab" supposed to do?
__________________
Napoleon_be is offline
Send a message via Skype™ to Napoleon_be
Ciupanezul
Junior Member
Join Date: Feb 2020
Old 03-03-2020 , 13:54   Re: [REQ] VIP plugin for cs 1.6
Reply With Quote #3

Quote:
Originally Posted by Napoleon_be View Post
Few questions:

1) Should the players have 3x gravity, or 3x multi jump?
2) What does "no flash to buy" mean?
3) What is "grab" supposed to do?
Hi !
1) players have x3 jump, not gravity.
2) unable to get flash from another player (anti flash) at shop
3) u can except that, is not very necessary. I would be much more satisfied with previous requirements
Ciupanezul is offline
Calibru09
Junior Member
Join Date: Jan 2020
Location: Romania
Old 03-06-2020 , 00:08   Re: [REQ] VIP plugin for cs 1.6
Reply With Quote #4

I'm interested too about this vip plugin
Calibru09 is offline
Send a message via AIM to Calibru09 Send a message via Yahoo to Calibru09 Send a message via Skype™ to Calibru09
Napoleon_be
Veteran Member
Join Date: Jul 2011
Location: Belgium
Old 03-07-2020 , 08:56   Re: [REQ] VIP plugin for cs 1.6
Reply With Quote #5

I'm currently too busy to finish this. I've started this and i'll post the code below for others to finish. Also this was written in a hurry, this isn't the most optimal way to write the plugin.

PHP Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <cstrike>
#include <fun>
#include <hamsandwich>
#include <engine>

#define PLUGIN "VIP"
#define VERSION "1.0"
#define AUTHOR "NapoleoN#"

#define VIP_LEVEL ADMIN_LEVEL_H

new const szCommands[][] = 
{
    
"/vip",
    
"/vipmenu",
    
"/vmenu"
}

new const 
szModelPaths[][] =
{
    
"models/vip/v_gold_ak47.mdl",
    
"models/vip/v_gold_m4a1.mdl",
    
"models/vip/v_super_knife.mdl",
    
"models/player/vip/vip.mdl"
};

new 
szTerMenu;
new 
szCtMenu;

public 
plugin_init() 
{
    
register_plugin(PLUGINVERSIONAUTHOR);
    
    new 
szTemp[50];
    for(new 
isizeof(szCommands); i++)
    {
        
formatex(szTempcharsmax(szTemp), "say %s"szCommands[i]);
        
register_clcmd(szTemp"ShowVipMenu");
        
        
formatex(szTempcharsmax(szTemp), "say_team %s"szCommands[i]);
        
register_clcmd(szTemp"ShowVipMenu");
    }
    
    
RegisterHam(Ham_Spawn"player""PostPlayerSpawn"1);
    
    
register_event("DeathMsg""eDeath""a");
    
    
szTerMenu menu_create("VIP T MENU""TerrorHandler");
    
    
menu_additem(szTerMenu"Super Knife (Deals 30% more damage) $12.000");
    
menu_additem(szTerMenu"Pack of Grenades (HE, Flash, smoke) $5.000");
    
    
szCtMenu menu_create("VIP CT MENU""CtHandler");
    
    
menu_additem(szCtMenu"Gold M4A1/AK47 (Deals 30% more damage) $5.000");
    
menu_additem(szCtMenu"Immunity to Flash (No Blind) 4.000$");
}

public 
plugin_precache()
{
    for(new 
isizeof(szModelPaths); i++)
    {
        
precache_model(szModelPaths[i]);
    }
}

public 
eDeath()
{
    new 
iAttacker read_data(1);
    new 
iVictim read_data(2);
    
    if(
iAttacker != iVictim && iAttacker != && cs_get_user_team(iAttacker) != cs_get_user_team(iVictim))
    {
        
cs_set_user_money(iAttackerclamp(cs_get_user_money(iAttacker) + 500016000));
        
        if(
is_user_alive(iAttacker))
        {
            
set_user_health(iAttackerclamp(get_user_health(iAttacker) + 150200));
        }
    }
}

public 
PostPlayerSpawn(id)
{
    if(
get_user_flags(id) & VIP_LEVEL && is_user_alive(id))
    {
        
cs_set_user_model(id"vip");
    }
}

public 
ShowVipMenu(id)
{
    if(
get_user_flags(id) & VIP_LEVEL)
    {
        new 
CsTeams:iTeam cs_get_user_team(id);
        
        if(
iTeam == CS_TEAM_T)
        {
            
menu_display(idszTerMenu);
        }
        
        else if(
iTeam == CS_TEAM_CT)
        {
            
menu_display(idszCtMenu);
        }
    }
}

public 
TerrorHandler(idmenuitem)
{
    if(
is_user_alive(id))
    {
        switch(
item)
        {
            case 
0:
            {
                
entity_set_string(idEV_SZ_viewmodelszModelPaths[2])
            }
            
            case 
1:
            {
                
give_item(id"weapon_hegrenade");
                
give_item(id"weapon_smokegrenade");
                
give_item(id"weapon_flashbang");
            }
        }
    }
}

public 
CtHandler(idmenuitem)
{
    

__________________
Napoleon_be is offline
Send a message via Skype™ to Napoleon_be
Calibru09
Junior Member
Join Date: Jan 2020
Location: Romania
Old 03-08-2020 , 14:58   Re: [REQ] VIP plugin for cs 1.6
Reply With Quote #6

i've spoked with ciupa and we can wait .
When you have time
is very hard these days to found someone to write a plugin free or paid

Last edited by Calibru09; 03-08-2020 at 15:01.
Calibru09 is offline
Send a message via AIM to Calibru09 Send a message via Yahoo to Calibru09 Send a message via Skype™ to Calibru09
Calibru09
Junior Member
Join Date: Jan 2020
Location: Romania
Old 03-19-2020 , 18:27   Re: [REQ] VIP plugin for cs 1.6
Reply With Quote #7

up?
Calibru09 is offline
Send a message via AIM to Calibru09 Send a message via Yahoo to Calibru09 Send a message via Skype™ to Calibru09
Calibru09
Junior Member
Join Date: Jan 2020
Location: Romania
Old 03-27-2020 , 03:48   Re: [REQ] VIP plugin for cs 1.6
Reply With Quote #8

up?
Calibru09 is offline
Send a message via AIM to Calibru09 Send a message via Yahoo to Calibru09 Send a message via Skype™ to Calibru09
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 14:24.


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