SHUN6游戏秘籍
网站地图 RSS订阅
高级搜索 收藏本站
秘籍首页 | 游戏资讯 | 单机游戏 | 网络游戏 | 游戏秘技 | 游戏文学 | 游戏介绍 | 游戏知识 | 电子竞技 | PS2攻略 | PS 攻略 | SFC攻略 | SS 攻略 | XBOX攻略
PC 游戏 | ARC 攻略 | MD 攻略 | NGC 攻略 | FC 攻略 | GB 攻略 | GBA攻略 | 游戏快报 | 网游攻略 | 玩家技巧 | 游戏下载 | 游戏说明 | 单机游戏 | 网络游戏
游戏行业 | 电视游戏 | 游戏文化 | 游戏硬件 | 电玩硬件 | 游戏评测 | 游戏动漫 | 手机游戏 | 跑跑卡丁车 | 游戏攻略 | 魔兽世界 | 新游戏攻略 | 新游戏秘籍
当前位置:秘籍首页>游戏专题>RUSH冲锋>文章内容
RUSH冲锋教你如何在RUSH中吃药
来源:游戏秘籍转载 作者:游戏网友贡献 [注册会员分享你的秘籍]
其实现在版本,把药水的代码给忘了,只要我们补上,就可以了!

用文本文档打开RUSH/ControlsSV/Controls.ctl

----------------------我是无敌分割线----------------------------

Control
Name: TTRS FireL
Control1: Button 1
Device1: Mouse
Pressed: ctl_bFireL = 1;
Released: ctl_bFireL = 0;

Control
Name: TTRS FireR
Control1: Button 2
Device1: Mouse
Pressed: ctl_bFireR = 1;
Released: ctl_bFireR = 0;

Control
Name: TTRS Up/Jump
Control1: Space
Device1: Keyboard
Pressed: ctl_bJump = 1;
Released: ctl_bJump = 0;


Control
Name: TTRS Guard
Control1: E
Device1: Keyboard
Pressed: ctl_bGuard = 1;
Released: ctl_bGuard = 0;

Control
Name: TTRS Camera Zoom In
Control1: Mouse Wheel Up
Device1: Mouse
Pressed: ctl_fZoom = -0.22;

Control
Name: TTRS Camera Zoom Out
Control1: Mouse Wheel Down
Device1: Mouse
Held: ctl_fZoom = +0.22;

Control
Name: TTRS Change Radar Zoom
Control1: F
Device1: Keyboard
Pressed: ctl_bChangeRadarZoom = 1;
Released: ctl_bChangeRadarZoom = 0;

Control
Name: TTRS Change Weapon
Control1: Q
Device1: Keyboard
Pressed: ctl_bChangeWeapon = 1;
Released: ctl_bChangeWeapon = 0;

Control
Name: TTRS Change Mode
Control1: C
Device1: Keyboard
Pressed: ctl_bChangeMode = 1;
Released: ctl_bChangeMode = 0;

Control
Name: TTRS Change Character
Control1: X
Device1: Keyboard
Pressed: ctl_bChangeChara = 1;
Released: ctl_bChangeChara = 0;

Control
Name: TTRS Move Forward
Control1: W
Device1: Keyboard
Released: ctl_fMoveForward = 0;
Held: ctl_fMoveForward = ctl_fMoveForward + ctl_fInputValue;

Control
Name: TTRS Move Backward
Control1: S
Device1: Keyboard
Released: ctl_fMoveBackward = 0;
Held: ctl_fMoveBackward = ctl_fMoveBackward + ctl_fInputValue;

Control
Name: TTRS Move Left
Control1: A
Device1: Keyboard
Released: ctl_fMoveLeft = 0;
Held: ctl_fMoveLeft = ctl_fMoveLeft + ctl_fInputValue;

Control
Name: TTRS Move Right
Control1: D
Device1: Keyboard
Released: ctl_fMoveRight = 0;
Held: ctl_fMoveRight = ctl_fMoveRight + ctl_fInputValue;

Control
Name: TTRS Turn Left
Control1: Mouse X-
Device1: Mouse
Hidden: TRUE
Held: ctl_fTurnLeft = ctl_fTurnLeft+ctl_fInputValue;

Control
Name: TTRS Turn Right
Control1: Mouse X+
Device1: Mouse
Hidden: TRUE
Held: ctl_fTurnRight = ctl_fTurnRight+ctl_fInputValue;

