Difference between revisions of "055B"

From GTAMods Wiki
Jump to navigation Jump to search
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{TocRight}}
+
[[File:055B.png|thumb|055B pickup]]
 
{{OpCode
 
{{OpCode
| ini        = 055B=5,%5d% %4h% %1d% %2d% %3d%
+
| games      = {{Icon|VC}}
| description = Creates a clothing pickup
+
| command    = CREATE_<wbr>CLOTHES_<wbr>PICKUP
| p1          = X-coordinate
+
| description = Creates a clothing [[pickup]]
| p2          = Y-coordinate
+
| syntax1    = 055B: [''var''] = create_clothes_pickup [''int''] at [''flt1''] [''flt2''] [''flt3'']
| p3          = Z-coordinate
+
| p1t        = [''int'']
| p4          = ID
+
| p1d        = Clothes value (see below)
| p5          = Pickup handle
+
| p2t        = [''flt1'']
| game        = [[Vice City]]
+
| p2d        = X-coordinate
 +
| p3t        = [''flt2'']
 +
| p3d        = Y-coordinate
 +
| p4t        = [''flt3'']
 +
| p4d        = Z-coordinate (or &le;''-100.0'' for [[02CE|ground z]] + 0.5 units)
 +
| p5t        = [''var'']
 +
| p5d        = Variable to store the handle of the pickup
 
}}
 
}}
This opcode creates a clothing [[0213#Pickup types|type 2]] pickup. Like most pickups, it spins, glows, and can be "picked up" by walking through it. The pickup uses the model clothesp.dff to create the pickup so the model has to be at least defined somewhere in an [[IDE]] file for the opcode to work. This pickup is unique for having a text above the pickup. The text depends on its ID. The opcode alone does not let the player change clothes. To change clothes, see [[clothes pickup]] for a code snippet based on the code used in Vice City. Note that the parameters are rearranged.
 
[[Sanny Builder]] example:<source lang="scm">055B: 0@ = create_clothes_pickup 12 at 0.0 0.0 0.0</source>
 
*[http://img.photobucket.com/albums/v41/spaceeinstein/GTAModding/055B.png Image]
 
  
==Note==
+
This opcode creates a [[0213#Vice City|type 2]] pickup. It uses a model that [[MatchModelString#Vice City|matches the name <code>clothesp</code>]]. The pickup allows text to display above it based on the clothes value, equivalent in effect to opcode [[032B]]. The opcode alone does not let the player change clothes; to change clothes see the [[clothes pickup|code snippet]] based on the code used in Vice City.
The above format is more commonly used. The actual format of this opcode is in order:<br>
 
<code>055B=5,%1d% %2d% %3d% %4h% %5d%</code><br>
 
The format to use depends on which INI file you use.
 
  
==Clothing IDs==
+
{|class="wikitable sortable center-col-1"
{| {{prettytable}}
+
!Value ||[[GXT]] key ||Clothing
! ID
 
! [[GXT]] entry
 
! Clothing
 
 
|-
 
|-
| 1
+
|1 ||OUTFT1 ||Street
| OUTFT1
 
| Street
 
 
|-
 
|-
| 2
+
|2 ||OUTFT2 ||Soiree
| OUTFT2
 
| Soiree
 
 
|-
 
|-
| 3
+
|3 ||OUTFT3 ||Coveralls
| OUTFT3
 
| Coveralls
 
 
|-
 
|-
| 4
+
|4 ||OUTFT4 ||Country Club
| OUTFT4
 
| Country Club
 
 
|-
 
|-
| 5
+
|5 ||OUTFT5 ||Havana
| OUTFT5
 
| Havana
 
 
|-
 
|-
| 6
+
|6 ||OUTFT6 ||Cop
| OUTFT6
 
| Cop
 
 
|-
 
|-
| 7
+
|7 ||OUTFT7 ||Bank Job
| OUTFT7
 
| Bank Job
 
 
|-
 
|-
| 8
+
|8 ||OUTFT8 ||Casual
| OUTFT8
 
| Casual
 
 
|-
 
|-
| 9
+
|9 ||OUTFT9 ||Mr Vercetti
| OUTFT9
 
| Mr Vercetti
 
 
|-
 
|-
| 10
+
|10 ||OUTFT10 ||Tracksuit
| OUTFT10
 
| Tracksuit
 
 
|-
 
|-
| 11
+
|11 ||OUTFT11 ||Tracksuit
| OUTFT11
 
| Tracksuit
 
 
|-
 
|-
| 12
+
|12 ||OUTFT12 ||Frankie
| OUTFT12
 
| Frankie
 
 
|-
 
|-
| 13
+
|13 ||OUTFT13 ||MC Tommy (unused)
| OUTFT13
 
| MC Tommy (unused)
 
 
|}
 
|}
  
==Keywords==
+
== Keywords ==
pickups, clothes, clothesp
+
create, pickup, clothes, clothesp
 
 
==See also==
 
[[Clothes pickup]]
 

Latest revision as of 11:03, 27 November 2016

055B pickup

Vice City CREATE_CLOTHES_PICKUP


Description
Creates a clothing pickup
Syntax
055B: [var] = create_clothes_pickup [int] at [flt1] [flt2] [flt3]
Parameter
[int]
Clothes value (see below)
[flt1]
X-coordinate
[flt2]
Y-coordinate
[flt3]
Z-coordinate (or ≤-100.0 for ground z + 0.5 units)
[var]
Variable to store the handle of the pickup

This opcode creates a type 2 pickup. It uses a model that matches the name clothesp. The pickup allows text to display above it based on the clothes value, equivalent in effect to opcode 032B. The opcode alone does not let the player change clothes; to change clothes see the code snippet based on the code used in Vice City.

Value GXT key Clothing
1 OUTFT1 Street
2 OUTFT2 Soiree
3 OUTFT3 Coveralls
4 OUTFT4 Country Club
5 OUTFT5 Havana
6 OUTFT6 Cop
7 OUTFT7 Bank Job
8 OUTFT8 Casual
9 OUTFT9 Mr Vercetti
10 OUTFT10 Tracksuit
11 OUTFT11 Tracksuit
12 OUTFT12 Frankie
13 OUTFT13 MC Tommy (unused)

Keywords

create, pickup, clothes, clothesp