小弟使用amx_adminmodel.sma設定ADM模組並轉成AMXX
進入遊戲還是顯示內建的模組 有確定自己是ADM
但刪掉插件指定的模組 開地圖之後會跳出缺少該模組的視窗
amx_adminmodel.sma內容/*##########################################################################
##
## -- SteamTools.net...
## ___ _____ ___ ___ _ __ _ ___ ___ _____ _
## / | | _ \ / |/ | | | | \ | | / |/ | | _ \ | |
## / /| | | | | | / /| /| | | | | \| | / /| /| | | | | | | |
## / / | | | | | | / / |__/ | | | | | |\ | / / |__/ | | | | | | | |
## / / | | | |_| | / / | | | | | | \ | / / | | | |_| | | |___
## /_/ |_| |_____/ /_/ |_| |_| |_| \_| /_/ |_| |_____/ |_____|
##
## |__ |__ o _|_ ___ __ __ o |__, ___
## -- |__) (__| (__(__( | ) | |_, (__/_ | ) ) | | \ (__/_
## |
##
## Originated as a simple idea back in 2004, it was forgotten due to
## lack of my 'Small' coding skills. However I have progressed in recent
## months and somehow crossed that old post with this concept in it. So
## naturally I challenged myself to see if I could do it, and voila! I
## could :)
##
## Once you join, you play a normal person for the first round, and for
## all remaining rounds your CT or TE models are custom. They now read
## "ADMIN" on front and back, and also have small "A" patches on the arms.
## I designed these models myself, it's very easy, just bring the textures
## into photoshop, tweak out, and replace.
##
## Enjoy!
##
##
## CHANGELOG
##------------------------------------------------------------------------
## 2) v1.1.1 - Fixed missing event
## 1) v1.1.0 - Fixed VIP and other model bugs
##
##
## INSTALLATION
##------------------------------------------------------------------------
## 1) Unzip (which you may have done already)
## 2) Place 'amx_adminmodel.amxx' in 'cstrike/addons/amxmodx/plugins'
## 3) Add a line in 'configs/plugins.ini' containing 'amx_adminmodel.amxx'
## 4) Put the 'admin_ct' and 'admin_te' folders into 'cstrike/models' folder
## 5) -- Visit SteamTools.net... and enjoy your new plugin!
##
##
##
## THE CVARs
##------------------------------------------------------------------------
##
## No CVARs for this plugin :)
##
##
##########################################################################*/
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
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.mdl") //ADM警察
precache_model("models/player/admin/te.mdl") //ADM歹徒
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, "te")
}
else if(userTeam == CS_TEAM_CT) {
cs_set_user_model(id, "ct")
}
else {
cs_reset_user_model(id)
}
}
return PLUGIN_CONTINUE
}
plugins.ini內容; AMX Mod X 插件調用
; 不用的插件請在前面加上 ;
; 管理員 管理模式類 —— 只能選擇一種
admin.amxx ; 管理員 管理模式類 (所有的管理員相關的插件都需要此插件)
;admin_sql.amxx ; 管理員 管理模式類 - SQL 版本 (若使用此模式請注釋掉 admin.amxx)
; 系統基本類
admincmd.amxx ; 基本的管理員控制台管理命令
adminhelp.amxx ; 管理員控制台命令幫助信息
adminslots.amxx ; 管理員預留通道
multilingual.amxx ; 多種語言管理
; 菜單/目錄類
menufront.amxx ; 提供管理員菜單的格式
cmdmenu.amxx ; 命令菜單(聲音播放等許多設置)
plmenu.amxx ; 玩家菜單 (踢人, 封禁玩家, 客戶端命令等.)
telemenu.amxx ; 傳送菜單 【可以將某一玩家傳送到指定地點】(需要開啟娛樂模塊)
mapsmenu.amxx ; 地圖菜單 (投票更換地圖, 直接更換地圖)
pluginmenu.amxx ; 菜單命令/通過調用插件設置遊戲參數
; 聊天\信息類
adminchat.amxx ; 在控制台裡聊天的命令
antiflood.amxx ; 阻止客戶端在服務器上瘋狂發信息(呵呵……就是灌水!)
scrollmsg.amxx ; 屏幕下方滾動字幕
imessage.amxx ; 屏幕中央彩色字體
adminvote.amxx ; 投票菜單
; 地圖類
nextmap.amxx ; 顯示下一張地圖的插件
mapchooser.amxx ; 在下一張地圖開始前自動發起投票地圖決定下一張地圖的插件
timeleft.amxx ; 顯示當前地圖剩餘時間的插件
; 配置類
pausecfg.amxx ; 通過菜單來暫停/恢復插件的使用 【管理功能】
statscfg.amxx ; 通過菜單來設置管理數據統計插件【管理功能】
; 反恐精英類
restmenu.amxx ; 禁用武器功能
statsx.amxx ; 在人物死亡和一個回合結束的時候顯示當前的統計信息 (需要開啟 CSX 模塊!)
miscstats.amxx ; 為反恐精英收集各種事件的信息。
stats_logging.amxx ; 武器數據統計記錄 (需要開啟 CSX 模塊!)
; 允許使用 AMX Mod 插件
amxmod_compat.amxx ; AMX Mod 向後兼容層
; 自定義插件 - 第三方插件請加在下面
; 添加方法:
; 請將第三方插件的名字帶上後綴名加在下面。例如:123456.amxx
;high_ping_kicker.amxx ; 高ping玩家自動踢出(暫時不好用,推薦不去掉這項的;)
say_menu.amxx ; Say menu 菜單
amx_hpk.amxx ; 高ping自動踢強化版(這是我在國外站上找到,我自己把他給簡單漢化了一下,(*^__^*) 嘻嘻……)
anticamping_multi.amxx ; 蹲坑監視插件
dib.amxx ;死亡軌跡插件
GHW_Weapon_Replacement.amxx ;模組插件
hats32.amxx ;帽子模組插件
lastmanbets.amxx ;賭博插件
3rdview.amxx ;第三人稱插件
csdm_mod.amxx ;死鬥插件
amx_adminmodel.amxx ;