Control
Name: TTRS Look Up
Control1: Mouse Y+
Device1: Mouse
Hidden: TRUE
Held: ctl_fTurnUp = ctl_fTurnUp+ctl_fInputValue;

Control
Name: TTRS Look Down
Control1: Mouse Y-
Device1: Mouse
Hidden: TRUE
Held: ctl_fTurnDown = ctl_fTurnDown+ctl_fInputValue;

Control
Name: TTRS Spawn NPC1
Control1: Left Control
Device1: Keyboard
Relation: And
Control2: 1
Device2: Keyboard
Pressed: ctl_bSpawnNPC1 = 1;
Released: ctl_bSpawnNPC1 = 0;

Control
Name: TTRS Spawn NPC2
Control1: Left Control
Device1: Keyboard
Relation: And
Control2: 2
Device2: Keyboard
Pressed: ctl_bSpawnNPC2 = 1;
Released: ctl_bSpawnNPC2 = 0;

Control
Name: TTRS Spawn NPC3
Control1: Left Control
Device1: Keyboard
Relation: And
Control2: 3
Device2: Keyboard
Pressed: ctl_bSpawnNPC3 = 1;
Released: ctl_bSpawnNPC3 = 0;

Control
Name: TTRS Spawn NPC4
Control1: Left Control
Device1: Keyboard
Relation: And
Control2: 4
Device2: Keyboard
Pressed: ctl_bSpawnNPC4 = 1;
Released: ctl_bSpawnNPC4 = 0;

Control
Name: TTRS Spawn NPC5
Control1: Left Control
Device1: Keyboard
Relation: And
Control2: 5
Device2: Keyboard
Pressed: ctl_bSpawnNPC5 = 1;
Released: ctl_bSpawnNPC5 = 0;

Control
Name: TTRS Spawn NPC6
Control1: Left Control
Device1: Keyboard
Relation: And
Control2: 6
Device2: Keyboard
Pressed: ctl_bSpawnNPC6 = 1;
Released: ctl_bSpawnNPC6 = 0;

Control
Name: TTRS MacroChat F5
Control1: F5
Device1: Keyboard
Pressed: ctl_bMacroF5 = 1;
Released: ctl_bMacroF5 = 0;
Control
Name: TTRS MacroChat F6
Control1: F6
Device1: Keyboard
Pressed: ctl_bMacroF6 = 1;
Released: ctl_bMacroF6 = 0;
Control
Name: TTRS MacroChat F7
Control1: F7
Device1: Keyboard
Pressed: ctl_bMacroF7 = 1;
Released: ctl_bMacroF7 = 0;
Control
Name: TTRS MacroChat F8
Control1: F8
Device1: Keyboard
Pressed: ctl_bMacroF8 = 1;
Released: ctl_bMacroF8 = 0;
Control
Name: TTRS MacroChat Alt
Control1: Left Alt
Device1: Keyboard
Pressed: ctl_bMacroAlt = 1;
Released: ctl_bMacroAlt = 0;

Control
Name: TTRS ChangeCtrlType
Control1: F4
Device1: Keyboard
Pressed: ctl_bChangeCtrlType = 1;
Released: ctl_bChangeCtrlType = 0;
Control
Name: TTRS Cam down
Control1: Z
Device1: Keyboard
Pressed: ctl_bCamDown = 1;
Released: ctl_bCamDown = 0;
Control
Name: TTRS Potion Slot1
Control1: 1
Device1: Keyboard
Pressed: ctl_bPotionSlot1 = 1;
Released: ctl_bPotionSlot1 = 0;

Control
Name: TTRS Potion Slot2
Control1: 2
Device1: Keyboard
Pressed: ctl_bPotionSlot2 = 1;
Released: ctl_bPotionSlot2 = 0;
Control
Name: TTRS Potion Slot3
Control1: 3
Device1: Keyboard
Pressed: ctl_bPotionSlot3 = 1;
Released: ctl_bPotionSlot3 = 0;
Control
Name: TTRS Potion Slot4
Control1: 4
Device1: Keyboard
Pressed: ctl_bPotionSlot4 = 1;
Released: ctl_bPotionSlot4 = 0;
Control
Name: TTRS Potion Slot5
Control1: 5
Device1: Keyboard
Pressed: ctl_bPotionSlot5 = 1;
Released: ctl_bPotionSlot5 = 0;
Control
Name: TTRS Potion Slot6
Control1: 6
Device1: Keyboard
Pressed: ctl_bPotionSlot6 = 1;
Released: ctl_bPotionSlot6 = 0;

