Difference between revisions of "Barebones function 6"

From Unofficial QEdit Wiki Guide
Jump to: navigation, search
 
 
Line 19: Line 19:
  
 
==Also see==
 
==Also see==
[[winend]], [[call]], [[ret]] [[Barebones function 223]]
+
[[winend]], [[call]], [[ret]], [[Barebones function 223]]

Latest revision as of 20:50, 16 March 2013

Barebones function 6

Function 6: 6:

  • Function 6

Use

Used to lessen the code needed by jumping to this function.

It is like using a common ending to a function.

But instead of writing out that common ending each time you would just jump to this function to end your function that ends in this way.

How the function appears in the script


6:       winend  //Closes a window message.
         call 223 //Calls function 223.
         ret 

Also see

winend, call, ret, Barebones function 223