Difference between revisions of "049C"
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{Icon|VC}} | + | {{OpCode |
− | + | | games = {{Icon|VC}} | |
− | + | | command = INITIALISE_OBJECT_PATH | |
− | + | | description = Initialises a [[Script Path|script path]] | |
− | + | | syntax1 = 049C: [''var''] = scripted_path_file [''int''] width [''flt''] | |
− | + | | p1t = [''int''] | |
− | + | | p1d = Script path index | |
− | + | | p2t = [''flt''] | |
− | + | | p2d = Width of the path in units | |
− | + | | p3t = [''var''] | |
− | + | | p3d = Variable to store the handle of the script path | |
− | + | }} | |
− | |||
− | This opcode | + | This opcode initialises a script path to be used by [[Script Path#Mission script|script]]. It can be cleared using opcode [[04A1]]. The script path index comes from the path file's number at the end of the file name, i.e. <code>spath0.dat</code> would use a value of ''0'', <code>spath1.dat</code> would use a value of ''1'', etc. The width of the path denotes how far from the path can the object be when traveling along the path. The larger the value, the more smooth the path can be, while the smaller the value, the more rigid the path can be. One script path file was used in the [[Main.scm|original script]] for Cortez's yacht. A script path file can be initialised more than once. Only three script paths can be loaded at a time; you must clear one before you can initialise another one. |
== Keywords == | == Keywords == | ||
initialize, object, script, scripted, path, file | initialize, object, script, scripted, path, file | ||
− | |||
− |
Latest revision as of 22:02, 4 September 2017
- Description
- Initialises a script path
- Syntax
- 049C: [var] = scripted_path_file [int] width [flt]
- Parameter
- [int]
- Script path index
- [flt]
- Width of the path in units
- [var]
- Variable to store the handle of the script path
This opcode initialises a script path to be used by script. It can be cleared using opcode 04A1. The script path index comes from the path file's number at the end of the file name, i.e. spath0.dat
would use a value of 0, spath1.dat
would use a value of 1, etc. The width of the path denotes how far from the path can the object be when traveling along the path. The larger the value, the more smooth the path can be, while the smaller the value, the more rigid the path can be. One script path file was used in the original script for Cortez's yacht. A script path file can be initialised more than once. Only three script paths can be loaded at a time; you must clear one before you can initialise another one.
Keywords
initialize, object, script, scripted, path, file