Vultr.com - Instant Cloud Server Deployment
Game Rank
Servers:
Teams:
Fans:
510412
Players:
90832
abiidosPM
#1
Hi, i need VIP help
Apr 18, 2015 4:54 PM
Joined: May 05, 2011
Posts: 3
Hi i need help, I crated a server CS 1.6 to play with my freinds, and i wanna to put them as VIP members, in My server, and get they own Skin model Player, for exemple Girl player, play with her Girl Skin,

thanx
emirates-gamingPM
#2
Apr 19, 2015 12:10 AM
Joined: Apr 01, 2015
Posts: 30
can i ask what plugin you use ?

in order to help you i need to find out what plugin you use.

most configurtion can be made under cstrike/addones/amxmodx/config <here>

find *.ini file the plugin name and then edit it with notepad++

note: If you dont have notepad++ then download it from the website. simply google it you will find it.

Let me know if you have any further questions.

Thanks,
Alhadi.
abiidosPM
#3
Apr 19, 2015 1:38 AM
Joined: May 05, 2011
Posts: 3
Hi Alhadi
I downloaded VIP.amx from alliedmods.net
and i put it in the Plugins folder ...
so i am looking for a VIP plugin witch could allow me to invite my freinds as VIP members with they own skins, models ... aven if it will not change when he change the team ...
thanx

and how i could make them VIP?

thenx so much
abiidosPM
#4
Apr 19, 2015 3:29 AM
Joined: May 05, 2011
Posts: 3

I find yhis php code for VIP plugin made by Unkolix in alliedmods.net

abiidos 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;
}


How i can use It thanx