sannybuilder / data

Sanny Builder Edit modes and supporting files directory.
https://github.com/sannybuilder/dev
6 stars 7 forks source link

Some opcode fixes #16

Closed XMDS closed 3 years ago

XMDS commented 3 years ago

GTA3:

009E=4,set_actor %1d% path %2d% %3d% %4d%

Fix:
009E=4,set_actor %1d% follow_path %2d% %3d% %4d%

GTAVC:

009e=6,set_actor %1d% path %2d% %3d% %4d% unknown %5d% %6h%

Fix:
009e=6,set_actor %1d% follow_path %2d% %3d% %4d% radius %5d% move_stat %6h%
XMDS commented 3 years ago
GTA3:
0135=2,%2d% = car %1d% door_status

Fix

0135=2,set_car %1d% door_status %2d%
x87 commented 3 years ago
GTA3:
0135=2,%2d% = car %1d% door_status

Fix

0135=2,set_car %1d% door_status %2d%

we can't reorder parameters in existing opcode definitions. It was a source of major headache in the past when scripts compiled with the updated INI stopped working.