Unshrink
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: unshrink register
- register = Players slot number.
- Reserved register (R250.)
Use
Used to restore player(s) to normal size, after the player(s) have been shrunk by the shrink optcode.
(To shrink the player(s) to a tiny size use shrink.)
Example
0: set_episode 00000000 //sets the episode to 1
get_slotnumber R250 //Stores the players slot number in R250
ret
100: shrink R250 //Shrinks the character who encounters this function down to a tiny size.
ret
101: unshrink R250 //Unshrinks the character who encounters this function back to normal size after being shrunk by the shrink opt code.
ret