mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-23 13:14:51 +00:00
Merge branch 'master' into opfor
This commit is contained in:
commit
8bd8e16b72
@ -80,7 +80,7 @@ git clone --recursive https://github.com/FWGS/hlsdk-portable
|
|||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
Install and run [Visual Studio Installer](https://visualstudio.microsoft.com/downloads/). The installer allows you to choose specific components. Select `Desktop development with C++`. You can untick everything you don't need in Installation details, but you must keep `MSVC` ticked. You may also keep `C++ CMake tools for Windows` ticked as you'll need **cmake**. Alternatively you can install **cmake** from the [cmake.org](https://cmake.org/download/) and during installation tick *Add to the PATH...*.
|
Install and run [Visual Studio Installer](https://visualstudio.microsoft.com/downloads/). The installer allows you to choose specific components. Select `Desktop development with C++`. You can untick everything you don't need in Installation details, but you must keep `MSVC` and corresponding Windows SDK (e.g. Windows 10 SDK or Windows 11 SDK) ticked. You may also keep `C++ CMake tools for Windows` ticked as you'll need **cmake**. Alternatively you can install **cmake** from the [cmake.org](https://cmake.org/download/) and during installation tick *Add to the PATH...*.
|
||||||
|
|
||||||
### Opening command prompt
|
### Opening command prompt
|
||||||
|
|
||||||
|
@ -137,7 +137,12 @@ void CHgun::PrimaryAttack()
|
|||||||
CBaseEntity *pHornet = CBaseEntity::Create( "hornet", m_pPlayer->GetGunPosition() + gpGlobals->v_forward * 16.0f + gpGlobals->v_right * 8.0f + gpGlobals->v_up * -12.0f, m_pPlayer->pev->v_angle, m_pPlayer->edict() );
|
CBaseEntity *pHornet = CBaseEntity::Create( "hornet", m_pPlayer->GetGunPosition() + gpGlobals->v_forward * 16.0f + gpGlobals->v_right * 8.0f + gpGlobals->v_up * -12.0f, m_pPlayer->pev->v_angle, m_pPlayer->edict() );
|
||||||
pHornet->pev->velocity = gpGlobals->v_forward * 300.0f;
|
pHornet->pev->velocity = gpGlobals->v_forward * 300.0f;
|
||||||
|
|
||||||
m_flRechargeTime = gpGlobals->time + 0.5f;
|
float flRechargeTimePause = 0.5f;
|
||||||
|
|
||||||
|
if( g_pGameRules->IsMultiplayer() )
|
||||||
|
flRechargeTimePause = 0.3f;
|
||||||
|
|
||||||
|
m_flRechargeTime = gpGlobals->time + flRechargeTimePause;
|
||||||
#endif
|
#endif
|
||||||
m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType]--;
|
m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType]--;
|
||||||
|
|
||||||
@ -223,8 +228,14 @@ void CHgun::SecondaryAttack( void )
|
|||||||
|
|
||||||
pHornet->SetThink( &CHornet::StartDart );
|
pHornet->SetThink( &CHornet::StartDart );
|
||||||
|
|
||||||
m_flRechargeTime = gpGlobals->time + 0.5f;
|
float flRechargeTimePause = 0.5f;
|
||||||
|
|
||||||
|
if( g_pGameRules->IsMultiplayer() )
|
||||||
|
flRechargeTimePause = 0.3f;
|
||||||
|
|
||||||
|
m_flRechargeTime = gpGlobals->time + flRechargeTimePause;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int flags;
|
int flags;
|
||||||
#if CLIENT_WEAPONS
|
#if CLIENT_WEAPONS
|
||||||
flags = FEV_NOTHOST;
|
flags = FEV_NOTHOST;
|
||||||
@ -251,8 +262,16 @@ void CHgun::Reload( void )
|
|||||||
|
|
||||||
while( m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType] < HORNET_MAX_CARRY && m_flRechargeTime < gpGlobals->time )
|
while( m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType] < HORNET_MAX_CARRY && m_flRechargeTime < gpGlobals->time )
|
||||||
{
|
{
|
||||||
|
float flRechargeTimePause = 0.5f;
|
||||||
|
#if CLIENT_DLL
|
||||||
|
if( bIsMultiplayer() )
|
||||||
|
#else
|
||||||
|
if( g_pGameRules->IsMultiplayer() )
|
||||||
|
#endif
|
||||||
|
flRechargeTimePause = 0.3f;
|
||||||
|
|
||||||
m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType]++;
|
m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType]++;
|
||||||
m_flRechargeTime += 0.3f;
|
m_flRechargeTime += flRechargeTimePause;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user