mirror of
https://github.com/halpz/re3.git
synced 2025-07-12 21:48:12 +00:00
Melee weapons(half-working), Ped and Hud bits
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user