047D

From GTAMods Wiki
Revision as of 16:58, 14 August 2015 by Seemann (talk | contribs) (added note)
Jump to navigation Jump to search

GTA III GET_NUMBER_OF_SEATS_IN_MODEL


Description

Gets number of seats in vehicle with specified model

Syntax

047D: get_number_of_seats_in_model [int] store_to [var]

Parameter

[int]
Valid vehicle model ID number as defined in the IDE file; also acceptable is model's DFF name identified by a hash character
[var]
Variable to store number of seats

This opcode stores the number of seats in a model. The model must be a valid vehicle model, otherwise the opcode returns an unexpectable 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

model, seats, store, get