A fun little script that goes from Zeusmode (Godmode+Noclip) to Godmode to Shadow Cat (Noclip) to normal and announces it with a normal say command. Useful to terminate a hacker the manual way, intimidate players, spectate without using spectator or just plain abuse admin.

Press \ button above Enter to cycle through the modes.
Press P while in a mode to toggle it on or off

In order for the script to work, you have to press CTRL+H once you paste it into userconfig.cfg and replace "ign" (without quotes) with your full in game name, since it uses that for the amx commands. Don't replace it with your steam id, because the script announces "Your name is now God" or whatever, and it would say your steam id instead.
I'm thinking of changing the say command to amx_csay or even a namechange (for example it would change your name to "Your name (God)" or whatever) but I'm hesitant to do so since the say command is already pretty spamish.
If you want me to make an alternate version without the say command, tell me.
Oh, and if you want it to not auto mode you when u cycle through the modes tell me.

Код:
//Press Ctrl+H and replace ign with your full in game name

//amx,say,bind commands
alias gmo "amx_godmode ign 0"
alias nmo "amx_noclip ign 0"
alias nzt "say ign is Zeus"
alias nzto "say ign is no longer Zeus"
alias gm "amx_godmode ign 1"
alias nm "amx_noclip ign 1"
alias bz "bind p zeus_cyc"
alias szm "say [Zeus Mode]"
alias gt "say ign is God"
alias sgm "say [God Mode]"
alias ngt "say ign is no longer God"
alias bg "bind p god_cyc"
alias snm "say [Shadow Cat Mode]"
alias st "say ign is Shadow Cat"
alias nst "say ign is no longer Shadow Cat"
alias bn "bind p cat_cyc"
alias nrm "say [Human Mode]"
alias uu "unbind p"

//Mode toggle
alias admin_cyc "acyc1"
alias acyc1 "gm; nm; szm; bz; alias admin_cyc acyc2"
alias acyc2 "gmo; nmo; bg; sgm; gm; alias admin_cyc acyc3"
alias acyc3 "gmo; nm; bn; snm; alias admin_cyc acyc4"
alias acyc4 "nmo; nrm; uu; alias admin_cyc acyc1"

//Zeus toggle
alias zeus_cyc "zcyc1"
alias zcyc1 "nzto; gmo; nmo; alias zeus_cyc zcyc2"
alias zcyc2 "gm; nm; nzt; alias zeus_cyc zcyc1"

//God toggle
alias god_cyc "gcyc1"
alias gcyc1 "gmo; ngt; alias god_cyc gcyc2"
alias gcyc2 "gt; gm ; alias god_cyc gcyc1"

//Shadow Cat toggle
alias cat_cyc "ccyc1"
alias ccyc1 "nmo; nst; alias cat_cyc ccyc2"
alias ccyc2 "nm; st; alias cat_cyc ccyc1"

bind "\" "admin_cyc"