Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Creative Discussion > Art Gallery

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 02-20-2014, 11:17 AM
Vaporman87 Vaporman87 is offline
Member
 
Join Date: Feb 2014
Posts: 32
Gender: Male
Credits: 4,883
Vaporman87 is on a distinguished road
Default The Art of DigiChars

I thought I might post some of the images that I'll be using to decorate the site, and to help get visitors to it familiar with the world/"pets". Here is a simple battle image for the "Main" page.

Reply With Quote
  #2  
Old 02-20-2014, 11:34 AM
squiggler's Avatar
squiggler squiggler is offline
Squiggling since 1995
 
Join Date: Jul 2013
Posts: 185
Gender: Unknown/Other
Credits: 8,107
squiggler is on a distinguished road
Default

This is interesting, definitely! I like it. Do you want crit?
__________________
Avatar courtesy of Doll Divine.
Reply With Quote
  #3  
Old 02-21-2014, 03:50 PM
Vaporman87 Vaporman87 is offline
Member
 
Join Date: Feb 2014
Posts: 32
Gender: Male
Credits: 4,883
Vaporman87 is on a distinguished road
Default

I welcome criticism, yes. :)
Reply With Quote
  #4  
Old 02-21-2014, 06:33 PM
squiggler's Avatar
squiggler squiggler is offline
Squiggling since 1995
 
Join Date: Jul 2013
Posts: 185
Gender: Unknown/Other
Credits: 8,107
squiggler is on a distinguished road
Default

Well, having been to your site, the images are a bit big for signatures. I like the clear and bold lines; that might make them easier to shrink if you want.
The mask vs. bare face is a bit jarring, but as long as there are multiple varieties, it should be fine. I definitely like the color choices!
The action poses are pretty dynamic, though Mask seems off balance. It's really hard to dodge backwards and punch forwards at the same time. Dodging and then punching would work, but take extra time. Punching with the back hand while twisting to the right (forward) wouldn't, so raising the left hand might work.
For Bareface, having the back arm out straight puts them off balance. Bending it even slightly would help. Limbs are rarely straight when fighting because it makes you rigid and it's easier for your opponent to break them.
When creating further action poses, it helps to play out the poses yourself, or watch fighting competitions and even exercise videos- yoga for example.
__________________
Avatar courtesy of Doll Divine.
Reply With Quote
  #5  
Old 02-21-2014, 07:10 PM
Vaporman87 Vaporman87 is offline
Member
 
Join Date: Feb 2014
Posts: 32
Gender: Male
Credits: 4,883
Vaporman87 is on a distinguished road
Default

I see what you mean regarding the image sizes for signature images. That's something I'm going to have to work out.

Is it possible to code some way for all signature images to appear smaller than the images displayed throughout the site? That would be ideal!

Also, thank you for the other advice. I'm am not used to working with this type of image. If you see here, my work generally is "more free flowing" and less restrictive than the cartoonish forms I've chosen here. I started with a sketch, scanned it in, then laid down each line, one at a time, using only the elipse creator and line creator tools in Paint.NET. No freehanding of lines was done. It's hard to adjust to, but I'm getting there. :)
Reply With Quote
  #6  
Old 02-22-2014, 03:28 AM
squiggler's Avatar
squiggler squiggler is offline
Squiggling since 1995
 
Join Date: Jul 2013
Posts: 185
Gender: Unknown/Other
Credits: 8,107
squiggler is on a distinguished road
Default

Again, just a workaround, but you can post a link to bbcode for mini images. This thread is an example where a user did it.
I also know that freeforums.org has an add-on called the image resizer. It only resizes images on their forum, though.
__________________
Avatar courtesy of Doll Divine.
Reply With Quote
  #7  
Old 02-22-2014, 12:54 PM
Vaporman87 Vaporman87 is offline
Member
 
Join Date: Feb 2014
Posts: 32
Gender: Male
Credits: 4,883
Vaporman87 is on a distinguished road
Default

I just inserted some image size info into the existing bb/html codes to shrink 'em down. Now they display at half the size in forums. Cool.
Reply With Quote
  #8  
Old 02-22-2014, 06:52 PM
squiggler's Avatar
squiggler squiggler is offline
Squiggling since 1995
 
Join Date: Jul 2013
Posts: 185
Gender: Unknown/Other
Credits: 8,107
squiggler is on a distinguished road
Default

