Jump to content

MUCK talk:Cheatsheet: Difference between revisions

m
Remove square brackets
m (Add missing step)
m (Remove square brackets)
Line 8: Line 8:
# Hold the morph you want active in your inventory: <code>take exo: morph's morph: coyote</code>
# Hold the morph you want active in your inventory: <code>take exo: morph's morph: coyote</code>
# Set your description to shortcode that will read the description from the item you are currently holding: <code>@desc me=[iter(lcon(me), if(hasattr(##, Species), s(get(##/desc))))]</code>
# Set your description to shortcode that will read the description from the item you are currently holding: <code>@desc me=[iter(lcon(me), if(hasattr(##, Species), s(get(##/desc))))]</code>
# Repeat for your species: <code>@species [iter(lcon(me), if(hasattr(##, Species), s(get(##/species))))]</code>
# Repeat for your species: <code>@species iter(lcon(me), if(hasattr(##, Species), s(get(##/species))))</code>
# When you want to switch, change which object you are holding: <code>put morph: coyote in exo: morphs ; take exo: morphs's morph: human</code>
# When you want to switch, change which object you are holding: <code>put morph: coyote in exo: morphs ; take exo: morphs's morph: human</code>