Melee weapons(half-working), Ped and Hud bits

This commit is contained in:
eray orçunus 2020-05-19 17:39:19 +03:00
parent f71cfdf8ef
commit a6972714b7
19 changed files with 820 additions and 315 deletions

View file

@ -9986,8 +9986,20 @@ int8 CRunningScript::ProcessCommands1300To1399(int32 command)
{
switch (command) {
case COMMAND_SET_CHAR_CAN_BE_DAMAGED_BY_MEMBERS_OF_GANG:
{
CollectParameters(&m_nIp, 3);
CPed *pTarget = CPools::GetPedPool()->GetAt(ScriptParams[0]);
uint8 flag = 1 << (uint8)ScriptParams[1];
if (ScriptParams[2])
pTarget->m_gangFlags |= flag;
else
pTarget->m_gangFlags &= ~flag;
return 0;
}
case COMMAND_LOAD_AND_LAUNCH_MISSION_EXCLUSIVE:
case COMMAND_IS_MISSION_AUDIO_PLAYING:
assert(0);
case COMMAND_CREATE_LOCKED_PROPERTY_PICKUP:
{
CollectParameters(&m_nIp, 3);