Forum Settings
Forums

Tutorial: Generating scripted-signatures (Version 2)

New
Pages (9) « First ... « 4 5 [6] 7 8 » ... Last »
Jul 24, 2009 7:30 AM

Offline
May 2008
1873
Thanks for this. Finally got mine working. Will have to customize this when I have the time. :D
Jul 24, 2009 7:42 AM

Offline
Feb 2008
4295
canephalanx said:
Thanks for this. Finally got mine working. Will have to customize this when I have the time. :D
Unfortunately, it's too big. Maximum size of MAL signatures with MAL updates is 140x600 pixels, yours is 550x176. It is nice though and you have another reason to customize it now :)
kuroshiroiJul 24, 2009 7:46 AM
Jul 24, 2009 10:01 PM

Offline
May 2008
1873
kuroshiroi said:
canephalanx said:
Thanks for this. Finally got mine working. Will have to customize this when I have the time. :D
Unfortunately, it's too big. Maximum size of MAL signatures with MAL updates is 140x600 pixels, yours is 550x176. It is nice though and you have another reason to customize it now :)


I see. I'll have to trim that down. Aside from that, how do I make it say

"Completed - #/#"

It doesn't seem to give me that option.

Edit: Never mind, I think I got it working. Just had to edit something in sig.php :D
canephalanxJul 24, 2009 10:48 PM
Aug 1, 2009 1:14 PM
Offline
Feb 2009
1637
Not sure if this was asked yet or not >.<
Anyways, I'm working on a new sig, and I have a question.
I want my sig to show the anime and manga titles, but not the episode or chapters.
And I don't want it to show any "plan to watch" or anything but the anime/manga titles.
So can anybody tell me what I need to erase in which file?

x--- thanks --- x
Aug 4, 2009 12:02 AM

Offline
Aug 2008
2006
Hey, I'm trying to do a php sig again and I think I got the hang of it but there are a few problems I need help with.

Here is what I have so far:


1. I want to change the "@watching 3-12#" to watching 3 of 12
2. How do I limit the number of characters so the lettering stays within my circle.
3. How do I add a foreground image.

Thanks
Aug 4, 2009 12:42 AM
Offline
Feb 2009
1637
spineslayer said:
Hey, I'm trying to do a php sig again and I think I got the hang of it but there are a few problems I need help with.

Here is what I have so far:


1. I want to change the "@watching 3-12#" to watching 3 of 12
2. How do I limit the number of characters so the lettering stays within my circle.
3. How do I add a foreground image.

Thanks


Imma see how I can help xD You will need to open up settings.php for both number 1 and 2.

1. Find the part that says $pre_watch = "@watching";.
Change the @watching to whatever you want. So, if you want "watching 3 of 12", put in "watching".
Then, for the "of", find $middle_watch = "/"; . Replace "/" with "of".
That should work.
If you want to get rid of the "#", find $after_watch = "#";. Erase it.


2. Find $cut_titles = "0"; // 1=yes or 0=no
$cut_title_after = "12"; //

Put "1" for $cut_titles.
Then, for $cut_title_after , put the amount of letters you want it to be limited to.

3. I don't know that would. Sorry. >.<
Aug 4, 2009 12:48 AM

Offline
Aug 2008
2006
@iMeasy- Thank you! now I just need to know how to put a foreground image in.
Aug 4, 2009 12:55 AM
Offline
Feb 2009
1637
spineslayer said:
@iMeasy- Thank you! now I just need to know how to put a foreground image in.


Lol. You're welcome. Your sig looks nice btw.
And yes, I would like to know how to do the foreground thing too ^^


Now, if only someone will answer my question before yours XD
*crosses fingers*
Aug 4, 2009 1:59 AM

Offline
Aug 2008
2262
iMeasy said:
Now, if only someone will answer my question before yours XD
*crosses fingers*
So you only need the titles, right? I never used v2, but i guess you should just erase the $status parts from image-output.php.

For example:
imagefttext($image,14,0,118,48,$colour,$font,$titles[0][0]); - KEEP
imagefttext($image,12,0,170,60,$colour,$font,$status[0][0]); - DELETE
imagefttext($image,14,0,222,72,$colour,$font,$dates[0][0]); - DELETE

spineslayer said:
now I just need to know how to put a foreground image in.
Add this to image_output. php before the line imagepng ($image);

