Clear quest board handler
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: clear_quest_board_handler
- xxxxxxxx (DWORD) = Hex value of the quest board item it will clear from left to right. (Acceptable values: 00000000, 00000001, 00000002, 00000003, 00000004.)
- Reserved register(s) (R74, R75, R76, R77, R78.)
Use
Used to clear a quest board item so that it is no longer selectable and make the quest board item no longer be visible.
Example
100: clear_quest_board_handler 00000000' //00000000 the most left quest board item. (To use the other quest board items just replace 00000000 with 00000001, 00000002, 00000003, or 00000004.)
clear R74 //Allows for the most left quest board item to no longer display. (To get the other quest board items to no longer display just make sure that the DWORD matches the reserved register. (00000000 R74. 00000001 R75. and so on)
ret