Exp multiplication
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: Exp_multiplication register
- register = Register to begin the multiplication formula
Use
Used to multiply monster's exp values in challenge mode
NOTE: This opcode uses the below formula. It's only available in Challenge Mode
base exp x R1 + ((base exp x R2%) / R3%)
Example
0: leti R1 00000064 //First register to be used, multiply by 100.
leti R2 0000000A //Second register to be used, multiply by 10%.
leti R3 00000001 //Second register to be used, divide by 1%.
Exp_multiplication R1 //Tells the quest to start reading the details of this opcode at R1.