$image2 = ImageCreateFromPng("name_of_file_in_the_same_folder.png");
imagealphablending ($image2,true);
imagesavealpha($image2,true);

imagecopy ($image,$image2,0,0,0,0,the_width_of_image2,the_height_of_image2);


Fill in the name and the width and height of the foreground image. The image file must be in the same folder as image_output.php
Aug 4, 2009 3:12 AM

Offline
Aug 2008
2006
@Kvakond- Thanks a bunch!
Aug 4, 2009 6:18 PM
Offline
Feb 2009
1637
Kvakond said:
iMeasy said:
Now, if only someone will answer my question before yours XD
*crosses fingers*
So you only need the titles, right? I never used v2, but i guess you should just erase the $status parts from image-output.php.

For example:
imagefttext($image,14,0,118,48,$colour,$font,$titles[0][0]); - KEEP
imagefttext($image,12,0,170,60,$colour,$font,$status[0][0]); - DELETE
imagefttext($image,14,0,222,72,$colour,$font,$dates[0][0]); - DELETE



Awesome! Thank you thank you! :3
Aug 4, 2009 7:18 PM

Offline
Aug 2008
2262
You're welcome, I'm glad to help!
Aug 8, 2009 12:03 AM

Offline
Aug 2008
2006
How do you change the opacity levels on the update text and have the text on an angle?
Aug 8, 2009 12:44 AM

Offline
Aug 2008
2262
spineslayer said:
How do you change the opacity levels on the update text and have the text on an angle?
angle:

imagefttext($image,14,0,118,48,$colour,$font,$titles[0][0]);

- change that 0 to the degree you want, for example: 15 -> 15°

Changing the opacity on text is a bit more tricky. The best work-around I can think of is to have a fully transparent image file with the same size as your sig. Add it the same way as the previous "add foreground image" problem, but instead of "imagecopy( )" use:

imagefttext($image2,14,0,118,48,$colour,$font,$titles[0][0]);
....
- you want to put the update text on the transparent image

imagecopymerge($image,$image2,0,0,0,0,the_width_of_image2,the_height_of_image2,50);

- in which that last 50 means 50% opacity. At 0, nothing happens; at 100 it acts as imagecopy( ).
KvakondAug 8, 2009 12:48 AM
Aug 8, 2009 2:45 AM

Offline
Aug 2008
2006
Thanks.... I just decided to do the angle because I was already using a foreground image.
Aug 8, 2009 3:32 AM

Offline
Jan 2009
1330
im not going to use v2 as i dont see much difference but id like to know how to get stroke and glow on the updates, it tells u how on some thread in the scripted signatures club but i dont know how to use it with the saka's minimal script replacement thread.
Needs more Drill Hair.
Aug 8, 2009 6:32 AM

Offline
Jul 2008
97
LaiLidE said:
im not going to use v2 as i dont see much difference but id like to know how to get stroke and glow on the updates, it tells u how on some thread in the scripted signatures club but i dont know how to use it with the saka's minimal script replacement thread.

Have you read this already? ^^
http://myanimelist.net/forum/?topicid=104246
Aug 8, 2009 9:18 PM

Offline
Jan 2009
1330
@_@ too hard to understand, so where do i put all those codes between my updates?
Needs more Drill Hair.
Aug 9, 2009 5:04 AM

Offline
Jul 2008
97
It is just an example code...

Give the code of yours where you put the text on your signature, I might be able to help you then
Aug 9, 2009 10:46 PM

Offline
Jan 2009
1330
From saka's minimal replacement script.

Needs more Drill Hair.
Aug 10, 2009 4:37 AM

Offline
Jul 2008
97
First of all we need to get all the new functions inside the script, to do this you put the following code just behind the <?php. And don't forget to upload the file ,imagettf.adv.php (found in the signature club), to the same directory as the script.

After this part of code the script can make use of the functions inside the other file
Since text must been put on top of the glow effect, we need to work before the part of the code:


Now we need some extra variables to set up, since your glow need a start and ending color.

Notice that I've used a color with alpha(0 is completly visible, 127 is completly invisible), this is because we want to have a fade away glow.
We have now set up two colors for the glow. The first is the start color wich is black, the end color is white wich is 100% transperant.

Now where we got the colors we can make use of the glow function, here we go:

