Prev: 33558 Up: Map Next: 33585
33569: Increase current character's happiness by amount A
Used by the routines at 29619, 29756, 30145, 30686 and 33788.
Input
A Value by which to change character's happiness
33569 PUSH AF Store AF (A = increment value)
33570 CALL 33546 Point IX at Current Character's current stats
33573 POP AF Restore AF (A = increment value)
33574 LD C,A Load increment value into C
33575 LD A,(IX+1) Add increment value to Current Character's happiness...
33578 CALL 53703 ...
33581 LD (IX+1),A ...and store
33584 RET Return
Prev: 33558 Up: Map Next: 33585