安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






For more functions visit https://developer.valvesoftware.com/wiki/Left_4_Dead_2/Script_Functions
https://github.com/Tabbernaut/L4D2-Plugins/tree/master/skill_detect
ClientPrint(null,5,"\x04"+pName+"\x01 got \x05"+count+"\x01 bunnyhop"+((count > 1)?"s":"")+ " in a row (top speed: \x05"+topspeed+"\x01)");
What you are seeing is probably an outdated version. thank you for feedback
TL;DR: I think this:
{
ClientPrint(null,5,"\x04"+pName+"\x01 got \x05"+count+"\x01 bunnyhop in a row (top speed: \x05"+topspeed+"\x01)");
}
Should just be this instead:
{
ClientPrint(null,5,"\x04"+pName+"\x01 got \x05"+count+"\x01 bunnyhops in a row (top speed: \x05"+topspeed+"\x01)");
}
Thanks very much for the mod ^.^
(버니합을 완전히 막고 싶다면...)
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2124102577
I changed the script logic, try bhop again
Ultimately, bhop detect isn't complete with vscript
The c2m2's slople bhop will probably go through a minimum speed of 150.
This is the sourcemod referenced by the bhop detect plugin.
But if you feel that way, I will test it again.
thanks for your feedback :)
This is the bhop count condition.
1) Movement speed over 150
2) Higher speed than previous speed.
*In all other conditions, the bhop count to be 0.
and I set the bhop final detect time to 0.4 seconds. This is a countermeasure when performing bhops on high pings.
If the detect time is too fast(e.g 0.1~0.2sec)
You get bhop output even though you do bhop properly. ;P