92
edits
m (Reduced the height of the source boxes to make the page easier to scroll. A Show/Hide button would be the best solution, if available.) |
Soulweaver (talk | contribs) No edit summary |
||
Line 1,401: | Line 1,401: | ||
</pre> | </pre> | ||
</div> | </div> | ||
== Signature Example 11 == | |||
by [[User:Soulweaver|Soulweaver]] 18th February 2011 | |||
{{h4|Signature Image}} | |||
[[Image:SigExample11.png]] | |||
Uses a custom image on the background: [[:File:Rainbowbg.jpg]] | |||
{{h4|Source}} | |||
<div style="height: 160px; overflow: auto; padding: 3px; border:1px solid #AAAAAA; font-size: smaller"> | |||
<pre> | |||
<!-- | |||
NEON RAINBOW ANIDB SIGNATURE TEMPLATE | |||
Designed by Soulweaver | |||
Version 1.20, 18th Feb 2011 | |||
ATTENTION: | |||
This template is only designed for use with a single signature size, | |||
which is 500x144 pixels. If you're attempting to use this in other | |||
sizes, changes are required. | |||
Version history: | |||
1.00 Initial completed version | |||
1.10 Added background bars for recently watched, timezone hack for | |||
broken date function | |||
1.11 Changed the watched % value so that it doesn't expect you to watch | |||
all mylisted files of a certain episode anymore | |||
1.12 Changed the default fonts and moved the stats box contents around | |||
1.13 Conditional check for the ep count of last watched/voted | |||
(prevent "1 episodes" from showing up) | |||
1.20 Add dates for all four recent anime, show ep name of latest watched | |||
--> | |||
<signature> | |||
<!-- USER PREFERENCE VARIABLES --> | |||
<!-- FONTS --> | |||
{{@titlefont="pixchicago-6"}} | |||
{{@titlesize=6}} | |||
{{@atitlefont="tempesta_condensed_bold-6"}} | |||
{{@atitlesize=6}} | |||
{{@adatafont="tempesta-6"}} | |||
{{@adatasize=6}} | |||
<!-- LINE SPACING FOR STATS BOX --> | |||
{{@atitlels=1.2}} | |||
{{@adatals=1.2}} | |||
<!-- DATE FORMATTING --> | |||
{{@datemask="jS M 'y h:ia"}} | |||
{{@timezone=2}} <!-- use only full hours from GMT, e.g. 2 or -6 --> | |||
<!-- TIMEZONE DIFFERENCE FINETUNE --> | |||
{{@difffix="-1"}} | |||
<!-- PROGRESS BARS --> | |||
{{@progressbars=true}} <!-- set to false to not use --> | |||
{{@pbfgcolor="#00af00"}} | |||
{{@pbbgcolor="#6f8f6f"}} | |||
<!-- PRECALCULATED VARIABLES --> | |||
<!-- TITLE --> | |||
{{@titletext=$Sig_username + " - AniDB Statistics"}} | |||
{{@titleleftpos= 250-floor(lengthw(@titletext,@titlefont,@titlesize)/2) }} | |||
<!-- RATINGS --> | |||
{{@wrating1 = fetchvar("$animestat_a"+$watching_id1_aid+"_rating")}} | |||
{{@wrating2 = fetchvar("$animestat_a"+$watching_id2_aid+"_rating")}} | |||
{{@wrating3 = fetchvar("$animestat_a"+$watching_id3_aid+"_rating")}} | |||
{{@wrating4 = fetchvar("$animestat_a"+$watching_id4_aid+"_rating")}} | |||
{{@lfrating = fetchvar("$animestat_a"+$finishedwatching_id1_aid+"_rating")}} | |||
{{@lvrating = fetchvar("$animestat_a"+$latestvote_id1_aid+"_rating")}} | |||
{{@lveps = fetchvar("$animestat_a"+$latestvote_id1_aid+"_etotal")}} | |||
<!-- TOTAL TIME --> | |||
{{@tyr = floor($stat_anidb_viewedlength/(60*24*365))}} | |||
{{@tday = floor(mod($stat_anidb_viewedlength/60/24,365))}} | |||
{{@thr = floor(mod($stat_anidb_viewedlength/60,24))}} | |||
{{@tmin = floor(mod($stat_anidb_viewedlength,60))}} | |||
{{@timetext = "Time spent on anime: "+if(@tyr>0,@tyr+" yrs ","")+if(@tday>0,@tday+" days ","")+if(@thr>0,@thr+" hrs ","")+if(@tmin>0,@tmin+" min ","")}} | |||
{{@timeleftpos= 352-floor(lengthw(@timetext,@adatafont,@adatasize)/2) }} | |||
<!-- TOTAL SIZE --> | |||
{{@sgb = $stat_mylist_fsize / 1024}} | |||
{{@stb = $stat_mylist_fsize / 1048576}} | |||
<!-- PROGBAR PROGRESS --> | |||
{{@a1progress = $watching_id1_state_seenepcount/if($watching_id1_eps==0,fetchvar("$animestat_a"+$watching_id1_aid+"_lastep_enumber")+1,$watching_id1_eps))}} | |||
{{@a2progress = $watching_id2_state_seenepcount/if($watching_id2_eps==0,fetchvar("$animestat_a"+$watching_id2_aid+"_lastep_enumber")+1,$watching_id2_eps))}} | |||
{{@a3progress = $watching_id3_state_seenepcount/if($watching_id3_eps==0,fetchvar("$animestat_a"+$watching_id3_aid+"_lastep_enumber")+1,$watching_id3_eps))}} | |||
{{@a4progress = $watching_id4_state_seenepcount/if($watching_id4_eps==0,fetchvar("$animestat_a"+$watching_id4_aid+"_lastep_enumber")+1,$watching_id4_eps))}} | |||
<!-- TIMEZONE HACK --> | |||
{{@gt_fixed = date("i:s")}} {{@gt_hr = round(date("G"),0) + @timezone + @difffix}} | |||
{{@gt_d = round(date("j"),0)}} {{@gt_m = round(date("n"),0)}} {{@gt_y = round(date("Y"),0)}} | |||
{{@gt_dom = round(date("t"),0)}} {{@gt_ly = if(date("L")=="1",29,28) }} | |||
{{@gt_ldom = if(@gt_m-1==2,@gt_ly,if(@gt_m-1==4,30,if(@gt_m-1==6,30,if(@gt_m-1==9,30,if(@gt_m-1==11,30,31))))) }} | |||
<!-- FIX HR OVERFLOW --> | |||
{{@gt_d = if(@gt_hr>23,@gt_d+1,@gt_d)}} {{@gt_hr = if(@gt_hr>23,@gt_hr-24,@gt_hr)}} | |||
<!-- FIX D OVERFLOW --> | |||
{{@gt_m = if(@gt_d>@gt_dom,@gt_m+1,@gt_m)}} {{@gt_d = if(@gt_d>@gt_dom,1,@gt_d)}} | |||
<!-- FIX Y OVERFLOW --> | |||
{{@gt_y = if(@gt_m>12,@gt_y+1,@gt_y)}} {{@gt_m = if(@gt_m>12,1,@gt_m)}} | |||
<!-- FIX HR UNDERFLOW --> | |||
{{@gt_d = if(@gt_hr<0,@gt_d-1,@gt_d)}} {{@gt_hr = if(@gt_hr<0,@gt_hr+24,@gt_hr)}} | |||
<!-- FIX D UNDERFLOW --> | |||
{{@gt_m = if(@gt_d<1,@gt_m-1,@gt_m)}} {{@gt_d = if(@gt_d<1,@gt_ldom,@gt_d)}} | |||
<!-- FIX Y UNDERFLOW --> | |||
{{@gt_y = if(@gt_m<1,@gt_y-1,@gt_y)}} {{@gt_m = if(@gt_m<1,12,@gt_m)}} | |||
{{@gentime = date(@datemask,@gt_y+"-"+if(@gt_m<10,"0","")+@gt_m+"-"+if(@gt_d<10,"0","")+@gt_d+"T"+if(@gt_hr<10,"0","")+@gt_hr+":"+@gt_fixed) }} | |||
<!-- TIMEZONE HACK --> | |||
{{@wt_fixed = date("i:s",$watching_id1_viewdate))}} | |||
{{@wt_hr = round(date("G",$watching_id1_viewdate),0) + @timezone}} | |||
{{@wt_d = round(date("j",$watching_id1_viewdate),0)}} | |||
{{@wt_m = round(date("n",$watching_id1_viewdate),0)}} | |||
{{@wt_y = round(date("Y",$watching_id1_viewdate),0)}} | |||
{{@wt_dom = round(date("t",$watching_id1_viewdate),0)}} | |||
{{@wt_ly = if(date("L",$watching_id1_viewdate)=="1",29,28) }} | |||
{{@wt_ldom = if(@wt_m-1==2,@wt_ly,if(@wt_m-1==4,30,if(@wt_m-1==6,30,if(@wt_m-1==9,30,if(@wt_m-1==11,30,31))))) }} | |||
<!-- FIX HR OVERFLOW --> | |||
{{@wt_d = if(@wt_hr>23,@wt_d+1,@wt_d)}} {{@wt_hr = if(@wt_hr>23,@wt_hr-24,@wt_hr)}} | |||
<!-- FIX D OVERFLOW --> | |||
{{@wt_m = if(@wt_d>@wt_dom,@wt_m+1,@wt_m)}} {{@wt_d = if(@wt_d>@wt_dom,1,@wt_d)}} | |||
<!-- FIX Y OVERFLOW --> | |||
{{@wt_y = if(@wt_m>12,@wt_y+1,@wt_y)}} {{@wt_m = if(@wt_m>12,1,@wt_m)}} | |||
<!-- FIX HR UNDERFLOW --> | |||
{{@wt_d = if(@wt_hr<0,@wt_d-1,@wt_d)}} {{@wt_hr = if(@wt_hr<0,@wt_hr+24,@wt_hr)}} | |||
<!-- FIX D UNDERFLOW --> | |||
{{@wt_m = if(@wt_d<1,@wt_m-1,@wt_m)}} {{@wt_d = if(@wt_d<1,@wt_ldom,@wt_d)}} | |||
<!-- FIX Y UNDERFLOW --> | |||
{{@wt_y = if(@wt_m<1,@wt_y-1,@wt_y)}} {{@wt_m = if(@wt_m<1,12,@wt_m)}} | |||
{{@wtime1 = date(@datemask,@wt_y+"-"+if(@wt_m<10,"0","")+@wt_m+"-"+if(@wt_d<10,"0","")+@wt_d+"T"+if(@wt_hr<10,"0","")+@wt_hr+":"+@wt_fixed) }} | |||
<!-- TIMEZONE HACK --> | |||
{{@wt_fixed = date("i:s",$watching_id2_viewdate))}} | |||
{{@wt_hr = round(date("G",$watching_id2_viewdate),0) + @timezone}} | |||
{{@wt_d = round(date("j",$watching_id2_viewdate),0)}} | |||
{{@wt_m = round(date("n",$watching_id2_viewdate),0)}} | |||
{{@wt_y = round(date("Y",$watching_id2_viewdate),0)}} | |||
{{@wt_dom = round(date("t",$watching_id2_viewdate),0)}} | |||
{{@wt_ly = if(date("L",$watching_id2_viewdate)=="1",29,28) }} | |||
{{@wt_ldom = if(@wt_m-1==2,@wt_ly,if(@wt_m-1==4,30,if(@wt_m-1==6,30,if(@wt_m-1==9,30,if(@wt_m-1==11,30,31))))) }} | |||
<!-- FIX HR OVERFLOW --> | |||
{{@wt_d = if(@wt_hr>23,@wt_d+1,@wt_d)}} {{@wt_hr = if(@wt_hr>23,@wt_hr-24,@wt_hr)}} | |||
<!-- FIX D OVERFLOW --> | |||
{{@wt_m = if(@wt_d>@wt_dom,@wt_m+1,@wt_m)}} {{@wt_d = if(@wt_d>@wt_dom,1,@wt_d)}} | |||
<!-- FIX Y OVERFLOW --> | |||
{{@wt_y = if(@wt_m>12,@wt_y+1,@wt_y)}} {{@wt_m = if(@wt_m>12,1,@wt_m)}} | |||
<!-- FIX HR UNDERFLOW --> | |||
{{@wt_d = if(@wt_hr<0,@wt_d-1,@wt_d)}} {{@wt_hr = if(@wt_hr<0,@wt_hr+24,@wt_hr)}} | |||
<!-- FIX D UNDERFLOW --> | |||
{{@wt_m = if(@wt_d<1,@wt_m-1,@wt_m)}} {{@wt_d = if(@wt_d<1,@wt_ldom,@wt_d)}} | |||
<!-- FIX Y UNDERFLOW --> | |||
{{@wt_y = if(@wt_m<1,@wt_y-1,@wt_y)}} {{@wt_m = if(@wt_m<1,12,@wt_m)}} | |||
{{@wtime2 = date(@datemask,@wt_y+"-"+if(@wt_m<10,"0","")+@wt_m+"-"+if(@wt_d<10,"0","")+@wt_d+"T"+if(@wt_hr<10,"0","")+@wt_hr+":"+@wt_fixed) }} | |||
<!-- TIMEZONE HACK --> | |||
{{@wt_fixed = date("i:s",$watching_id3_viewdate))}} | |||
{{@wt_hr = round(date("G",$watching_id3_viewdate),0) + @timezone}} | |||
{{@wt_d = round(date("j",$watching_id3_viewdate),0)}} | |||
{{@wt_m = round(date("n",$watching_id3_viewdate),0)}} | |||
{{@wt_y = round(date("Y",$watching_id3_viewdate),0)}} | |||
{{@wt_dom = round(date("t",$watching_id3_viewdate),0)}} | |||
{{@wt_ly = if(date("L",$watching_id3_viewdate)=="1",29,28) }} | |||
{{@wt_ldom = if(@wt_m-1==2,@wt_ly,if(@wt_m-1==4,30,if(@wt_m-1==6,30,if(@wt_m-1==9,30,if(@wt_m-1==11,30,31))))) }} | |||
<!-- FIX HR OVERFLOW --> | |||
{{@wt_d = if(@wt_hr>23,@wt_d+1,@wt_d)}} {{@wt_hr = if(@wt_hr>23,@wt_hr-24,@wt_hr)}} | |||
<!-- FIX D OVERFLOW --> | |||
{{@wt_m = if(@wt_d>@wt_dom,@wt_m+1,@wt_m)}} {{@wt_d = if(@wt_d>@wt_dom,1,@wt_d)}} | |||
<!-- FIX Y OVERFLOW --> | |||
{{@wt_y = if(@wt_m>12,@wt_y+1,@wt_y)}} {{@wt_m = if(@wt_m>12,1,@wt_m)}} | |||
<!-- FIX HR UNDERFLOW --> | |||
{{@wt_d = if(@wt_hr<0,@wt_d-1,@wt_d)}} {{@wt_hr = if(@wt_hr<0,@wt_hr+24,@wt_hr)}} | |||
<!-- FIX D UNDERFLOW --> | |||
{{@wt_m = if(@wt_d<1,@wt_m-1,@wt_m)}} {{@wt_d = if(@wt_d<1,@wt_ldom,@wt_d)}} | |||
<!-- FIX Y UNDERFLOW --> | |||
{{@wt_y = if(@wt_m<1,@wt_y-1,@wt_y)}} {{@wt_m = if(@wt_m<1,12,@wt_m)}} | |||
{{@wtime3 = date(@datemask,@wt_y+"-"+if(@wt_m<10,"0","")+@wt_m+"-"+if(@wt_d<10,"0","")+@wt_d+"T"+if(@wt_hr<10,"0","")+@wt_hr+":"+@wt_fixed) }} | |||
<!-- TIMEZONE HACK --> | |||
{{@wt_fixed = date("i:s",$watching_id4_viewdate))}} | |||
{{@wt_hr = round(date("G",$watching_id4_viewdate),0) + @timezone}} | |||
{{@wt_d = round(date("j",$watching_id4_viewdate),0)}} | |||
{{@wt_m = round(date("n",$watching_id4_viewdate),0)}} | |||
{{@wt_y = round(date("Y",$watching_id4_viewdate),0)}} | |||
{{@wt_dom = round(date("t",$watching_id4_viewdate),0)}} | |||
{{@wt_ly = if(date("L",$watching_id4_viewdate)=="1",29,28) }} | |||
{{@wt_ldom = if(@wt_m-1==2,@wt_ly,if(@wt_m-1==4,30,if(@wt_m-1==6,30,if(@wt_m-1==9,30,if(@wt_m-1==11,30,31))))) }} | |||
<!-- FIX HR OVERFLOW --> | |||
{{@wt_d = if(@wt_hr>23,@wt_d+1,@wt_d)}} {{@wt_hr = if(@wt_hr>23,@wt_hr-24,@wt_hr)}} | |||
<!-- FIX D OVERFLOW --> | |||
{{@wt_m = if(@wt_d>@wt_dom,@wt_m+1,@wt_m)}} {{@wt_d = if(@wt_d>@wt_dom,1,@wt_d)}} | |||
<!-- FIX Y OVERFLOW --> | |||
{{@wt_y = if(@wt_m>12,@wt_y+1,@wt_y)}} {{@wt_m = if(@wt_m>12,1,@wt_m)}} | |||
<!-- FIX HR UNDERFLOW --> | |||
{{@wt_d = if(@wt_hr<0,@wt_d-1,@wt_d)}} {{@wt_hr = if(@wt_hr<0,@wt_hr+24,@wt_hr)}} | |||
<!-- FIX D UNDERFLOW --> | |||
{{@wt_m = if(@wt_d<1,@wt_m-1,@wt_m)}} {{@wt_d = if(@wt_d<1,@wt_ldom,@wt_d)}} | |||
<!-- FIX Y UNDERFLOW --> | |||
{{@wt_y = if(@wt_m<1,@wt_y-1,@wt_y)}} {{@wt_m = if(@wt_m<1,12,@wt_m)}} | |||
{{@wtime4 = date(@datemask,@wt_y+"-"+if(@wt_m<10,"0","")+@wt_m+"-"+if(@wt_d<10,"0","")+@wt_d+"T"+if(@wt_hr<10,"0","")+@wt_hr+":"+@wt_fixed) }} | |||
<!-- DEFAULT VALUES --> | |||
<defaults> | |||
<text color="#ffffff" face="{{@adatafont}}" size="{{@adatasize}}" align="top-left" line-space="1.6" /> | |||
<image size="22x22" /> | |||
</defaults> | |||
<layout> | |||
<!-- BG BOXES --> | |||
<shape type="rectangle" position="2x2" size="496x18" color="#000000" alpha="60" hollow="false" /> | |||
<shape type="rectangle" position="2x2" size="496x18" color="#000000" alpha="100" hollow="true" /> | |||
<shape type="rectangle" position="2x22" size="197x120" color="#000000" alpha="60" hollow="false" /> | |||
<shape type="rectangle" position="2x22" size="197x120" color="#000000" alpha="100" hollow="true" /> | |||
<shape type="rectangle" position="201x22" size="148x40" color="#000000" alpha="60" hollow="false" /> | |||
<shape type="rectangle" position="201x22" size="148x40" color="#000000" alpha="100" hollow="true" /> | |||
<shape type="rectangle" position="351x22" size="148x40" color="#000000" alpha="60" hollow="false" /> | |||
<shape type="rectangle" position="351x22" size="148x40" color="#000000" alpha="100" hollow="true" /> | |||
<shape type="rectangle" position="201x64" size="297x78" color="#000000" alpha="60" hollow="false" /> | |||
<shape type="rectangle" position="201x64" size="297x78" color="#000000" alpha="100" hollow="true" /> | |||
<!-- TITLE TEXTS --> | |||
<text position="{{@titleleftpos+1}}x5" face="{{@titlefont}}" size="{{@titlesize}}" color="#1f6f1f"><line>{{@titletext}}</line></text> | |||
<text position="{{@titleleftpos}}x4" face="{{@titlefont}}" size="{{@titlesize}}"><line>{{@titletext}}</line></text> | |||
<text position="51x23" face="{{@titlefont}}" size="{{@titlesize}}"><line>Recently watched</line></text> | |||
<text position="243x23" face="{{@titlefont}}" size="{{@titlesize}}"><line>Last finished</line></text> | |||
<text position="393x23" face="{{@titlefont}}" size="{{@titlesize}}"><line>Last voted</line></text> | |||
<text position="316x65" face="{{@titlefont}}" size="{{@titlesize}}"><line>Mylist stats</line></text> | |||
<!-- CURRENT TIME --> | |||
<text position="497x4" align="top-right" line-space="1.2"><line>Generated:</line><line>{{@gentime}}</line></text> | |||
<!-- ANIME IMAGES --> | |||
<image anime="{{ $watching_id1_aid }}" position="4x36" size="32x32" /> | |||
<image anime="{{ $watching_id2_aid }}" position="4x70" /> | |||
<image anime="{{ $watching_id3_aid }}" position="4x94" /> | |||
<image anime="{{ $watching_id4_aid }}" position="4x118" /> | |||
<image anime="{{ $finishedwatching_id1_aid }}" position="203x24" size="36x36" /> | |||
<image anime="{{ $latestvote_id1_aid }}" position="353x24" size="36x36" /> | |||
<!-- LATEST PROGBARS --> | |||
<shape type="rectangle" display="{{@progressbars}}" position="{{35 + ceil(161*@a1progress)}}x37" size="{{162 - ceil(162*@a1progress)}}x11" color="{{@pbbgcolor}}" alpha="60" /> | |||
<shape type="rectangle" display="{{@progressbars}}" position="{{25 + ceil(171*@a2progress)}}x71" size="{{172 - ceil(172*@a2progress)}}x11" color="{{@pbbgcolor}}" alpha="60" /> | |||
<shape type="rectangle" display="{{@progressbars}}" position="{{25 + ceil(171*@a3progress)}}x95" size="{{172 - ceil(172*@a3progress)}}x11" color="{{@pbbgcolor}}" alpha="60" /> | |||
<shape type="rectangle" display="{{@progressbars}}" position="{{25 + ceil(171*@a4progress)}}x119" size="{{172 - ceil(172*@a4progress)}}x11" color="{{@pbbgcolor}}" alpha="60" /> | |||
<shape type="rectangle" display="{{@progressbars}}" position="36x37" size="{{ceil(161*@a1progress)}}x11" color="{{@pbfgcolor}}" alpha="60" /> | |||
<shape type="rectangle" display="{{@progressbars}}" position="26x71" size="{{ceil(171*@a2progress)}}x11" color="{{@pbfgcolor}}" alpha="60" /> | |||
<shape type="rectangle" display="{{@progressbars}}" position="26x95" size="{{ceil(171*@a3progress)}}x11" color="{{@pbfgcolor}}" alpha="60" /> | |||
<shape type="rectangle" display="{{@progressbars}}" position="26x119" size="{{ceil(171*@a4progress)}}x11" color="{{@pbfgcolor}}" alpha="60" /> | |||
<!-- LATEST NAMES --> | |||
<text position="38x38"> | |||
<line face="{{@atitlefont}}" size="{{@atitlesize}}">{{ truncatew($watching_id1_aname,129,@atitlefont,@atitlesize,"...") }}</line> | |||
<line>{{@wtime1}}</line> | |||
<line>{{truncatew("Ep. " + $watching_id1_state_seenepcount + ': "' + $latestwatched_id1_ename + '"',159,@adatafont,@adatasize,'..."')}}</line> | |||
</text> | |||
<text position="30x72"> | |||
<line face="{{@atitlefont}}" size="{{@atitlesize}}">{{ truncatew($watching_id2_aname,137,@atitlefont,@atitlesize,"...") }}</line> | |||
<line>{{@wtime2}}</line> | |||
</text> | |||
<text position="30x96"> | |||
<line face="{{@atitlefont}}" size="{{@atitlesize}}">{{ truncatew($watching_id3_aname,137,@atitlefont,@atitlesize,"...") }}</line> | |||
<line>{{@wtime3}}</line> | |||
</text> | |||
<text position="30x120"> | |||
<line face="{{@atitlefont}}" size="{{@atitlesize}}">{{ truncatew($watching_id4_aname,137,@atitlefont,@atitlesize,"...") }}</line> | |||
<line>{{@wtime4}}</line> | |||
</text> | |||
<text position="197x38" align="top-right" line-space="1.5"> | |||
<line>{{$watching_id1_state_seenepcount}}/{{if($watching_id1_eps==0,"TBA",$watching_id1_eps)}}</line> | |||
<line>R: {{if(@wrating1==0,"-.--",precision(@wrating1,2))}}</line> | |||
</text> | |||
<text position="197x72" align="top-right" line-space="1.5"> | |||
<line>{{$watching_id2_state_seenepcount}}/{{if($watching_id2_eps==0,"TBA",$watching_id2_eps)}}</line> | |||
<line>R: {{if(@wrating2==0,"-.--",precision(@wrating2,2))}}</line> | |||
</text> | |||
<text position="197x96" align="top-right" line-space="1.5"> | |||
<line>{{$watching_id3_state_seenepcount}}/{{if($watching_id3_eps==0,"TBA",$watching_id3_eps)}}</line> | |||
<line>R: {{if(@wrating3==0,"-.--",precision(@wrating3,2))}}</line> | |||
</text> | |||
<text position="197x120" align="top-right" line-space="1.5"> | |||
<line>{{$watching_id4_state_seenepcount}}/{{if($watching_id4_eps==0,"TBA",$watching_id4_eps)}}</line> | |||
<line>R: {{if(@wrating4==0,"-.--",precision(@wrating4,2))}}</line> | |||
</text> | |||
<!-- LAST FINISHED --> | |||
<text position="243x36" line-space="1.2"> | |||
<line face="{{@atitlefont}}" size="{{@atitlesize}}">{{ truncatew($finishedwatching_id1_aname,119,@atitlefont,@atitlesize,"...") }}</line> | |||
<line>{{$finishedwatching_id1_eps}} episode{{if($finishedwatching_id1_eps==1,"","s")}}</line> | |||
<line>Rating: {{if(@lfrating==0,"-.--",precision(@lfrating,2))}}</line> | |||
</text> | |||
<!-- LAST VOTED --> | |||
<text position="393x36" line-space="1.2"> | |||
<line face="{{@atitlefont}}" size="{{@atitlesize}}">{{ truncatew($latestvote_id1_aname,119,@atitlefont,@atitlesize,"...") }}</line> | |||
<line>{{if(@lveps==1,"One ep.",@lveps+" eps")}}, R: {{if(@lvrating==0,"-.--",precision(@lvrating,2))}}</line> | |||
<line>My vote: {{precision($latestvote_id1_vote,1)}}</line> | |||
</text> | |||
<!-- STATS, LEFT SIDE --> | |||
<text position="283x82" face="{{@atitlefont}}" size="{{@atitlesize}}" line-space="{{@atitlels}}"> | |||
<line>Anime</line> | |||
<line>Episodes</line> | |||
<line>Eps watched</line> | |||
<line>Files</line> | |||
<line>Votes</line> | |||
</text> | |||
<text position="283x82" align="top-right" line-space="{{@adatals}}"> | |||
<line>{{$stat_mylist_acount}}</line> | |||
<line>{{$stat_mylist_epcount}}</line> | |||
<line>{{$stat_anidb_viewedepcnt}}</line> | |||
<line>{{$stat_mylist_fcount}}</line> | |||
<line>{{$stat_anidb_votecount}}</line> | |||
</text> | |||
<!-- STATS, RIGHT SIDE --> | |||
<text position="413x82" face="{{@atitlefont}}" size="{{@atitlesize}}" line-space="{{@atitlels}}"> | |||
<line>Eps added</line> | |||
<line>Files added</line> | |||
<line></line> | |||
<line>Watched</line> | |||
<line>Total size</line> | |||
</text> | |||
<text position="413x82" align="top-right" line-space="{{@adatals}}"> | |||
<line>{{$stat_anidb_add_epcount}}</line> | |||
<line>{{$stat_anidb_add_fcount}}</line> | |||
<line></line> | |||
<line>{{precision($stat_anidb_viewedepcnt/$stat_mylist_epcount*100,2)}}%</line> | |||
<line>{{if(@stb>=1,precision(@stb,2)+" TB",if(@sgb>=1,precision(@sgb,2)+" GB",$stat_mylist_fsize+" MB"))}}</line> | |||
</text> | |||
<text position="{{@timeleftpos}}x121"> | |||
<line>{{@timetext}}</line> | |||
</text> | |||
<!-- CREDIT - cannot be enforced but I really appreciate if you leave this here --> | |||
<text position="496x140" align="bottom-right" face="{{@atitlefont}}" size="{{@atitlesize}}"> | |||
<line>Template design by Soulweaver</line> | |||
</text> | |||
<text display="false" position="0x0" face="{{@atitlefont}}" size="{{@atitlesize}}"> | |||
<line>Currently editing the template, may appear broken at times</line> | |||
</text> | |||
<!-- BORDER FOR THE SIG --> | |||
<shape type="rectangle" position="0x0" size="500x144" color="#000000" alpha="100" hollow="true" /> | |||
</layout> | |||
</signature> | |||
</pre> | |||
</div> | |||
[[Category:SigServer]] | [[Category:SigServer]] |
edits