First of all we now use the imagettfglow to make a glow.
The parameters 1-5,7,8 are the same as at your normal text, where as the $color, wich is the 6th parameter has now been canged to $glowStartColor.
The 9th is the size of the glow. You can scale it here pixel precisely wich means that if you say you want 5 pixels glow around the text, you'll get 5 pixels of glow. But don't be careless with this number you put inside here, since the glow is written in php it self, it isn't that fast. Bigger numbers here would have a longer calculation, where as smaller numbers make the calculation faster.
The last but not least paramater(the 10th) is the ending color you want to use. We already had defined $glowEndColor as our ending color so we put that in there.

The full code that is replacing the normal imagettftext's is this:

And just to mention it again, don't forget to import( require_once("imagettf.adv.php") ) the new file at the begin of the script.
Aug 14, 2009 9:07 AM

Offline
Aug 2008
2006
How do you have the anime title one color and the number of episodes watched a different color?
Aug 14, 2009 10:06 AM

Offline
Aug 2009
353
Can some help me here... I trying to create my first scripted sig but i know nothing about php so far I got this:

Where the hell is the text? Did mess up the script or something?

Here's the script though...
Aug 14, 2009 10:26 AM
Offline
Feb 2009
1637
FinestX, I can't see the sig with the spoiler tag on it .___. So, maybe if you remove it, then I can see.

As for the script, I don't think there's anything wrong with it. But, the script is a lot different from mines, so it's kinda hard to tell.
But just one thing, does the font title have that '[z]' in there?
Aug 14, 2009 8:36 PM

Offline
Aug 2009
353
CharisMagic said:
FinestX, I can't see the sig with the spoiler tag on it .___. So, maybe if you remove it, then I can see.

As for the script, I don't think there's anything wrong with it. But, the script is a lot different from mines, so it's kinda hard to tell.
But just one thing, does the font title have that '[z]' in there?

Weird...

Can you see it now?
And yeah the font file is called "[z] Arista light.ttf".

Also...
Does anybody know why my files redirect to error.000webhost.com? It's getting annoying... I tried making another account but I keep getting the same stupid error page?
Aug 14, 2009 8:48 PM

Offline
Jun 2007
1755
FinestX said:
CharisMagic said:
FinestX, I can't see the sig with the spoiler tag on it .___. So, maybe if you remove it, then I can see.

As for the script, I don't think there's anything wrong with it. But, the script is a lot different from mines, so it's kinda hard to tell.
But just one thing, does the font title have that '[z]' in there?

Weird...

Can you see it now?
And yeah the font file is called "[z] Arista light.ttf".

Also...
Does anybody know why my files redirect to error.000webhost.com? It's getting annoying... I tried making another account but I keep getting the same stupid error page?

Are you uploading in public_html? I don't think you're supposed to upload files in the same folder thing that contains the "DO NOT UPLOAD HERE" file. I had the same problem until I uploaded the files into public_html.

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 14, 2009 8:55 PM

Offline
Aug 2009
353
kyrori said:
FinestX said:
CharisMagic said:
FinestX, I can't see the sig with the spoiler tag on it .___. So, maybe if you remove it, then I can see.

As for the script, I don't think there's anything wrong with it. But, the script is a lot different from mines, so it's kinda hard to tell.
But just one thing, does the font title have that '[z]' in there?

Weird...

Can you see it now?
And yeah the font file is called "[z] Arista light.ttf".

Also...
Does anybody know why my files redirect to error.000webhost.com? It's getting annoying... I tried making another account but I keep getting the same stupid error page?

Are you uploading in public_html? I don't think you're supposed to upload files in the same folder thing that contains the "DO NOT UPLOAD HERE" file. I had the same problem until I uploaded the files into public_html.

No, I actually made another folder just for the sig and script.

Here's the link though: http://finestx.net16.net/V1/sig.php
Aug 14, 2009 8:58 PM

Offline
Jun 2007
1755
FinestX said:
kyrori said:
FinestX said:
CharisMagic said:
FinestX, I can't see the sig with the spoiler tag on it .___. So, maybe if you remove it, then I can see.

As for the script, I don't think there's anything wrong with it. But, the script is a lot different from mines, so it's kinda hard to tell.
But just one thing, does the font title have that '[z]' in there?

Weird...

