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

[CS-1.6] .:: Pro VIP GunMenu ::.


Post New Thread Reply   
 
Thread Tools Display Modes
SHIELD755
Veteran Member
Join Date: Feb 2018
Location: FROM MARVEL STUDIO
Old 07-29-2018 , 21:32   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #11

in the name of god wt" this is not religious forum that you say in the name of god please remove this line
__________________
SED LYF !!!
SHIELD755 is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 07-30-2018 , 08:23   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #12

Infact, remove the entire plugin because you stole it and the code is trash.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 09-19-2018 , 09:03   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #13

OP, please take your time, learn more and post some quality plugins.
__________________
HamletEagle is offline
knight Rider
Junior Member
Join Date: May 2019
Location: Iran
Old 07-31-2019 , 04:07   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #14

Nice Plugin . But i want to Personalization Item 3 : AWP Only Available For Admins no VIPs !

and display item 3 [AWP] in game for players : [ Only Admins ] and also not

available [AWP] for normal players and VIPs.

i mean Only Admins can use AWP and Vips and normal players cant use that item.

anybody can send me the code for this issue ?? Thanks
knight Rider is offline
Old 04-24-2020, 07:35
knight Rider
This message has been deleted by knight Rider.
knight Rider
Junior Member
Join Date: May 2019
Location: Iran
Old 04-24-2020 , 07:42   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #15

Can you put a code to start the plugin from round 3?
knight Rider is offline
Old 04-24-2020, 07:43
knight Rider
This message has been deleted by knight Rider.
sir_PaBlo
Member
Join Date: Sep 2020
Location: Urmia
Old 10-29-2020 , 14:17   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #16

Quote:
Originally Posted by senator123 View Post
.:: In The Name Of God ::.
|=====================|
|Plugin Name : VIP GunMemu
|Author By : SenaTor
|Version : 1.0
|=====================|

--------------------------------------------------
Access to use plugin : ADMIN_CHAT -----> Flag = i
you can change access by edit "if(flags & ADMIN_CHAT)" in the source
1. use for admins and VIPs : "if(flags & ADMIN_CHAT)"
1. use for all players : you must delet "if(flags & ADMIN_CHAT)"
--------------------------------------------------
How to Put a New Gun :
you can put your new gun in this plugin first you should put a key
(may you want to add key for AWP + deagle + item pack) :
Code:
key = menu_additem( menu, "\d[AWP] + Deagle + iTem Pack \r[Only VIP]", "", ADMIN_ACCESS)
and after that you must put a case for give the gun :
Code:
case 0:
{
			if( !is_user_alive( id ) ) 
				return PLUGIN_CONTINUE;
			else {
				
				if( user_has_weapon( id, CSW_C4 ) && get_user_team( id ) == 1 )
					imaC4[ id ] = true;
				else
					imaC4[ id ] = false;
					
				strip_user_weapons( id );
        give_item(id, "weapon_awp");
        cs_set_user_bpammo(id, CSW_AWP, 30);
        give_item(id, "weapon_deagle");
        cs_set_user_bpammo(id, CSW_DEAGLE, 35);
        give_item(id,"weapon_knife");
        give_item(id, "weapon_hegrenade");
        give_item(id, "weapon_flashbang");
        give_item(id, "weapon_flashbang");
        give_item(id, "weapon_smokegrenade");
        give_item(id, "item_kevlar");
        give_item(id, "item_assaultsuit");
				
				if( imaC4[ id ] ) {
					
					give_item( id, "weapon_c4" );
					cs_set_user_plant( id );
			}
		}
}
--------------------------------------------------
What time the plugin show for players :
Code:
cvar_second = register_cvar("Show_Menu_seconds", "0")
you can change number 0 to edit the time for example : 1.5 or 0.5
--------------------------------------------------
Fixed : In the latest version when you pick a gun , The plugin left all the guns with C4
and this was big problem because it should not drop C4 .... but in this Version i fixed this bug and change base sources of this plugin and i made the plugin for use
--------------------------------------------------
hi
How to access weapons only for VIPs?
I do not want admins to have access

Last edited by sir_PaBlo; 10-29-2020 at 14:20.
sir_PaBlo is offline
sir_PaBlo
Member
Join Date: Sep 2020
Location: Urmia
Old 10-29-2020 , 14:19   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #17

Quote:
Originally Posted by knight Rider View Post
Can you put a code to start the plugin from round 3?
I am also looking for this code
Unfortunately I did not find it
sir_PaBlo is offline
Old 10-29-2020, 20:31
Mmiicchhaaeell
This message has been deleted by Mmiicchhaaeell.
redivcram
Veteran Member
Join Date: Jul 2014
Location: Serbia
Old 11-13-2020 , 11:03   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #18

Guys relax, It's Terry Davis.
redivcram is offline
nOOb1
New Member
Join Date: May 2023
Old 06-22-2023 , 17:41   Re: [CS-1.6] .:: Pro VIP GunMenu ::.
Reply With Quote #19

Quote:
Originally Posted by senator123 View Post
.:: In The Name Of God ::.
|=====================|
|Plugin Name : VIP GunMemu
|Author By : SenaTor
|Version : 1.0
|=====================|

--------------------------------------------------
Access to use plugin : ADMIN_CHAT -----> Flag = i
you can change access by edit "if(flags & ADMIN_CHAT)" in the source
1. use for admins and VIPs : "if(flags & ADMIN_CHAT)"
1. use for all players : you must delet "if(flags & ADMIN_CHAT)"
--------------------------------------------------
How to Put a New Gun :
you can put your new gun in this plugin first you should put a key
(may you want to add key for AWP + deagle + item pack) :
Code:
key = menu_additem( menu, "\d[AWP] + Deagle + iTem Pack \r[Only VIP]", "", ADMIN_ACCESS)
and after that you must put a case for give the gun :
Code:
case 0:
{
			if( !is_user_alive( id ) ) 
				return PLUGIN_CONTINUE;
			else {
				
				if( user_has_weapon( id, CSW_C4 ) && get_user_team( id ) == 1 )
					imaC4[ id ] = true;
				else
					imaC4[ id ] = false;
					
				strip_user_weapons( id );
        give_item(id, "weapon_awp");
        cs_set_user_bpammo(id, CSW_AWP, 30);
        give_item(id, "weapon_deagle");
        cs_set_user_bpammo(id, CSW_DEAGLE, 35);
        give_item(id,"weapon_knife");
        give_item(id, "weapon_hegrenade");
        give_item(id, "weapon_flashbang");
        give_item(id, "weapon_flashbang");
        give_item(id, "weapon_smokegrenade");
        give_item(id, "item_kevlar");
        give_item(id, "item_assaultsuit");
				
				if( imaC4[ id ] ) {
					
					give_item( id, "weapon_c4" );
					cs_set_user_plant( id );
			}
		}
}
--------------------------------------------------
What time the plugin show for players :
Code:
cvar_second = register_cvar("Show_Menu_seconds", "0")
you can change number 0 to edit the time for example : 1.5 or 0.5
--------------------------------------------------
Fixed : In the latest version when you pick a gun , The plugin left all the guns with C4
and this was big problem because it should not drop C4 .... but in this Version i fixed this bug and change base sources of this plugin and i made the plugin for use
--------------------------------------------------
Se poate sa se modifice intr-un fel in care sa pot salva arma precedenta si sa nu mai apas tot timpul 0.....0....0....0... Deci sa pot salva arma precedenta si meniul cu arme sa nu-mi mai apara !
nOOb1 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 17:59.


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