Raised This Month: $ Target: $400
 0% 

Problem with change Skin VIP.


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
elantra86
Member
Join Date: Feb 2014
Old 05-15-2014 , 05:07   Problem with change Skin VIP.
Reply With Quote #1

Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <engine>
#include <csx>

public plugin_init() {
        register_plugin("AMX Admin Model", "1.1.1", "whitemike")
        register_event("ResetHUD", "resetModel", "b")
        return PLUGIN_CONTINUE
}

public plugin_precache() {
        precache_model("models/player/admin_ct/admin_ct.mdl")
        precache_model("models/player/admin_te/admin_te.mdl")
        precache_model("models/player/admin_ct/admin_ctT.mdl")
        precache_model("models/player/admin_te/admin_teT.mdl")

        return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
        if (get_user_flags(id) & ADMIN_KICK) {
                new CsTeams:userTeam = cs_get_user_team(id)
                if (userTeam == CS_TEAM_T) {
                        cs_set_user_model(id, "admin_te")
                        entity_set_string(id, EV_SZ_viewmodel, "models/player/admin_te/admin_teT.mdl")
                }
                else if(userTeam == CS_TEAM_CT) {
                        cs_set_user_model(id, "admin_ct")
                        entity_set_string(id, EV_SZ_viewmodel, "models/player/admin_ct/admin_ctT.mdl")
                }
                else {
                        cs_reset_user_model(id)
                }
        }

        return PLUGIN_CONTINUE
}
where i do mistake pls help!!!
skin of player change succesfull.
but mdl of hands (in first person) won't change.

thkx in advance & sorry for my eng.
elantra86 is offline
Backstabnoob
BANNED
Join Date: Feb 2009
Location: Iwotadai Dorm
Old 05-15-2014 , 05:40   Re: Problem with change Skin VIP.
Reply With Quote #2

The T model are textures of the main model if they get separated. You need an actual v_ model
Backstabnoob is offline
elantra86
Member
Join Date: Feb 2014
Old 05-15-2014 , 11:13   Re: Problem with change Skin VIP.
Reply With Quote #3

you mean my script is right ?
just need write model?
elantra86 is offline
Backstabnoob
BANNED
Join Date: Feb 2009
Location: Iwotadai Dorm
Old 05-15-2014 , 13:42   Re: Problem with change Skin VIP.
Reply With Quote #4

No, you need a v_ model for the hands. What you're doing is setting a part of player model as hands which won't work, the best thing it will give you is a server crash.
Backstabnoob is offline
elantra86
Member
Join Date: Feb 2014
Old 05-17-2014 , 14:39   Re: Problem with change Skin VIP.
Reply With Quote #5

Ok understand u thx!!! very much
elantra86 is offline
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 09:48.


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