Difference between revisions of "009A"

From GTAMods Wiki
Jump to navigation Jump to search
m
Line 1: Line 1:
 
<code>009A=6,%1d% %2o% %3d% %4d% %5d% %6d%</code><br>
 
<code>009A=6,%1d% %2o% %3d% %4d% %5d% %6d%</code><br>
'''Description''': Creates an actor at a coordinate<br>
+
'''Description''': Creates a ped at a coordinate<br>
 
'''Parameter 1''': [[Ped type]]<br>
 
'''Parameter 1''': [[Ped type]]<br>
'''Parameter 2''': [[DFF]] model name or ID<br>
+
'''Parameter 2''': Valid ped [[DFF]] model name or ID number as defined in the [[IDE#PEDS|IDE]] file<br>
 
'''Parameter 3''': X-coordinate<br>
 
'''Parameter 3''': X-coordinate<br>
 
'''Parameter 4''': Y-coordinate<br>
 
'''Parameter 4''': Y-coordinate<br>
Line 9: Line 9:
 
'''Supports''': GTA3, Vice City, San Andreas<br>
 
'''Supports''': GTA3, Vice City, San Andreas<br>
  
This creates an actor at a coordinate. Using this opcode requires [[0247]] or else the game would crash.
+
This creates a ped at a coordinate. Using this opcode requires [[0247]] or else the game would crash.
  
 
==Note==
 
==Note==
 
Sometimes this opcode is written as this:<br>
 
Sometimes this opcode is written as this:<br>
 
<code>009A=6,%6d% %1d% %2o% %3d% %4d% %5d%</code><br>
 
<code>009A=6,%6d% %1d% %2o% %3d% %4d% %5d%</code><br>
The sixth parameter is placed in the beginning instead of at the end. This depends on which sascm.ini file you use.<br>
+
The sixth parameter is placed in the beginning instead of at the end. This depends on which INI file you use.<br>
[[Mission_Scripting_%28Overview%29#Sanny_Builder|Sanny Builder]] by default:
+
[[Sanny_Builder|Sanny Builder]] by default:
 
<code>009A: 0@ = create_actor_pedtype 5 model #BFORI at 0.0 0.0 0.0</code>
 
<code>009A: 0@ = create_actor_pedtype 5 model #BFORI at 0.0 0.0 0.0</code>
  
Line 63: Line 63:
 
<code>0249: release_model #BFORI</code><br>
 
<code>0249: release_model #BFORI</code><br>
 
<code>004E: end_thread</code>
 
<code>004E: end_thread</code>
 +
 +
==Special Peds==
 +
Special peds uses models <code>SPECIAL#.dff</code>, where <i>#</i> is a number from <i>01</i> to <i>10</i>. It is used in conjunction with [[023C]]. The special actor ID number corresponds to the number in <code>SPECIAL#.dff</code>. You do not have to load <code>SPECIAL#.dff</code> as it is always loaded into the game. Each special actor ID can accommodate only one ped at a time and can be replaced by another special actor if the other special actor has the same ID.
 +
 +
In San Andreas, the game uses special actor numbers 1 to 5. The rest is unused in the game.
 +
 +
===Example===
 +
Loading special peds are similar to loading regular peds. The following code uses Sanny Builder.
 +
 +
<code>:LoadModel<br></code>
 +
<code>[[023C]]: load_special_actor 'ANDRE' as 1</code><br>
 +
<code></code><br>
 +
<code>:CheckModel</code><br>
 +
<code>0001: wait 0 ms</code><br>
 +
<code>00D6: if 0</code><br>
 +
<code>[[023D]]:  special_actor 1 loaded</code><br>
 +
<code>004D: jump_if_false @CheckModel</code><br>
 +
<code>009A: 0@ = create_actor_pedtype 23 model #SPECIAL01 at 0.0 0.0 0.0</code><br>
 +
<code>[[0296]]: unload_special_actor 1</code><br>
 +
<code>004E: end_thread</code><br>
  
 
==Keywords==
 
==Keywords==
create, actor, ped, pedtype, model
+
create, spawn, actor, ped, , pedestrian, pedtype, model
  
 
[[Category:OpCodes]]
 
[[Category:OpCodes]]

Revision as of 02:31, 7 November 2008

009A=6,%1d% %2o% %3d% %4d% %5d% %6d%
Description: Creates a ped at a coordinate
Parameter 1: Ped type
Parameter 2: Valid ped DFF model name or ID number as defined in the IDE file
Parameter 3: X-coordinate
Parameter 4: Y-coordinate
Parameter 5: Z-coordinate
Parameter 6: Actor handle
Supports: GTA3, Vice City, San Andreas

This creates a ped at a coordinate. Using this opcode requires 0247 or else the game would crash.

Note

Sometimes this opcode is written as this:
009A=6,%6d% %1d% %2o% %3d% %4d% %5d%
The sixth parameter is placed in the beginning instead of at the end. This depends on which INI file you use.
Sanny Builder by default: 009A: 0@ = create_actor_pedtype 5 model #BFORI at 0.0 0.0 0.0

Example

Beginners have a hard time creating actors because it is tough to learn how to make a code that would create an actor successfully. These will be only shown as examples and should not be copied verbatim. There are several ways of doing this. The following codes uses the Sanny Builder.

Recommended format:
:LoadModel
0247: load_model #BFORI

:CheckModel
0001: wait 0 ms
00D6: if 0
0248: model #BFORI available
004D: jump_if_false @CheckModel
009A: 0@ = create_actor_pedtype 5 model #BFORI at 0.0 0.0 0.0
0249: release_model #BFORI
004E: end_thread

Rockstar's common format:
:LoadModel
0247: load_model #BFORI

:CheckModel
00D6: if 0
8248: not model #BFORI available
004D: jump_if_false @CreateModel
0001: wait 0 ms
0002: jump @CheckModel

:CreateModel
009A: 0@ = create_actor_pedtype 5 model #BFORI at 0.0 0.0 0.0
0249: release_model #BFORI
004E: end_thread

Rockstar's less common format:
:LoadModel
00D6: if 0
8248: not model #BFORI available
004D: jump_if_false @CreateModel
0247: load_model #BFORI
0001: wait 0 ms
0002: jump @LoadModel

:CreateModel
009A: 0@ = create_actor_pedtype 5 model #BFORI at 0.0 0.0 0.0
0249: release_model #BFORI
004E: end_thread

Special Peds

Special peds uses models SPECIAL#.dff, where # is a number from 01 to 10. It is used in conjunction with 023C. The special actor ID number corresponds to the number in SPECIAL#.dff. You do not have to load SPECIAL#.dff as it is always loaded into the game. Each special actor ID can accommodate only one ped at a time and can be replaced by another special actor if the other special actor has the same ID.

In San Andreas, the game uses special actor numbers 1 to 5. The rest is unused in the game.

Example

Loading special peds are similar to loading regular peds. The following code uses Sanny Builder.

:LoadModel
023C: load_special_actor 'ANDRE' as 1

:CheckModel
0001: wait 0 ms
00D6: if 0
023D: special_actor 1 loaded
004D: jump_if_false @CheckModel
009A: 0@ = create_actor_pedtype 23 model #SPECIAL01 at 0.0 0.0 0.0
0296: unload_special_actor 1
004E: end_thread

Keywords

create, spawn, actor, ped, , pedestrian, pedtype, model