Difference between revisions of "Barebones function 5"

From Unofficial QEdit Wiki Guide
Jump to: navigation, search
 
 
(One intermediate revision by the same user not shown)
Line 19: Line 19:
  
 
==Also see==
 
==Also see==
[[winend]], [[ret]] [[Barebones function 221]]
+
[[winend]], [[call]], [[ret]], [[Barebones function 221]]

Latest revision as of 20:50, 16 March 2013

Barebones function 5

Function 5: 5:

  • Function 5

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


5:       winend  //Closes a window message.
         call 221 //Calls function 221.
         ret 

Also see

winend, call, ret, Barebones function 221