|
发表于 2009-10-27 22:17:24
|
显示全部楼层
来自 中国–广东–佛山
//4个皮肤
- #include <amxmodx>
- #include <amxmisc>
- #include <cstrike>
- #include <hamsandwich>
- // 请修改成相应的权限
- #define ADMIN_OP_LEVEL ADMIN_LEVEL_F // "q"
- #define ADMIN_VIP_LEVEL ADMIN_LEVEL_G // "r"
- // 请修改成你所需要的模型
- new g_Model[4][]={
- "CVTOP_T", // OP(T)
- "CVTOP_CT", // OP(CT)
- "CVTVIP_T", // VIP(T)
- "CVTVIP_CT" // VIP(CT)
- }
- public plugin_init(){
- register_plugin("Admin Model","2.3","Rulzy")
- RegisterHam( Ham_Spawn, "player", "fw_PlayerSpawn", 1 )
- }
- public plugin_precache(){
- new modelname[64]
- for(new i=0;i<6;i++){
- formatex(modelname, 63, "models/player/%s/%s.mdl", g_Model[i], g_Model[i])
- precache_model(modelname)
- }
- }
- public fw_PlayerSpawn(id)
- {
- if(!is_user_connected(id) || !is_user_alive(id)) return PLUGIN_CONTINUE;
- new CsTeams:userTeam = cs_get_user_team(id);
- new ModelIndex = -1;
- new flags = get_user_flags(id);
- if (flags & ADMIN_OP_LEVEL){
- if (userTeam == CS_TEAM_T){
- ModelIndex = 0
- }
- else if(userTeam == CS_TEAM_CT) {
- ModelIndex = 1
- }
- }else if (flags & ADMIN_VIP_LEVEL){
- if (userTeam == CS_TEAM_T){
- ModelIndex = 2
- }
- else if(userTeam == CS_TEAM_CT){
- ModelIndex = 3
- }
- }
- if(ModelIndex==-1)
- {
- cs_reset_user_model(id);
- }else{
- cs_set_user_model(id, g_Model[ModelIndex]);
- }
-
- return PLUGIN_CONTINUE
- }
复制代码 |
|