AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   i cant see new models (https://forums.alliedmods.net/showthread.php?t=317616)

Tristanaa1 07-21-2019 10:10

i cant see new models
 
Hey, i have a little problem? eh.. i cant see new models on server...

here is code:
Code:

#include <amxmodx>
#include <amxmisc>
#include <cstrike>

public plugin_init() {
    register_plugin("Models", "1.0", "u")
    register_event("ResetHUD", "resetModel", "b")
    return PLUGIN_CONTINUE
}

public plugin_precache() {
    precache_model("models/player/bb_admin_i/bb_admin_i.mdl")
    precache_model("models/player/bb_vip_i/bb_vip_i.mdl")

    return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
        if (get_user_flags(id) & ADMIN_LEVEL_G)
        {
                new CsTeams:userTeam = cs_get_user_team(id)

                if(userTeam == CS_TEAM_CT)
                {
                        cs_set_user_model(id, "bb_vip_i")
                }
                else
                {
                      cs_reset_user_model(id)
                }
        }
        if (get_user_flags(id) & ADMIN_LEVEL_F)
        {
                new CsTeams:userTeam = cs_get_user_team(id)

                if(userTeam == CS_TEAM_CT)
                {
                        cs_set_user_model(id, "bb_admin_i")
                }
                else
                {
                        cs_reset_user_model(id)
                }
        }


        return PLUGIN_CONTINUE
}

Yes, i have "cl_minmodels 0"
Someone can help? Thanks..

Fuck For Fun 07-21-2019 10:20

Re: i cant see new models
 
Try this, trust me is best way to chamge zm models

https://forums.alliedmods.net/showth...06094?t=106094

if you won't
so try this:
https://forums.alliedmods.net/showpo...37&postcount=4

Tristanaa1 07-21-2019 11:14

Re: i cant see new models
 
Quote:

Originally Posted by Fuck For Fun (Post 2660031)
Try this, trust me is best way to chamge zm models

https://forums.alliedmods.net/showth...06094?t=106094

if you won't
so try this:
https://forums.alliedmods.net/showpo...37&postcount=4

tried both and still i cant see models, i see models only for zombies...

Tristanaa1 07-22-2019 10:40

Re: i cant see new models
 
Ok, i did it!
Answer:
use same code as basebuilder have to change models :) :3


All times are GMT -4. The time now is 17:19.

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