%This script will automatically pick up set down blankets when you stand or wake %Alternatively you can just use dblank and pblank to drop and pick up your blanket ----Copy and paste below to notepad and save it as an ascii text file--- ----In zMud settings->import->script (ascii)->select your file--- ----Then change bname to your blanket name ----cname to your container name ----pup to either 'get' or 'p' (p is only if you have palm) ----Enjoy #CLASS {Blanket} #VAR bname {'blanket name here'} #VAR cname {'container name here'} #VAR pup {'get or p here'} #VAR blanketdown {0} #ALIAS dblank {get @bname @cname;drop @bname;blanketdown = true} #ALIAS pblank {@pup @bname;put @bname @cname} #ONINPUT {^wake} {wak;#IF (@blanketdown) {pblank;blanketdown = 0} {}} #ONINPUT {^stand} {stan;#IF (@blanketdown) {pblank;blanketdown = 0} {}} #CLASS 0