Barebones function 302

From Unofficial QEdit Wiki Guide
Jump to: navigation, search

Barebones function 302

Function 302: 302:

  • Function 302 = Part of guild lady text failed.

Guild lady text failed

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

Barebones function 300 = Function 300 checks what timer was used count down or count up. If count down continue to function 301. if count up continue to function 311.

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

Barebones function 302 = Function 302 displays the guild lady's quest failed message for normal mode. Then displays time attack information for normal mode, and quest credits.

Barebones function 303 = Function 303 displays the guild lady's quest failed message for hard mode. Then displays time attack information for hard mode, and quest credits.

Barebones function 304 = Function 304 displays the guild lady's quest failed message for very hard mode. Then displays time attack information for very hard mode, and quest credits.

Barebones function 305 = Function 305 displays the guild lady's quest failed message for ultimate mode. Then displays time attack information for ultimate mode, and quest credits.

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

Barebones function 312 = Function 312 displays the guild lady's quest failed message for normal mode. Then displays time attack information for normal mode, and quest credits.

Barebones function 313 = Function 313 displays the guild lady's quest failed message for hard mode. Then displays time attack information for hard mode, and quest credits.

Barebones function 314 = Function 314 displays the guild lady's quest failed message for very hard mode. Then displays time attack information for very hard mode, and quest credits.

Barebones function 315 = Function 315 displays the guild lady's quest failed message for ultimate mode. Then displays time attack information for ultimate mode, and quest credits.


Use

Function 302 displays the guild lady's quest failed message for normal mode. Then displays time attack information for normal mode, and quest credits.

How the function appears in the script


302:     window_msg Insert quest failed<cr>normal<cr>guild lady text here. //Displays a window message for normal mode quest failure.
         winend  //Closes the window message.
         call 61 //Calls function 61. (To display time attack info.)
         call 249 //Calls function 249. (To display quest credits.)
         ret 

Also see

window_msg, winend, call, ret,

Barebones function 61, Barebones function 249, Barebones function 301