GlobalDontInvertLook
GlobalSmoothAxes
GlobalSensitivity 52
ed: ctl_bMacroAlt = 1;
Released: ctl_bMacroAlt = 0;

GlobalDontInvertLook
GlobalSmoothAxes
GlobalSensitivity 52


----------------------我是超级分割线------------------------

将分割线内的代码全部覆盖原来的代码,就可以用药水了!


此按键设置是123为药水,CTRL+123为招宝宝,其实大家可以自己改!

Control
Name: TTRS Spawn NPC1
Control1: Left Control 左CTRL
Device1: Keyboard
Relation: And
Control2: 1 数字1
Device2: Keyboard
Pressed: ctl_bSpawnNPC1 = 1;
Released: ctl_bSpawnNPC1 = 0; 这段代码说的就是按左CTRL+1招宠1

Control
Name: TTRS Potion Slot1
Control1: 1 数字1
Device1: Keyboard
Pressed: ctl_bPotionSlot1 = 1;
Released: ctl_bPotionSlot1 = 0; 这段代码说的是按数字1吃药水!

-------------------我还是分割线--------------------------

Control
Name: TTRS Spawn NPC1
Control1: 1
Device2: Keyboard
Pressed: ctl_bSpawnNPC1 = 1;
Released: ctl_bSpawnNPC1 = 0; 这段代码说的就是按数字1招宠!

Control
Name: TTRS Potion Slot1
Control1: Left Control 左CTRL
Device1: Keyboard
Relation: And
Control2: 1 数字1
Device1: Keyboard
Pressed: ctl_bPotionSlot1 = 1;
Released: ctl_bPotionSlot1 = 0; 这段代码说的是按CTRL+1吃药水!

其实可以随便改,按大家自己喜好了!

首页 更多有关RUSH冲锋教你如何在RUSH中吃药话题
上一篇:RUSH冲锋另类版高手见招破招   下一篇:RUSH冲锋游戏技巧心得分享
[新注册] [收藏] [推荐给好友] [发表评论(0条)] [返回顶部] [打印本页] [关闭窗口]
§最新评论:
热点文章
·RUSH冲锋刺客前期加点攻略
·RUSH冲锋剑士加点
·RUSH冲锋攻略之新手任务篇三
·RUSH冲锋铁匠PK和加点
·RUSH冲锋顶级流刺客单条实战技巧
·RUSH冲锋客户端调节设置的方法
·RUSH冲锋攻击型铁匠的加点方法
·RUSH冲锋法师加点方法PK技巧
·RUSH冲锋刺客加点方法技巧经验
·RUSH冲锋各职业主流加点详解
·RUSH冲锋国际服进阶经验谈1
·RUSH冲锋刺客攻略首领战中的刺客
·RUSH冲锋法师技巧和实战经验
·RUSH冲锋任务高斯之塔S评价心得
·RUSH冲锋人物各项属性作用
·RUSH冲锋任务攻略如何容易S评价
·RUSH冲锋各职业加点方法
·RUSH冲锋法师杀人的方法技巧心得
·RUSH任务3多拉的菱形
·RUSH冲锋法师装备选择
相关文章
·RUSH冲锋游戏技巧心得分享
·RUSH冲锋刺客跳砍之技术经验心得
·RUSH冲锋弓箭手单P群P攻略技巧
·RUSH冲锋刺客前期加点攻略
·RUSH冲锋变身后的成长指南
·RUSH冲锋团队技术篇
·RUSH冲锋铁匠的长处与短处
·RUSH冲锋法师杀人的方法技巧心得
·RUSH冲锋超级法师经验
·RUSH弓箭手做一个好弓箭手的条件
·RUSH冲锋各职业优势介绍
·RUSH冲锋弓手最强近身战略攻击型
·RUSH冲锋基本模式与属性模式的差
·RUSH冲锋客户端调节设置的方法
·RUSH冲锋任务28功略技巧经验
·RUSH冲锋任务11快速通关攻略
·RUSH冲锋各职业任务心得
·RUSH冲锋法师加点方法PK技巧
·RUSH冲锋法师技巧和实战经验
·RUSH冲锋刺客CK团战篇经验技巧
关于我们 联系我们 合作机会 版权声明 招聘信息 合作伙伴
Power by DedeCms