Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Mysidia Adoptables > Addons and Modifications > Mys v1.3.x Mods

Notices

Reply
 
Thread Tools Display Modes
  #11  
Old 11-06-2017, 12:39 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,627
Dinocanid is on a distinguished road
Default

You're right on both! You need to set the iterator index on whatever layer you want to use commands/filters on. For example, you set the index to 1 and apply stuff to that, then you would set the index to 2...etc.
Wolves is the same as owned_adoptables too, I just made a custom table since I use a custom class and stuff.

If it's still showing a blank image, do your image names have spaces in them? It's weird, but on some hosts they can't have any spaces (that's what I just found out about mysidiahost). Some hosts do, while others don't, so it's something to try.
__________________

Last edited by Dinocanid; 11-06-2017 at 01:03 PM.
Reply With Quote
  #12  
Old 11-06-2017, 01:44 PM
gwynmil's Avatar
gwynmil gwynmil is offline
Member
 
Join Date: Sep 2017
Location: UK
Posts: 25
Gender: Female
Credits: 3,499
gwynmil is on a distinguished road
Default

Awesome, thanks!

Every folder and image name is a single word (black, white, tan, blue, inner1 etc). The body part names match the DB columns exactly. Imagick is enabled. I'm lost. ^^'

Earlier I naively thought you'd need access to the x10hosting cpanel to do anything for us, but just realised FTP could be used to poke around, to an extent. If it would help here, I can send you details for that?

(and if you feel like it, maybe do the other mods while you're in there... my paypal is ready lol. I'm just not sure which tasks will require DB access. Guess I'll send you a PM in a few minutes and you can decide.)

edit: oh, another thing that must be asked. How does this script work on pages with multiple creatures? Like the main myadopts page, breeding, user profiles. I'm guessing it doesn't. So we would need to save each griffin's image (or at least a thumbnail-sized version) into a folder somehow, to fetch from... or is there another way?

Last edited by gwynmil; 11-06-2017 at 01:55 PM.
Reply With Quote
  #13  
Old 11-06-2017, 02:30 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,627
Dinocanid is on a distinguished road
Default

You can send me FTP details and I can see what I can do ^^ (It's also waaay more secure, some people just send their login details)
You're right about it not working on pages that show multiple creatures at once, but you could save each generated image; the only thing is that I can see that taking up a whole lot of disk space in the long run. I haven't looked into saving the images with imagick specifically, but I'm sure it can be done if you're willing to go that route.
__________________
Reply With Quote
  #14  
Old 11-07-2017, 02:32 PM
gwynmil's Avatar
gwynmil gwynmil is offline
Member
 
Join Date: Sep 2017
Location: UK
Posts: 25
Gender: Female
Credits: 3,499
gwynmil is on a distinguished road
Default

... OK, I kept trying to send the message last night and now tonight, but it gives an error. Not the first time Mysidia forum has done this.
So the list is posted for you here, and I'm not sure how to securely send the FTP info. Sorry about this. ^^'
Reply With Quote
  #15  
Old 11-07-2017, 07:13 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,627
Dinocanid is on a distinguished road
Default

It's fine! I just sent you an email.
__________________
Reply With Quote
  #16  
Old 12-17-2017, 04:07 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,627
Dinocanid is on a distinguished road
Default

I updated the code. Now it should work fine as an image by using:
HTML Code:
<img src='/yourfilename/{$adoptIDevariable}'>
So for example, I can now use it like this:
HTML Code:
<img src ='/wolfimage/{$wid}' height='auto' width='75%'>
This also resolves scaling issues, so no more ugly scroll bars on your images, and it allows you to display more than one generated image (like on the myadopts index). The only thing is that half of the images most likely fail to load if many are shown on one page.
__________________
Reply With Quote
  #17  
Old 12-25-2017, 10:16 AM
Abronsyth's Avatar
Abronsyth Abronsyth is offline
A Headache Embodied
 
Join Date: Aug 2011
Location: NY
Posts: 1,011
Gender: Male
Credits: 111,671
Abronsyth is on a distinguished road
Default

!! Excite !!

Okay so I am just hoping you could help me understand this;
Code:
$composed_image->setIteratorIndex(2);
$composed_image->compositeImage( new \Imagick($images[1]), \Imagick::COMPOSITE_DSTIN, 0, 0 );
So here, this is a section that constrains the layer "2" to be only visible within layer "1," right?

Then for the layer labels, is it descending from top-down? So for you example is this layer "2"?
Code:
'http://wild-souls.mysidiahost.com/picuploads/wolf_images/adult/shade.png'
With this being layer "1"?
Code:
'http://wild-souls.mysidiahost.com/picuploads/wolf_images/adult/lineart.png'
I have multiple linearts I'll be using for each level, so I want to make it easier on myself by just having the base/marking layers big enough to cover all linearts, but then of course not have them go outside of the lineart.

Thank you, and happy holidays!
__________________
My Mods Site (1.3.4, 2020 Mods)
Reply With Quote
  #18  
Old 12-25-2017, 02:11 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,627
Dinocanid is on a distinguished road
Default

1. Yep! So layer 2 would appear within layer 1
2. It ascends from top to down. So the first in the array is 0, the second would be layer 1, etc. In short, the items in the bottom of the array appear on top of the items in the top of the array, if that makes sense.
__________________
Reply With Quote
  #19  
Old 12-27-2017, 10:15 PM
Abronsyth's Avatar
Abronsyth Abronsyth is offline
A Headache Embodied
 
Join Date: Aug 2011
Location: NY
Posts: 1,011
Gender: Male
Credits: 111,671
Abronsyth is on a distinguished road
Default

Alright, that absolutely answers my questions! Thanks!

(Trying to use this to create a geno/pheno system...it's...tedious lol)
__________________
My Mods Site (1.3.4, 2020 Mods)
Reply With Quote
  #20  
Old 03-11-2018, 09:57 PM
SyntaxError73's Avatar
SyntaxError73 SyntaxError73 is offline
Member
 
Join Date: Jun 2016
Posts: 8
Gender: Female
Credits: 2,175
SyntaxError73 is on a distinguished road
Default

How would I tailor the script to allow multiple different species of breedable animals?


Let's say I wanted to make a site where the user could breed snakes and lizards.. and I wanted to use the random image generator. If a user bred two snakes together, how would the script know not to put a lizard marking on the new baby snake, and only use snake images?

I really love this idea, I sometimes think too hard about the logic though...
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


All times are GMT -5. The time now is 10:04 AM.

Currently Active Users: 315 (0 members and 315 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