Can you see it now?
And yeah the font file is called "[z] Arista light.ttf".

Also...
Does anybody know why my files redirect to error.000webhost.com? It's getting annoying... I tried making another account but I keep getting the same stupid error page?

Are you uploading in public_html? I don't think you're supposed to upload files in the same folder thing that contains the "DO NOT UPLOAD HERE" file. I had the same problem until I uploaded the files into public_html.

No, I actually made another folder just for the sig and script.

Here's the link though: [url=http://finestx.net16.net/V1/sig.php]http://finestx.net16.net/V1/sig.php

Is that folder in public_html? If not I think you should try making it in public_html.

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 14, 2009 9:00 PM

Offline
Aug 2009
353
kyrori said:
FinestX said:
kyrori said:
FinestX said:
CharisMagic said:
FinestX, I can't see the sig with the spoiler tag on it .___. So, maybe if you remove it, then I can see.

As for the script, I don't think there's anything wrong with it. But, the script is a lot different from mines, so it's kinda hard to tell.
But just one thing, does the font title have that '[z]' in there?

Weird...

Can you see it now?
And yeah the font file is called "[z] Arista light.ttf".

Also...
Does anybody know why my files redirect to error.000webhost.com? It's getting annoying... I tried making another account but I keep getting the same stupid error page?

Are you uploading in public_html? I don't think you're supposed to upload files in the same folder thing that contains the "DO NOT UPLOAD HERE" file. I had the same problem until I uploaded the files into public_html.

No, I actually made another folder just for the sig and script.

Here's the link though: [url=http://finestx.net16.net/V1/sig.php]http://finestx.net16.net/V1/sig.php

Is that folder in public_html? If not I think you should try making it in public_html.

Will do. I'll see if that works. Thanks.
Aug 14, 2009 9:01 PM

Offline
Jun 2007
1755
Yeah no problem. I remember how frustrated I felt when I was in the same position as you. Good luck.

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 14, 2009 9:05 PM

Offline
Aug 2009
353
kyrori said:
Yeah no problem. I remember how frustrated I felt when I was in the same position as you. Good luck.

It WORKED! Thank you so much, kyrori! your a life saver! XD
Aug 14, 2009 9:07 PM

Offline
Jun 2007
1755
FinestX said:
kyrori said:
Yeah no problem. I remember how frustrated I felt when I was in the same position as you. Good luck.

It WORKED! Thank you so much, kyrori! your a life saver! XD

Glad to see it worked for you. I can't wait to see your sig when it's done, I love your current one.

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 14, 2009 9:15 PM

Offline
Aug 2009
353
kyrori said:
FinestX said:
kyrori said:
Yeah no problem. I remember how frustrated I felt when I was in the same position as you. Good luck.

It WORKED! Thank you so much, kyrori! your a life saver! XD

Glad to see it worked for you. I can't wait to see your sig when it's done, I love your current one.

Thanks. ^__^
Aug 16, 2009 9:32 PM

Offline
Oct 2007
3811
There's something wrong with my coding. I want to have only the anime and manga titles, but the watching and reading chapters appear when I pick 0, 2, and 4 of the code. Is there something wrong?

Here's the code:

I wanted to have the titles of either the anime and/or manga titles, but the chapters appear.

For my anime titles, I want to have episodes appear too, but it's not there?
Aug 16, 2009 9:47 PM

Offline
Jun 2007
1755
Temptation said:
There's something wrong with my coding. I want to have only the anime and manga titles, but the watching and reading chapters appear when I pick 0, 2, and 4 of the code. Is there something wrong?

Here's the code:

I wanted to have the titles of either the anime and/or manga titles, but the chapters appear.

For my anime titles, I want to have episodes appear too, but it's not there?

How to make just the anime and manga titles appear was asked a page ago, delete this following from image_output.php (under the anime-text output section):
imagefttext($image,11,0,250,110,$colour,$font,$status[0][0]);
imagefttext($image,14,0,222,72,$colour,$font,$dates[0][0]);

And this from the manga-text output section
imagefttext($image,12,0,290,90,$colour,$font,$status[1][0]);
imagefttext($image,14,0,222,72,$colour,$font,$dates[1][0]);

I'm not sure if I understood your question correctly...

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 17, 2009 2:24 PM

