Difference between revisions of "FF7/Field/Script/Opcodes/CB IFPRTYQ"

From Final Fantasy Inside
< FF7‎ | Field‎ | Script‎ | Opcodes
Jump to navigation Jump to search
my_wiki>Synergy Blades
m
my_wiki>Synergy Blades
m (Arguments)
Line 12: Line 12:
 
==== Arguments ====
 
==== Arguments ====
  
* '''const UByte''' ''C'': [[FF7/Field/Script/Character ID|Character ID]] to check.
+
* '''const UByte''' ''C'': [[FF7/Field/Character ID|Character ID]] to check.
 
* '''const UByte''' ''A'': Amount to jump if comparison is false.
 
* '''const UByte''' ''A'': Amount to jump if comparison is false.
  

Revision as of 23:38, 20 April 2007

  • Opcode: 0xCB
  • Short name: IFPRTYQ
  • Long name: If Party Member

Memory layout

0xCB C A

Arguments

  • const UByte C: Character ID to check.
  • const UByte A: Amount to jump if comparison is false.

Description

Checks whether the character, given as the first argument, is in the current party of three. If so, the script immediately following this opcode and argument list will execute; otherwise, the script pointer is advanced by the second argument and execution continues.