Jump to content

Silverwulfess

Game Owner
  • Posts

    36
  • Joined

  • Last visited

Posts posted by Silverwulfess

  1. I have given up on my main game for now, but I just have a small job (I think) if someone would like to assist.

    Please let me know pricing. I am reachable on Discord at Silverwulfess#7621.

    I currently have a database set up for a pet registry, generated via PHPMaker 2021.

    I need the view animal pages edited to include progeny and a pedigree.

    Each record has a sire and dam field.

    Basically I am looking for, with progeny, when you view a pet, it searches the database for where that pet's registry ID exists in sire or dam, and it lists the names and colours of all progeny for that animal.

    For pedigree, it is as it sounds. I would like a five generation pedigree which lists names and colours of all ancestors.

    Please message me with pricing for this. Thank you!

  2. Hi guys!

    I'm looking to hire a secondary programmer to work alongside my current programmer on different features. The game is a realistically based dog and horse simulation game with genetics, breeding, showing and the rest. Will be paid but would really prefer someone reasonably priced as it is coming out of my own pocket at this stage. As my time zone is different to most, must be happy to chat over some sort of IM and paid by Paypal. Prefer to pay by unit than an hourly rate if possible!

    The game is based on the Pet Game Framework, so best for someone with some experience in working with frameworks.

    Please email me on [email protected] with your experience/sites you've worked on, availability, pricing schedule.

  3. Hi guys,

    We are experiencing some errors in trying to get images to work via PGF. I have emailed the creator but unsure if would be within scope of support since we are modifying the script somewhat (and since the script isn't complete either).

    We are trying to get the dynamic images working. We are not going into the extent of having seperate layers for line art, shading etc. We just doing a base colour which have all the shading/lineart etc already in it (so have multiple different base colours), then modifying markings will be a layer on top of that. 

    Here is a snippet of the script my programmer believes is causing the issue but if need any further please let me know! Any help would be HUGELY appreciated!

     

     

    public function loadPetLayers()
        {
            $layers = [];

            if (empty($this->instance)) {
                $this->instance = new CustomPet($id);
            }

            $petInfo = $this->standardizePetInfo($this->instance);
            $this->genes = [];

            //load all the pet's image layers
            $loop = $this->DB->query(
                "SELECT
                   `layers`.`species_id`,
                   `layers`.`name`,
                   `layers`.`sort_order`,
                   `breed_layers`.`layer_id`,
                   IF(
                       `genetic_phenotypes`.`image` != '',
                       `genetic_phenotypes`.`image`,
                       `breed_layers`.`url`
                   ) AS `url`,
                   `breed_layers`.`url` AS `layer_default_url`,
                   `genetic_phenotypes`.`image` AS `genetics_override_url`,
                   `pet_genetics`.`gene`,
                   `genetic_phenotypes`.`description`,
                   `genetic_phenotypes`.`hexcode`
                FROM
                    `layers`
                INNER JOIN `breed_layers` ON `breed_layers`.`layer_id` = `layers`.`id`
                    AND `breed_layers`.`breed_id` = '" . $this->instance->breed()->id() . "'
                INNER JOIN `breeds` ON `breeds`.`id` = `breed_layers`.`breed_id`
                LEFT JOIN `pet_genetics` ON `pet_genetics`.`pet_id` = '" . $this->instance->id() . "'
                    AND `pet_genetics`.`type_id` = `breed_layers`.`layer_id`
                LEFT JOIN `genetic_phenotypes` ON `genetic_phenotypes`.`type_id` = `pet_genetics`.`type_id`
                    AND `genetic_phenotypes`.`gene` = `pet_genetics`.`gene`
                WHERE
                    `layers`.`species_id` = '" . $this->instance->breed()->speciesID() . "'
                    AND `layers`.`id` > 0
                ORDER BY
                    `layers`.`sort_order` ASC"
            );

            //put all the layers into a layers array
            while ($layer = $this->DB->fetch($loop)) {
                //add this gene to an array used to make the file name we save this image to
                if ($layer['gene']) {
                    $this->genes[$layer['name']] = $layer['gene'];
                }

                //go back a directory if they're in the admin panel
                $layer['url'] = $this->adminPath . $layer['url'];

                //replace image url keywords with actual values
                $layer['url'] = str_replace('{species}', $petInfo['species'], $layer['url']);
                $layer['url'] = str_replace('{breed}', $petInfo['breed'], $layer['url']);
                $layer['url'] = str_replace('{gender}', $petInfo['gender'], $layer['url']);
                $layer['url'] = str_replace('{lifestage}', $petInfo['lifestage'], $layer['url']);

                //use the colors table if genetics are disabled
                if (empty($this->GENETICS)) {
                    $layer['url'] = str_replace('{color}', $petInfo['color'], $layer['url']);
                } else {
                    //remove the color keyword, it's not supported when genetics are enabled
                    $layer['url'] = str_replace('{color}', '', $layer['url']);
                }

                //replace any double backslashes in the url path (especially if we removed color)
                $layer['url'] = str_replace('//', '/', $layer['url']);

                array_push($layers, $layer);
            }

            return $layers;
        }

  4. Hey guys,

    Third time lucky! I need someone who is committed to a LONG TERM project.

    I'm looking for a PHP developer for an animal breeding and showing game. I have a game which has been partially done, but still in early development, which needs other features added and finishing. It is being done on the Pet Game Framework. And obviously needs to be happy to work in with existing code. I have no great rush, so would suit someone who is just looking for some work on the side (obviously don't want to be waiting months but I'm reasonable). If you have an understanding of genetics, that would be beneficial but not required.

    Reasonably priced please, I'm paying for this out of my own pocket. Alternatively if you'd like to do the work for in game perks I would be very open to that possibly as would make it a lot easier on my bank balance! I would love to be able to pay for it feature by feature, rather than in one big chunk for the entire thing.

    I am on the other side of the world as most so Skype may not be possible, so someone happy to communicate via email and happy with Paypal. Though I do allow time for the work to be done, a timely communication via email is a must. Please don't just up and ignore me if you don't want to do it, I do appreciate you letting me know for whatever reason. You don't need to do any design as I have that covered, pure programming.

    Thanks in advance!

  5. Hey guys,

    Sorry appears I jumped the gun with previous post, the guy I had lined up fell through in the end because he didn't want to work with someone else's code (which was one of my requirements) and I can't afford to build from scratch at a whim. Was going to update previous post but see it is closed.

    I'm looking for a PHP developer for an animal breeding and showing game. I have a game which has been partially done, but still in early development, which needs other features added and finishing. It is on a Laravel framework, so experience with that is required. And obviously happy to work in with existing code. I have no great rush, so would suit someone who is just looking for some work on the side (obviously don't want to be waiting months but I'm reasonable). If you have an understanding of genetics, that would be beneficial but not required.

    Reasonably priced please, I'm paying for this out of my own pocket. Alternatively if you'd like to do the work for in game perks I would be very open to that possibly as would make it a lot easier on my bank balance! I would love to be able to pay for it feature by feature, rather than in one big chunk for the entire thing.

    I am on the other side of the world as most so Skype may not be possible, so someone happy to communicate via email and happy with Paypal. Though I do allow time for the work to be done, a timely communication via email is a must. You don't need to do any design as I have that covered, pure programming.

    Thanks in advance!

  6. I have a few! I have:

     

    Two dogs, a 12 year old Whippet called Wolf, and a 2 year old White Shepherd called Willow.

    Three cats, a Birman x called Darcy, a black DMH called Prada and a tabby/white DSH called Sace.

    An African Grey parrot called Loki.

    A rising two year old palomino QH/Stationbred/TB x gelding called Phoenix.

     

    @Anoua Your colourpoint cat looks like my Birman x!

  7. I used to run www.bestofbreedsim.com for eight years. I am now developing www.caniquus.com but things have moved on a lot since I first put up bestofbreed so am hiring a programmer and artist. Hopefully with the new programmer who needs to redo everything it will make a lot more progress a lot quickly.

×
×
  • Create New...