Offline
Oct 2007
3811
I'd like to have updates made behind the character for future sigs. What coding should I use?
Aug 17, 2009 2:31 PM
Offline
Feb 2009
1637
Temptation said:
I'd like to have updates made behind the character for future sigs. What coding should I use?


I think you're talking about using a foreground image, which was also asked in the previous page

Here's what you do:

Kvakond said:
Add this to image_output. php before the line imagepng ($image);

$image2 = ImageCreateFromPng("name_of_file_in_the_same_folder.png");
imagealphablending ($image2,true);
imagesavealpha($image2,true);

imagecopy ($image,$image2,0,0,0,0,the_width_of_image2,the_height_of_image2);


Fill in the name and the width and height of the foreground image. The image file must be in the same folder as image_output.php
Aug 17, 2009 4:21 PM

Offline
Oct 2007
3811
Sorry about that. I didn't know foreground would be the answer. Ok, thanks again.
Aug 18, 2009 4:12 AM

Offline
Jun 2007
1755
How do I make the font of my updates all lowercase?

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 18, 2009 4:16 AM

Offline
Jul 2008
97
kyrori said:
How do I make the font of my updates all lowercase?

http://us2.php.net/manual/en/function.strtolower.php
Aug 18, 2009 4:54 AM

Offline
Jun 2007
1755
Niroko said:
kyrori said:
How do I make the font of my updates all lowercase?

http://us2.php.net/manual/en/function.strtolower.php

Thanks, where does this go exactly though? image_out.php somewhere?

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 18, 2009 5:22 AM

Offline
Jul 2008
97
kyrori said:
Niroko said:
kyrori said:
How do I make the font of my updates all lowercase?

http://us2.php.net/manual/en/function.strtolower.php

Thanks, where does this go exactly though? image_out.php somewhere?


normaly your code should similar like this:
imagefttext($image,12,0,290,90,$colour,$font,$status[1][0]);

since $status[1][0] contains the text you need to change that to strtolower($status[1][0]) so it would look like this:
imagefttext($image,12,0,290,90,$colour,$font,strtolower($status[1][0]));
Aug 18, 2009 9:42 AM

Offline
Jun 2007
1755
Niroko said:
kyrori said:
Niroko said:
kyrori said:
How do I make the font of my updates all lowercase?

http://us2.php.net/manual/en/function.strtolower.php

Thanks, where does this go exactly though? image_out.php somewhere?


normaly your code should similar like this:
imagefttext($image,12,0,290,90,$colour,$font,$status[1][0]);

since $status[1][0] contains the text you need to change that to strtolower($status[1][0]) so it would look like this:
imagefttext($image,12,0,290,90,$colour,$font,strtolower($status[1][0]));

Got it, thanks so much~ :)

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 21, 2009 1:10 AM

Offline
Jun 2007
1755
spineslayer said:
How do you have the anime title one color and the number of episodes watched a different color?

Don't know if this is the "proper" way to do it, but it works for me. tbh, I'm surprised that it worked when I tried it. xD

Go to image_output.php and find this section:
$colour = imagecolorexact($image,60,71,217);
replace it with
$colour1 = imagecolorexact($image,246,149,29);
$colour2 = imagecolorexact($image,198,62,74);


Then find this section:
imagefttext($image,8,0,6,93,$colour,$font,$titles[0][0]);
imagefttext($image,8,0,0,104,$colour,$font,$status[0][0]);

and replace it with
imagefttext($image,6,0,4,10,$colour1,$font,$titles[0][0]);
imagefttext($image,6,0,345,106,$colour2,$font,$status[0][0]);


Sorry for the double post, by the way. I figured someone else might want to know this too.

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 21, 2009 9:01 AM

Offline
May 2008
4052
That way works well, but I recommend using imagecolorallocate(...) instead of imagecolorexact(...) since the latter will fail when the specific color doesn't already exist in the image (for example if it's an 8-bit PNG, which has a small color palette). It works identically, so you can leave all the parameters the same.

I am a banana.
Aug 21, 2009 10:56 AM

Offline
Jun 2007
1755
Cool, didn't know that, thanks. As you can probably guess I was randomly putting stuff in... xD

?_? || Mo <3: squrrriles kidnapped her let's eat theree nuts || ♪♫♪
Aug 21, 2009 12:30 PM