Cool! If you want to share it, I'm sure many would appreciate it.
__________________
Avatar courtesy of Doll Divine.
Reply With Quote
  #9  
Old 02-24-2014, 12:09 AM
Vaporman87 Vaporman87 is offline
Member
 
Join Date: Feb 2014
Posts: 32
Gender: Male
Credits: 4,883
Vaporman87 is on a distinguished road
Default

Oh yeah! Sure thing.

Simply open the myadoptsview.php file in the /view folder, and find the following piece of code:

Code:
$forumComment = new Comment("Forum BBCode: ");		
		$forumComment->setUnderlined();
        $forumcode = "[img]{$mysidia->path->getAbsolute()}levelup/siggy/{$adopt->getAdoptID()}[/img]";		
	    $forumArea = new TextArea("forumcode", $forumcode, 4, 50);
		$forumArea->setReadOnly(TRUE);
		
		$altComment = new Comment("Alternative BBCode: ");		
		$altComment->setUnderlined();
        $altcode = "[img]{$mysidia->path->getAbsolute()}get/{$adopt->getAdoptID()}.gif\"[/img]";
	    $altArea = new TextArea("altcode", $altcode, 4, 50);
		$altArea->setReadOnly(TRUE);
		
		$htmlComment = new Comment("HTML BBCode: ");		
		$htmlComment->setUnderlined();
        $htmlcode = "<a href='{$mysidia->path->getAbsolute()}levelup/click/{$adopt->getAdoptID()}' target='_blank'>
	                 <img src='{$mysidia->path->getAbsolute()}levelup/siggy/{$adopt->getAdoptID()}' border=0></a>";
	    $htmlArea = new TextArea("htmlcode", $htmlcode, 4, 50);
		$htmlArea->setReadOnly(TRUE);
Now add your size preferences to each of these three forum code choices. (Keep in mind that forums using BBCode instead of HTML will sometimes have their settings for using resizing turned off, or they may use a different set of resizing code)

Here I added my resizing preference to the first BBCode option:

Code:
$forumComment = new Comment("Forum BBCode: ");		
		$forumComment->setUnderlined();
        $forumcode = "[img height=126 width=145]{$mysidia->path->getAbsolute()}levelup/siggy/{$adopt->getAdoptID()}[/img]";		
	    $forumArea = new TextArea("forumcode", $forumcode, 4, 50);
		$forumArea->setReadOnly(TRUE);
Above, I changed the [img] to [img height=126 width=145]. If this doesn't work in a specific forum, you can also try [img 126x145]. Next, do the same for the "Alternative BBCode":

Code:
$altComment = new Comment("Alternative BBCode: ");		
		$altComment->setUnderlined();
        $altcode = "[img height=126 width=145]{$mysidia->path->getAbsolute()}get/{$adopt->getAdoptID()}.gif\"[/img]";
	    $altArea = new TextArea("altcode", $altcode, 4, 50);
		$altArea->setReadOnly(TRUE);
And then, the one that works most reliably, the HTML code:

Code:
$htmlComment = new Comment("HTML BBCode: ");		
		$htmlComment->setUnderlined();
        $htmlcode = "<a href='{$mysidia->path->getAbsolute()}levelup/click/{$adopt->getAdoptID()}' target='_blank'>
	                 <img src='{$mysidia->path->getAbsolute()}levelup/siggy/{$adopt->getAdoptID()}' width='145' height='126' border=0></a>";
	    $htmlArea = new TextArea("htmlcode", $htmlcode, 4, 50);
		$htmlArea->setReadOnly(TRUE);
Above, I have just added the " width='145' height='126' " in between the " getAdoptID()}' " and " border=0> " text.

Hope this helps somebody. :)
Reply With Quote
  #10  
Old 03-02-2014, 05:20 PM
Vaporman87 Vaporman87 is offline
Member
 
Join Date: Feb 2014
Posts: 32
Gender: Male
Credits: 4,883
Vaporman87 is on a distinguished road
Default

Some more site images:



Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
DigiChars Vaporman87 Adoptables Sites Showcase 1 04-07-2014 12:57 PM


All times are GMT -5. The time now is 05:35 AM.

Currently Active Users: 685 (0 members and 685 guests)
Threads: 4,080, Posts: 32,024, Members: 2,016
Welcome to our newest members, jolob.
BETA





What's New?

What's Hot?

What's Popular?


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636