Mysidia Adoptables Support Forum

Mysidia Adoptables Support Forum (http://www.mysidiaadoptables.com/forum/index.php)
-   Suggestions and Feature Requests (http://www.mysidiaadoptables.com/forum/forumdisplay.php?f=21)
-   -   Official Mys v1.4.0 Ideas & Suggestions Thread (http://www.mysidiaadoptables.com/forum/showthread.php?t=4075)

Hwona 09-14-2013 06:29 PM

Ooooh! Will the stats be usable? Like in competitions?

Tequila 09-14-2013 07:50 PM

Quote:

Originally Posted by Wallie987 (Post 28016)
Ooooh! Will the stats be usable? Like in competitions?

That's what I'm hoping for, but it may be more difficult to code. Hoffie?

Hall of Famer 09-14-2013 08:38 PM

@Tequila
I like the idea of Limited Adoptable Space, it will be implemented in Mys v1.4.0 guaranteed. I am not sure a team limit is necessary for version 1.4.0, it will come in handy for Mys v1.5.0's battle system though as you cannot use all your adoptables in battles. The adopt-box idea is quite tied to limited adoptables space, I will consider it for sure, or maybe apply to items/inventory too.

For The Nests/Litters feature, is it just like a background for adoptables? I am sorry I dont quite get it, sounds interesting though. For the Ad system I will need a better description too, maybe a picture/drawing of how you want the ads to be displayed on the site's layout/screen?

Stats is a big topic, it is planned as main new feature for Mys v1.4.0 and I want it to be as flexible as possible. Maybe I will define some basic stats like HP, MP, Strength, Vitality, Intelligence, Spirit, Dexterity, but users can give them special alias(such as SP is to MP, Magic is to Intelligence and so on) which will actually be used as displayed name/attribute for adoptables when you view their stats. Admins will have full control of how they want the stats system to be, each stats can have its own formula of growth based on adopts species, level and some random numbers. You can specify a base stats for different specifies, which will be useful to diversify the stats among each adoptable species.


@Wallie987:
Yeah the stats will be quite useful and you can integrate it into other features of Mysidia Adoptables. I will provide a way for users to use items to increase/decrease their adoptables stats, but at this stage the stats do not serve much purpose beyond its appearances. Stats is a pre-requisite for battle system planned for Mys v1.5.0, thats likely where you will find their true usefulness. You can make a pokemon-like competition script yourself though, its unlikely to be included in the base script.

Hwona 09-15-2013 12:23 PM

Ah, ok! :D

Tequila 09-16-2013 07:08 AM

Quote:

Originally Posted by Hall of Famer (Post 28018)
@Tequila
I like the idea of Limited Adoptable Space, it will be implemented in Mys v1.4.0 guaranteed. I am not sure a team limit is necessary for version 1.4.0, it will come in handy for Mys v1.5.0's battle system though as you cannot use all your adoptables in battles. The adopt-box idea is quite tied to limited adoptables space, I will consider it for sure, or maybe apply to items/inventory too.

For The Nests/Litters feature, is it just like a background for adoptables? I am sorry I dont quite get it, sounds interesting though. For the Ad system I will need a better description too, maybe a picture/drawing of how you want the ads to be displayed on the site's layout/screen?

Stats is a big topic, it is planned as main new feature for Mys v1.4.0 and I want it to be as flexible as possible. Maybe I will define some basic stats like HP, MP, Strength, Vitality, Intelligence, Spirit, Dexterity, but users can give them special alias(such as SP is to MP, Magic is to Intelligence and so on) which will actually be used as displayed name/attribute for adoptables when you view their stats. Admins will have full control of how they want the stats system to be, each stats can have its own formula of growth based on adopts species, level and some random numbers. You can specify a base stats for different specifies, which will be useful to diversify the stats among each adoptable species.

The nests/litters would be a background image with the eggs visible inside... I can show you an example from Flight Rising if you like. ;3 I'll do some generic mockups of the nests/litters and ad revamp once I finish waking up (only been up since 0630 EDST).

Awesome about the stats, possibly fix it so we can add more/subtract what isn't needed? And yes, limited space is awesome, makes users think twice before overadopting what is available.

Edit here's a link to my nest on Flight Rising... http://flightrising.com/main.php?p=l...8&tab=hatchery

Edit 17/09 here's an example of how I'd like to see ads displayed -> http://mysdevtech.tumblr.com/image/61511777746
do you want backend ideas as well?

Tequila 11-05-2013 08:56 AM

Again I'm going to bring up this Spam Blocker idea for the script...
Quote:

I was looking at another script (that I am trying to merge) and saw this:

PHP Code:

if (isset($_POST['submit']) && $_SERVER['REQUEST_METHOD'] == "POST") {
    
$exploits "/(content-type|bcc:|cc:|document.cookie|onclick|onload|javascript|alert)/i";
    
$profanity "/(beastial|bestial|blowjob|clit|cock|cum|cunilingus|cunillingus|cunnilingus|****|ejaculate|fag|felatio|fellatio|****|fuk|fuks|gangbang|gangbanged|gangbangs|hotsex|jism|jiz|kock|kondum|kum|kunilingus|orgasim|orgasims|orgasm|orgasms|phonesex|phuk|phuq|porn|pussies|*****|spunk|xxx)/i";
    
$spamwords "/(viagra|phentermine|tramadol|adipex|advai|alprazolam|ambien|ambian|amoxicillin|antivert|blackjack|backgammon|holdem|poker|carisoprodol|ciara|ciprofloxacin|debt|dating|porn)/i";
    
$bots "/(Indy|Blaiz|Java|libwww-perl|Python|OutfoxBot|User-Agent|PycURL|AlphaServer)/i";

    if (
preg_match($bots$_SERVER['HTTP_USER_AGENT'])) {
        exit(
"<p>Known spam bots are not allowed.</p>");
    }
    foreach (
$_POST as $key => $value) {
        
$value CleanUp($value);

        if (empty(
$_POST['name']) || empty($_POST['email']) || empty($_POST['url']) || empty($_POST['collecting']) ) {
            exit(
"<p>Name, e-mail, URL and collecting are required fields. Please go back and fill in the form properly.</p>");
        } elseif (
preg_match($exploits$value)) {
            exit(
"<p>Exploits/malicious scripting attributes aren't allowed.</p>");
        } elseif (
preg_match($profanity$value) || preg_match($spamwords$value)) {
            exit(
"<p>That kind of language is not allowed through our form.</p>");
        }

    } 

It's part of the register file on two scripts I'm looking at actually, and may be a good idea to add into our script for more security and to make it safer for younger users.

What do you think? Something to add in if we can figure it out?

Hall of Famer 11-05-2013 09:18 AM

Thanks for bringing it up. I will definitely try to set up a much more advanced and customizable registration system for Mys v1.4.0. The sample script you posted will need some modification to work with Mys v1.4.0, but should be easy.

Abronsyth 11-08-2013 03:01 PM

Random idea I've had the past few days for the Stats feature!

Stats based on the gender ("m" or "f") of the pets would be wonderful! As well as Class-Stats, as in stats that apply to all adopts under a specific class. For the gender-defined stats a big one is weight, different sexes within animals almost always differ in size in a noticeable manner, and it would add a more realistic element to sites that would like such a thing :) ((Yes I know there is little realism in virtual pets that grow through clicks, but I am a scientist at hear!))

IntoRain 11-08-2013 05:43 PM

Quote:

Originally Posted by Abronsyth (Post 28298)
Random idea I've had the past few days for the Stats feature!

Stats based on the gender ("m" or "f") of the pets would be wonderful! As well as Class-Stats, as in stats that apply to all adopts under a specific class. For the gender-defined stats a big one is weight, different sexes within animals almost always differ in size in a noticeable manner, and it would add a more realistic element to sites that would like such a thing :) ((Yes I know there is little realism in virtual pets that grow through clicks, but I am a scientist at hear!))

I think it's easy to add, just adding attributes to the table basically (plus their respective methods in the respective classes), like weightFemale and weightMale, minStat, maxStat for each species?

Tequila 11-17-2013 11:06 AM

Another idea, instead of letting users upload an avatar, use Gravatar to pull a PG and lower rated avatar from their Gravatar account.

Some information here: http://css-tricks.com/snippets/php/d...email-address/ and I'm sure we can tweak it to work with Mys.


All times are GMT -5. The time now is 08:36 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.