Offline
Aug 2009
403
I followed the steps exactly to the Open a browser of your choice and open the url: 'yoursite.com/signature/sig_creator.php'
I know it meant sig.php but I get an error
The image “http://mushwars.net/mushwars/sig.php&rdquo; cannot be displayed, because it contains errors.

[url=http://mushwars.net/mushwars/sig.php]http://mushwars.net/mushwars/sig.php

What does this mean? I am not stupid with website stuff I own servers and run many php scripts. All I had to do so far was the chmod thing and paste the files in my htdocs directory. I am sure I did nothing wrong. Why wont it work. Please help

[edit] I know my server is able to run everything http://mushwars.net/info.php [/edit]
Caprica6Aug 21, 2009 12:44 PM
Aug 21, 2009 2:04 PM

Offline
Aug 2009
403
mushwars said:
[edit] I know my server is able to run everything http://mushwars.net/info.php [/edit]


I guess that turned out not to be true. I was able to use a different server to upload my signature to and it works. http://signature.mushwars.net/sig.php

The only problem is when I try to set that as my signature here on this forum, it doesn't show up. So I switched the mode to sig.png but that didnt work. Why cant I set my signature to sig.php?

[edit] The problem was I was using a subdomain to forward traffic to the host. I was embarrassed to use anything other than my own website to host somthing so I was trying to hide it. It turns out you cannot do this signaure php on a froum through a redirect subdomain. [/edit]

[edit]It turns out now that it wasnt the using of a subdomain. It was the fact that I was using masking so if I type http://signature.mushwars.net/sig.php it would interprate it as signature.mushwars.net which doesnt display the signature. I turned off masking, it should work now[/edit]

[edit]It turns out there was nothing wrong with my server in the first place. I made a typo in the image_output.php file. Sorry for all the posts. But this can be here to help people. Do not mask your subdomain or it wont work. And apache by default will work with this signature.[/edit]

THANKS AGAIN!
Caprica6Aug 21, 2009 3:48 PM
Aug 21, 2009 10:10 PM

Offline
May 2008
4052
You already figured out the problem, but I thought I'd kinda piece this together and comment anyway....

Just for the record, there's no problem using redirection methods (301/302 redirects like the kind you get from tinyurl or similar services) and redirecting via subdomain is no problem either since that's just direct DNS. You can also use mod_rewrite in a .htaccess file to manipulate the stuff after domain name too... no problem. You could basically make the url look like anything you want (within reason).

Any time firefox (or any mozilla-based browser) spits back this message:
The image “http://mushwars.net/mushwars/sig.php&rdquo; cannot be displayed, because it contains errors.
it usually means that PHP encountered some errors (maybe even insignificant ones generated by your host) and stuck some text in at the top. Firefox received a file header from your script telling it something of type "image/png" was coming, so it wants to display an image.... but those text errors at the top mess up the image data.

Ironically using Internet Explorer is a good way to troubleshoot this since IE will notice the text and ignore the image header completely, displaying the whole thing as text. Then you can read the error/warning messages (followed by a bunch of jibberish since any image data gets interpreted as text also).

I am a banana.
Aug 21, 2009 11:26 PM
Offline
Feb 2009
1637
Hi dur. Need some help xD
When ever I make a PHP sig, the manga updates with the chapter always have that "chapters" that appear at the end.
Like: "Reading @ 10/25 chapters". Does anybody know how I can get rid of the "chapters" at the end?
Pages (9) « First ... « 4 5 [6] 7 8 » ... Last »

More topics from this board

» 【 ART THREAD 】Let's share our art! ‪‪❤︎‬ ( 1 2 3 4 5 )

mewmewforever - Aug 30, 2024

215 by RetroCagliostro »»
8 hours ago

» Four Ages! ( 1 2 )

Robert_SS_Gordon - Feb 21

51 by Robert_SS_Gordon »»
Yesterday, 8:03 AM

» Share Your YouTube Channel/Videos! ( 1 2 3 4 5 ... Last Page )

nin-tendo - Dec 16, 2022

595 by Retro8bit »»
Oct 9, 3:17 PM

» MY ANIMATED SHORT FILM

DiscloSalilokui - Oct 9

1 by Retro8bit »»
Oct 9, 3:03 PM

» Made a wordless comic

nanisukoshi - Oct 6

6 by nanisukoshi »»
Oct 9, 10:13 AM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login