如何修改人物速度?!

Home Home
引用 | 編輯 chanpikmay20
2010-11-09 14:40
樓主
推文 x0
因為我開的是 捉迷藏
我想修改 警察的移動速度 高少少
請問如何修改?!
需要插件嗎

獻花 x0
引用 | 編輯 i-c0112
2010-11-10 19:18
1樓
  
這的確需要插件 但在插件區沒看過只改入速度的插件
不過要寫出來不難 看有沒有人有時間幫你 小弟目前很忙

獻花 x0
引用 | 編輯 chanpikmay20
2010-11-10 22:00
2樓
  
好謝謝你先
fung_ss@hotmail.com 表情

獻花 x0
引用 | 編輯 5955605
2010-11-11 23:27
3樓
  
殭屍模式中有一項是改人類能力的~
去抓吧~

獻花 x0
引用 | 編輯 黃太龍
2010-11-13 14:52
4樓
  
如果改殭屍在那

獻花 x0
引用 | 編輯 遊戲王好
2010-11-20 20:36
5樓
  
可能要靠某人打插件來弄吧

獻花 x0
引用 | 編輯 volution
2011-02-06 12:43
6樓
  
直接在控制台打

sv_airaccelerate 數字  
這個值能影響空中移動速度除以地面移動速度的速度(就是空中速度)

sv_maxspeed 數字  
(最大速度)這個值能影響地面的移動速度

獻花 x0
引用 | 編輯 andyt0621
2011-02-06 14:35
7樓
  
複製程式
#include <amxmodx>
#include <cstrike>
#include <fakemeta>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "123"

new cvar_speed

public plugin_init() {
 register_plugin(PLUGIN, VERSION, AUTHOR)
 
 cvar_speed = register_cvar("CT_speed", "你想的數值")
 register_forward(FM_PlayerPreThink, "fw_playerprethink")
}
public fw_playerprethink(id)
{
 if (cs_get_user_team(id) == CS_TEAM_T)
  return FMRES_IGNORED;
 
 if (cs_get_user_team(id) == CS_TEAM_CT)
 {
  set_pev(id, pev_maxspeed, get_pcvar_float(cvar_speed))
 }
 return FMRES_IGNORED;
}
第一次用AMXX_Studio寫的..
試看看吧

獻花 x0
引用 | 編輯 awd24689
2011-02-06 22:38
8樓
  
速度噢 我個人覺得拿刀就很快了
希望有人幫你解答囉

獻花 x0
引用 | 編輯 alvin321
2011-02-08 23:25
9樓
  
祝你好運

獻花 x0
引用 | 編輯 alvin321
2011-02-08 23:31
10樓
  
原來有指令呀

獻花 x0