mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 15:00:34 +00:00
RunningScript 2. So far with bugs (cops not caring, errors in arithmetical opcodes)
This commit is contained in:
parent
be110db5c4
commit
b77a9ce955
11 changed files with 337 additions and 16 deletions
|
@ -72,8 +72,8 @@ public:
|
|||
int8 m_nPreviousDirection;
|
||||
int8 m_nCurrentDirecton;
|
||||
int8 m_nNextDirection;
|
||||
int8 m_nPreviousPathDirection;
|
||||
int8 m_nCurrentPathDirection;
|
||||
int8 m_nPreviousLane;
|
||||
int8 m_nCurrentLane;
|
||||
eCarDrivingStyle m_nDrivingStyle;
|
||||
eCarMission m_nCarMission;
|
||||
eCarTempAction m_nAnimationId;
|
||||
|
@ -101,8 +101,8 @@ public:
|
|||
m_nCurrentPathNodeInfo = m_nNextPathNodeInfo;
|
||||
m_nNextDirection = 1;
|
||||
m_nCurrentDirecton = m_nNextDirection;
|
||||
m_nCurrentPathDirection = 0;
|
||||
m_nPreviousPathDirection = m_nCurrentPathDirection;
|
||||
m_nCurrentLane = 0;
|
||||
m_nPreviousLane = m_nPreviousLane;
|
||||
m_nDrivingStyle = DRIVINGSTYLE_STOP_FOR_CARS;
|
||||
m_nCarMission = MISSION_NONE;
|
||||
m_nAnimationId = TEMPACT_NONE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue