几个比较常用的脚本:
// 蹲跳脚本
// 就是用超级跳代替普通跳。
alias +cjump "+jump; +duck"
alias -cjump "-jump; -duck"
bind "space" "+cjump" (把超级跳bind到空格键)
// 拆弹掩护脚本
// 当你拆弹时通知队友掩护你,把拆弹bind到某键。
alias +defuse "+use; radio1; menuselect 1; slot10; say_team Cover me I'm defusing the bomb"
alias -defuse "-use; slot10"
bind "d" "+defuse" (把拆弹掩护bind到d键)
// 放弹掩护脚本
// 当你放boom时通知队友掩护你,bind到b键。
alias +bomb "weapon_c4; +duck; +attack; wait; radio1; menuselect 1; slot10; say_team Cover me I'm planting the bomb"
alias -bomb "-duck; -attack; slot10"
bind "b" "+bomb" (把放弹掩护bind到b键)
// 人质营救脚本
// 这个脚本把“use"加到跳中,你要做的就是跳到人质的附近就可以救他们了。
alias +jumpres "+jump; wait; +use"
alias -jumpres "-jump; wait; -use"
bind "enter" "+jumpres" (bind到“enter”键)
// 停止换弹夹
// 这个脚本可以停止当前武器的换弹夹并快速换回当前武器。
alias reload_stop "weapon_knife; wait; wait; wait; lastinv"
bind "q" "reload_stop" (bind到q键)
// 蹲走脚本
// 这个脚本允许你无需按着一个键蹲下,可以按一下蹲,再按一下站。
alias duck_t "duck_on"
alias duck_on "alias duck_t duck_off; +duck; developer 1; echo Ducking enabled; developer 0"
alias duck_off "alias duck_t duck_on; -duck; developer 1; echo Standing enabled; developer 0"
bind "x" "duck_t" (bind到x键)
// 跑走脚本
// 这个脚本允许你无需按着一个键走,可以按一下走,再按一下跑。
alias walk_t "walk_on"
alias walk_on "alias walk_t walk_off; +speed; developer 1; echo alking enabled; de
上一页 [1] [2] [3] [4] [5] [6] 下一页