047D

From GTAMods Wiki
Jump to navigation Jump to search

GTA III GET_NUMBER_OF_SEATS_IN_MODEL


Description
Gets the number of seats in the model
Syntax
047D: get_number_of_seats_in_model [int] store_to [var]
Parameter
[int]
Valid model index as defined in the IDE file; also acceptable is model's DFF name with a hash character
[var]
Variable to store number of seats

This opcode stores the number of seats in the model. The model should be a valid vehicle model as defined in the CARS section of the IDE file, otherwise the opcode returns a useless result. Some returned values are hardcoded as described below:

Model Id Model Name Number of seats
97 FIRETRUK 2
124 TRAIN 3
127 COACH 2 or 9[1]
131 RCBANDIT 1

Note

^ Basically this opcode returns the number of doors for the model plus one. Thus it never returns a value less than 1. To optimize the game performance, the number of doors is only counted at the first loading of the model. If the model was not loaded before calling this opcode, the result is always 2. The Coach model is the only one influenced by the inaccurate coding: once it's loaded the opcode returns 9 as the result.

Keywords

get, store, number, model, seats