Real Weapon Weight
Introduction:
Этот плагин, как предполагается, делает CS Более реалистический. Поскольку Вы все знаете, что у каждого оружия есть свой собственный maxspeed. Как Нож: 250, m4a1: 230. Так, когда Вы бежите с ножом, Вы бежите с 250 скоростями. Этот плагин вычисляет вес всего оружия и затем устанавливает пользователей maxspeed в зависимости от оружия в Ваших руках. Я знаю, что кто-то не понимал то, что я написал выше так...:
Код:
Let's say i have - knife, usp, m4a1 We have base speed - 280(speed without ANY weapons(including knife)) Knife weights 10 weight points Usp weights 11 weight points M4A1 weights 19 weight points 10+11+19 = 40points To get the speed we'll run with weapons whose maxspeed is 250 we should do like this: BASEPOINTS - PlayerPoints 280 - 40 = 240(this is the speed with weapons which max speed is 250) So if we have those 3 weapons and Knife(maxspeed 250) is in our hands we'll run with 240 speed. If we'll have usp(maxspeed 250) in our hands we'll run with 240 maxspeed. If we'll have m4a1(maxspeed 230) in our hands we'll run with 220 maxspeed.(Maxspeed = MaxPlayerSpeed-MaxWeaponSpeed).
Код:
Cvars: amx_rww <1/0> <On/Off> amx_rww_basespeed <###> <The speed you'll run without any weapons>
Changes:
v0.7
*Initial Release