MUCK talk:Cheatsheet

Discussion page of MUCK:Cheatsheet
Revision as of 02:21, 22 February 2024 by Makyo (talk | contribs) (Makyo moved page Talk:MUCK commands to MUCK talk:Cheatsheet: Move into namespace)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Separate morphs using objects

  1. Create an object to hold your various morphs. It may as well be an exocortex, yes? Lock it to yourself and set it dark so that others do not see it in your inventory. @create exo: morphs ; @lock exo: morphs=me ; @set exo: morphs=dark
  2. Create one object per description in a similar way: @create morph: coyote ; @lock morph: coyote=me ; @set morph: coyote=dark
  3. Set the description on the object to whatever you want your description to be. @desc morph: coyote=Whatever you want, including substitutions...
  4. Repeat for the species: @set morph: coyote/species=coyote
  5. Repeat for as many morphs as you want. When you are done with a morph, put it in your exo: put morph: human in exo: morphs
  6. Hold the morph you want active in your inventory: take exo: morph's morph: coyote
  7. Set your description to shortcode that will read the description from the item you are currently holding: @desc me=[iter(lcon(me), if(hasattr(##, Species), s(get(##/desc))))]
  8. Repeat for your species: @species iter(lcon(me), if(hasattr(##, Species), s(get(##/species))))
  9. When you want to switch, change which object you are holding: put morph: coyote in exo: morphs ; take exo: morphs's morph: human

Cheers to User:Fireheart& for the help on this!

Makyo (talk) 03:45, 15 February 2024 (UTC)