Vultr.com - Instant Cloud Server Deployment
Game Rank
Servers:
Teams:
Fans:
509892
Players:
13257
fsp1PM
#1
FREE VIP MENU FOR ALL PLAYERS
Apr 27, 2015 9:02 PM
Joined: Apr 04, 2015
Posts: 1
NEED VIP HELP
Ive seen on a couple servers this option :

menu

1- M4 + Deagle
2- AK47 + Deagle

can anyone help me please thanks ?
Last edited by: fsp1 May 01, 2015 3:12 PM
ary007PM
#2
May 10, 2015 10:48 AM
Joined: May 06, 2013
Posts: 16
You want VIP plugin in your server ?
ary007PM
#3
May 10, 2015 6:07 PM
Joined: May 06, 2013
Posts: 16
what help you want? you want those options in your server?
jelacaPM
#4
Jul 08, 2015 7:28 AM
Joined: Jul 07, 2015
Posts: 1
My name on cs 1.6 Mick and Peter Jelaca on Facebook.
amr_jaziehPM
#5
Jul 08, 2015 12:05 PM
Joined: Jun 08, 2015
Posts: 3
Vip on All Servers or no ??????

or

My Server ??????
hunain786PM
#6
Oct 28, 2017 9:26 AM
Joined: Oct 19, 2017
Posts: 1
How can i give free vip menu to all players please guide me
robin3skPM
#7
Oct 28, 2017 10:37 AM
Joined: Jun 06, 2015
Posts: 1364
hunain786 wrote:
How can i give free vip menu to all players please guide me

PHP code for plugin;
robin3sk wrote:

#include < amxmodx >
#include < cstrike >

#define PLUGIN "Vip Skins Menu"
#define VERSION "1.0"
#define AUTHOR "Alicx"

public plugin_precache()
{
precache_model("models/player/CT_1/CT_1.mdl");
precache_model("models/player/CT_2/CT_2.mdl");
precache_model("models/player/TT_1/TT_1.mdl");
precache_model("models/player/TT_2/TT_2.mdl");
}

public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)

register_clcmd( "say /myskin", "Skins_Menu" );
}

public Skins_Menu( id )
{
new menu = menu_create("Select Your Skin", "skin_menu")
menu_additem( menu, "Ct1", "1", ADMIN_LEVEL_H );
menu_additem( menu, "Ct2", "2", ADMIN_LEVEL_H );
menu_additem( menu, "Terro 1", "3", ADMIN_LEVEL_H );
menu_additem( menu, "Teroo 2", "4", ADMIN_LEVEL_H );

menu_setprop( menu, MPROP_EXIT, MEXIT_ALL );
menu_display( id, menu, 0 );
}

public skin_menu(id, menu, item)
{
if (item == MENU_EXIT)
{
menu_destroy(menu)
return PLUGIN_HANDLED;
}

new data[6], szName[64];
new access, callback;
menu_item_getinfo(menu, item, access, data,charsmax(data), szName,charsmax(szName), callback);
new key = str_to_num(data);

if(!is_user_alive(id))
return PLUGIN_HANDLED

switch(key)
{
case 1:
{
cs_set_user_model(id, "CT_1")
}
case 2:
{
cs_set_user_model(id, "CT_2")
}
case 3:
{
cs_set_user_model(id, "TT_1")
}
case 4:
{
cs_set_user_model(id, "TT_2")
}
}
return PLUGIN_CONTINUE;
}