Difference between revisions of "054D"

From GTAMods Wiki
Jump to navigation Jump to search
(Created page with '{{OpCode | ini = 054D=1,display_message_at_stadium %1h% | description = Changes the text displayed at Hyman Memorial Stadium. | p1 = integer value | game …')
 
(rewrite)
Line 1: Line 1:
{{OpCode
+
[[File:054D.jpg|thumb|right|The giant stadium text]]
| ini        = 054D=1,display_message_at_stadium %1h%
+
{{Icon|VC}}
| description = Changes the text displayed at Hyman Memorial Stadium.
+
<hr />
| p1          = integer value
+
'''Description'''
| game        = [[Vice City]]
+
: Sets the text displayed at Hyman Memorial Stadium
}}
+
'''Syntax'''
This opcode is used in the game to announce, what event is held tonight at the stadium. It displays the text on the text banner, but doesn't change the big poster before the stadium.
+
: 054D: display_message_at_stadium [''int'']
 +
'''Parameter'''
 +
: [''int'']
 +
:: 0 = Hotring, 1 = Bloodring, 2 = Dirtring
  
== IDs ==
+
This opcode sets the appropriate event-specific text to display at the Hyman Memorial Stadium. The text is made up of green lights that scrolls across the screen. By default the text is set to 0 (Hotring). If the screen is set to display a different text, the text will change once the current text finishes scrolling.
  
{|{{Prettytable}}
+
== Text displayed ==
! Value
+
; Regardless of setting
! Description
+
This text is displayed before and after the event messages, regardless of the setting set by the opcode.
|-
+
HYMAN MEMORIAL STADIUM. HOME TO SOME OF THE BIGGEST EVENTS OF THE WESTERN HEMISPHERE. ALSO AVAILABLE FOR CHILDREN PARTIES. . .
| 0
+
; 0 (Hotring)
| Hotring
+
MAIN EVENT TONIGHT: CAR RACING . . .
|-
+
FOR TICKETS TO THE HOT RING EVENT CALL 555-3764 . . .
| 1
+
; 1 (Bloodring)
| Bloodring
+
MAIN EVENT TONIGHT: DESTRUCTION DERBY . . .
|-
+
FOR TICKETS TO THE BLOOD RING EVENT CALL 555-3765 . . .
| 2
+
; 2 (Dirtring)
| Dirtring
+
MAIN EVENT TONIGHT: BIKE RACING . . .
|}
+
FOR TICKETS TO THE DIRT RING EVENT CALL 555-3766 . . .
  
== Sanny Builder example ==
+
== Keywords ==
 +
stadium, message, hyman, memorial, downtown
  
<source lang="scm">:Label64153
+
[[Category:OpCodes]]
if
 
  $8 == 0 // integer values
 
jf @Label64207
 
Object.Destroy($6)
 
$6 = Object.Init(#DTHOTRING_A, -1037.08, 1340.258, 36.552)
 
Object.RemoveFromMissionCleanupList($6)
 
054D: display_message_at_stadium 0 </source>
 
 
 
==Keywords==
 
stadium, message, hyman, memorial, downtown
 

Revision as of 23:34, 3 December 2011

The giant stadium text

Vice City


Description

Sets the text displayed at Hyman Memorial Stadium

Syntax

054D: display_message_at_stadium [int]

Parameter

[int]
0 = Hotring, 1 = Bloodring, 2 = Dirtring

This opcode sets the appropriate event-specific text to display at the Hyman Memorial Stadium. The text is made up of green lights that scrolls across the screen. By default the text is set to 0 (Hotring). If the screen is set to display a different text, the text will change once the current text finishes scrolling.

Text displayed

Regardless of setting

This text is displayed before and after the event messages, regardless of the setting set by the opcode.

HYMAN MEMORIAL STADIUM. HOME TO SOME OF THE BIGGEST EVENTS OF THE WESTERN HEMISPHERE. ALSO AVAILABLE FOR CHILDREN PARTIES. . .
0 (Hotring)
MAIN EVENT TONIGHT: CAR RACING . . .
FOR TICKETS TO THE HOT RING EVENT CALL 555-3764 . . .
1 (Bloodring)
MAIN EVENT TONIGHT: DESTRUCTION DERBY . . .
FOR TICKETS TO THE BLOOD RING EVENT CALL 555-3765 . . .
2 (Dirtring)
MAIN EVENT TONIGHT: BIKE RACING . . .
FOR TICKETS TO THE DIRT RING EVENT CALL 555-3766 . . .

Keywords

stadium, message, hyman, memorial, downtown