User talk:Storylover141
From Create Your Own Story
m (Created page with 'Adding something into Equipment is easy enough. <nowiki>{{Status|Equipment=''a piece of paper''|Health=100|MP=100|Level=5}}</nowiki> will produce: {{Status|Equipment=''a piece…') |
m |
||
Line 8: | Line 8: | ||
Get it? Anything after the equals sign will go into the field with that name. --[[User:Platypus|Platypus]] 02:22, 19 September 2011 (UTC) | Get it? Anything after the equals sign will go into the field with that name. --[[User:Platypus|Platypus]] 02:22, 19 September 2011 (UTC) | ||
+ | |||
+ | |||
+ | Creating your own status indicator is a bit tricky. You might want to take a look at how other status indicators are coded by going to http://editthis.info/choose_your_own_adventure/Category:Templates. Click on any of the templates and use the 'edit' button to see how they were constructed. | ||
+ | |||
+ | The generic status bar shown above is codded like this: | ||
+ | |||
+ | <nowiki> | ||
+ | {| width="100%"</nowiki> | ||
+ | |||
+ | <nowiki>| bgcolor="#LLCLL" valign="top" width="100%" colspan="3"| '''Status'''</nowiki> | ||
+ | |||
+ | <nowiki>|-</nowiki> | ||
+ | |||
+ | <nowiki>| bgcolor="#OOFOO" valign="top" width="8%"| Health</nowiki> | ||
+ | |||
+ | <nowiki>| bgcolor="#DDFDD" valign="top" width="8%"| {{{Health}}}</nowiki> | ||
+ | |||
+ | <nowiki>| bgcolor="#GGFGG" valign="top" width="84%" rowspan="3"| Equipment:</nowiki> | ||
+ | |||
+ | <nowiki>{{{Equipment}}}</nowiki> | ||
+ | |||
+ | <nowiki>|-</nowiki> | ||
+ | |||
+ | <nowiki>| bgcolor="#OOFOO" valign="top"| MP</nowiki> | ||
+ | |||
+ | <nowiki>| bgcolor="#DDFDD" valign="top"| {{{MP}}}</nowiki> | ||
+ | |||
+ | <nowiki>|- | ||
+ | | bgcolor="#OOFOO" valign="top"| Level</nowiki> | ||
+ | |||
+ | <nowiki>| bgcolor="#DDFDD" valign="top"| {{{Level}}}</nowiki> | ||
+ | |||
+ | <nowiki>|}</nowiki> | ||
+ | |||
+ | By changing the field names, you can change what goes where in the status bar. | ||
+ | |||
+ | --[[User:Platypus|Platypus]] 18:58, 26 September 2011 (UTC) |
Revision as of 18:58, 26 September 2011
Adding something into Equipment is easy enough.
{{Status|Equipment=''a piece of paper''|Health=100|MP=100|Level=5}}
will produce:
Status | ||
Health | 100 | Equipment:
a piece of paper |
MP | 100 | |
Level | 5 |
Get it? Anything after the equals sign will go into the field with that name. --Platypus 02:22, 19 September 2011 (UTC)
Creating your own status indicator is a bit tricky. You might want to take a look at how other status indicators are coded by going to http://editthis.info/choose_your_own_adventure/Category:Templates. Click on any of the templates and use the 'edit' button to see how they were constructed.
The generic status bar shown above is codded like this:
{| width="100%"
| bgcolor="#LLCLL" valign="top" width="100%" colspan="3"| '''Status'''
|-
| bgcolor="#OOFOO" valign="top" width="8%"| Health
| bgcolor="#DDFDD" valign="top" width="8%"| {{{Health}}}
| bgcolor="#GGFGG" valign="top" width="84%" rowspan="3"| Equipment:
{{{Equipment}}}
|-
| bgcolor="#OOFOO" valign="top"| MP
| bgcolor="#DDFDD" valign="top"| {{{MP}}}
|- | bgcolor="#OOFOO" valign="top"| Level
| bgcolor="#DDFDD" valign="top"| {{{Level}}}
|}
By changing the field names, you can change what goes where in the status bar.
--Platypus 18:58, 26 September 2011 (UTC)