Difference between revisions of "Barebones function 22"

From Unofficial QEdit Wiki Guide
Jump to: navigation, search
Line 7: Line 7:
 
This function will preform a constant check on register 105.
 
This function will preform a constant check on register 105.
  
When register 105 = 0 then this function will jump to the starting of quest failed for count down timer. (function 23.)
+
When register 105 equals 00000000 then this function will jump to the starting of quest failed for count down timer. (function 23.)
  
 
Function 22 becomes threaded in function 60.
 
Function 22 becomes threaded in function 60.

Revision as of 02:30, 17 March 2013

Barebones function 22

Function 22: 22:

  • Function 22 = Threaded.

Use

This function will preform a constant check on register 105.

When register 105 equals 00000000 then this function will jump to the starting of quest failed for count down timer. (function 23.)

Function 22 becomes threaded in function 60.

How the function appears in the script


22:      sync  //Waits 1 frame.
         jmpi_= R105, 00000000, 23 //If Register 105 equals 0 jump to function 23.
         jmp 22 //Jump to function 22.

Also see

sync, jmpi_=, jmp, Barebones function 23, Barebones function 60