Raised This Month: $ Target: $400
 0% 

Admin / VIP model [Counter Strike 1.6]


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
ZaX
Senior Member
Join Date: Jan 2015
Old 07-04-2020 , 05:54   Re: Admin / VIP model [Counter Strike 1.6]
Reply With Quote #1

Code:
#include <amxmodx> #include <cstrike> #include <hamsandwich> #define MODEL_DELAY 0.5 enum _:ModelsInfo {     Flag,     CTModel[32],     TModel[32] } new const g_eModels[][ModelsInfo] = {     // <Admin flag> <CT skin> <T skin>     { ADMIN_LEVEL_A, "owner_ct", "owner_t" },     { ADMIN_LEVEL_B, "admin_ct", "admin_t" } } new Trie:g_tModels public plugin_init() {     register_plugin("Multiple Player Models", "1.0", "OciXCrom")     RegisterHam(Ham_Spawn, "player", "OnPlayerSpawn", 1) } public plugin_end()     TrieDestroy(g_tModels) public plugin_precache() {     g_tModels = TrieCreate()         for(new i; i < sizeof(g_eModels); i++)     {         precache_player_model(g_eModels[i][CTModel])         precache_player_model(g_eModels[i][TModel])     } } public OnPlayerSpawn(id)     set_task(MODEL_DELAY, "SetModel", id)     public SetModel(id) {     if(is_user_alive(id))     {         static bool:bMatch, iFlags, i         bMatch = false                 for(iFlags = get_user_flags(id), i = 0; i < sizeof(g_eModels); i++)         {             if(iFlags & g_eModels[i][Flag])             {                 switch(cs_get_user_team(id))                 {                     case CS_TEAM_CT: cs_set_user_model(id, g_eModels[i][CTModel])                     case CS_TEAM_T: cs_set_user_model(id, g_eModels[i][TModel])                 }                                 client_print(id, print_chat, "* Your received the model %s", g_eModels[i][cs_get_user_team(id) == CS_TEAM_CT ? CTModel : TModel])                 bMatch = true                 break             }         }                 if(!bMatch)         {             static szModel[32]             cs_get_user_model(id, szModel, charsmax(szModel))                         if(TrieKeyExists(g_tModels, szModel))                 cs_reset_user_model(id)         }     } } precache_player_model(szModel[]) {     TrieSetCell(g_tModels, szModel, 1)         static szFile[128]     formatex(szFile, charsmax(szFile), "models/player/%s/%s.mdl", szModel, szModel)     precache_model(szFile)     replace(szFile, charsmax(szFile), ".mdl", "T.mdl")         if(file_exists(szFile))         precache_model(szFile) }
ZaX is offline
Reply


Thread Tools
Display Modes

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 07:39.


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