Barebones function 251

From Unofficial QEdit Wiki Guide
Revision as of 09:41, 19 April 2013 by Japanaman2 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Barebones function 251

Function 251: 251:

  • Function 251 = Part of guild lady text winning.

Guild lady text winning

Determines what the guild lady will say upon winning the quest.

Barebones function 250 = Function 250 checks what timer was used count down or count up. If count down continue to function 251. if count up continue to function 261.

Barebones function 251 = Function 251 checks for the room difficulty used.

Barebones function 252 = Function 252 displays the guild lady's winning message for normal mode. Awards the player normal mode meseta. Then displays time attack information for normal mode, and quest credits.

Barebones function 253 = Function 253 displays the guild lady's winning message for hard mode. Awards the player hard mode meseta. Then displays time attack information for hard mode, and quest credits.

Barebones function 254 = Function 254 displays the guild lady's winning message for very hard mode. Awards the player very hard mode meseta. Then displays time attack information for very hard mode, and quest credits.

Barebones function 255 = Function 255 displays the guild lady's winning message for ultimate mode. Awards the player ultimate mode meseta. Then displays time attack information for ultimate mode, and quest credits.

Barebones function 261 = Function 261 checks for the room difficulty used.

Barebones function 262 = Function 262 displays the guild lady's winning message for normal mode. Awards the player normal mode meseta. Then displays time attack information for normal mode, and quest credits.

Barebones function 263 = Function 263 displays the guild lady's winning message for hard mode. Awards the player hard mode meseta. Then displays time attack information for hard mode, and quest credits.

Barebones function 264 = Function 264 displays the guild lady's winning message for very hard mode. Awards the player very hard mode meseta. Then displays time attack information for very hard mode, and quest credits.

Barebones function 265 = Function 265 displays the guild lady's winning message for ultimate mode. Awards the player ultimate mode meseta. Then displays time attack information for ultimate mode, and quest credits.


Use

Function 251 checks for the room difficulty used.

How the function appears in the script


251:     jmpi_= R251, 00000000, 252 //If register 251 equals 00000000 jump to function 252.
         jmpi_= R251, 00000001, 253 //If register 251 equals 00000001 jump to function 253.
         jmpi_= R251, 00000002, 254 //If register 251 equals 00000002 jump to function 254.
         jmpi_= R251, 00000003, 255 //If register 251 equals 00000003 jump to function 255.
         ret 

Also see

jmpi_=, ret, get_difflvl2, Barebones function 0,

Barebones function 250, Barebones function 252, Barebones function 253,

Barebones function 254, Barebones function 255