✨ ARCHIVE MODE ✨
The forum has now been set to read-only mode, no new posts, resources, replies etc will not be possible.
We recommend you join our Discord server to get real-time response: Discord Invite Link
I was talking about using a template i made.just put the template into the page
and then page will create a link to the template
Ahá!!!I was talking about using a template i made.just put the template into the page
and then page will create a link to the template
Actually the question is How do i make a template .-.
Look the characteristic of other templates and you will learn about it. It's just an abreviation of codes, and you can add things with the "{{{ }}}", I mean, if a template is:
Template:photo
[[File:{{{1}}}.png]]
And you write it:
{{Photo|pokemon3d}}
The result will be:
[[File:pokémon3d.png]]
You can also do this:
Template:photo
[[File:{{{Name}}}.png]]
and write it like this:
{{Photo|Name=Pokemon3d}}
I didn't like this format, because one must write more. You can add infinite {{{ }}}, and repeat the same number to fill things witht the same word
I dont really understand...
Like what im trying to do is make this a template:
{| class="wikitable nowrap sortable"
|-
! style="background-color:#B9FFC5" | Location
! style="background-color:#FFFFC8" | Rate Morning
! style="background-color:#96E0FF" | Rate Day
! style="background-color:#B0E0E6" | Rate Evening
! style="background-color:#597A9B" | Rate Night
|-
| Evolve [[Pokémon List/Bulbasaur|Bulbasaur]]
| style="background-color:#FFFFC8" | N/A
| style="background-color:#96E0FF" | N/A
| style="background-color:#B0E0E6" | N/A
| style="background-color:#597A9B" | N/A
|}
How can i make all that into a template?
{| class="wikitable nowrap sortable"
|-
! style="background-color:#B9FFC5" | Location
! style="background-color:#FFFFC8" | Rate Morning
! style="background-color:#96E0FF" | Rate Day
! style="background-color:#B0E0E6" | Rate Evening
! style="background-color:#597A9B" | Rate Night
|-
| Evolve [[Pokémon List/{{{1}}}|{{{1}}}]]
| style="background-color:#FFFFC8" | {{{2}}}
| style="background-color:#96E0FF" | {{{3}}}
| style="background-color:#B0E0E6" | {{{4}}}
| style="background-color:#597A9B" | {{{5}}}
|}
And you must write this to implement it:
{{Loca|Bulbasaur|10%|20%|N/A|10%}}
(if the template is called "Loca")
Quick question though... what do the 10%|20%|N/A|10% stand for?I dont really understand...
Like what im trying to do is make this a template:
{| class="wikitable nowrap sortable"
|-
! style="background-color:#B9FFC5" | Location
! style="background-color:#FFFFC8" | Rate Morning
! style="background-color:#96E0FF" | Rate Day
! style="background-color:#B0E0E6" | Rate Evening
! style="background-color:#597A9B" | Rate Night
|-
| Evolve [[Pokémon List/Bulbasaur|Bulbasaur]]
| style="background-color:#FFFFC8" | N/A
| style="background-color:#96E0FF" | N/A
| style="background-color:#B0E0E6" | N/A
| style="background-color:#597A9B" | N/A
|}
How can i make all that into a template?Code:{| class="wikitable nowrap sortable" |- ! style="background-color:#B9FFC5" | Location ! style="background-color:#FFFFC8" | Rate Morning ! style="background-color:#96E0FF" | Rate Day ! style="background-color:#B0E0E6" | Rate Evening ! style="background-color:#597A9B" | Rate Night |- | Evolve [[Pokémon List/{{{1}}}|{{{1}}}]] | style="background-color:#FFFFC8" | {{{2}}} | style="background-color:#96E0FF" | {{{3}}} | style="background-color:#B0E0E6" | {{{4}}} | style="background-color:#597A9B" | {{{5}}} |} And you must write this to implement it: {{Loca|Bulbasaur|10%|20%|N/A|10%}} (if the template is called "Loca")
I thought about doing that, but it seemed like it was bare, and looked naked...if that makes sense. Thats why i figured the percents would make it seem not so small. I am still linking the Routes to their respected pages though.I think it's better only saying the place or method (evolution), and in the "place" link it with the page of the place, and there will be the percentages and those things
If you want to check out how im doing it, you can check out Bulbasaur ---> Charizard. those are the ones ive done so far.I think it's better only saying the place or method (evolution), and in the "place" link it with the page of the place, and there will be the percentages and those things
EXCELENT!!!If you want to check out how im doing it, you can check out Bulbasaur ---> Charizard. those are the ones ive done so far