├── LICENSE.txt ├── README.md ├── README.rtf ├── base ├── Eyes │ ├── full │ │ ├── 01Black.png │ │ ├── 02DarkBrown.png │ │ ├── 03LightBrown.png │ │ ├── 04Hazel.png │ │ ├── 05Green.png │ │ ├── 06DarkBlue.png │ │ ├── 07LightBlue.png │ │ └── 08Grey.png │ └── thumbnails │ │ ├── 01Black.png │ │ ├── 02DarkBrown.png │ │ ├── 03LightBrown.png │ │ ├── 04Hazel.png │ │ ├── 05Green.png │ │ ├── 06DarkBlue.png │ │ ├── 07LightBlue.png │ │ └── 08Grey.png └── Skintone │ ├── full │ ├── 1European.png │ ├── 2European.png │ ├── 3Asian.png │ ├── 4Asian.png │ ├── 5Indian.png │ ├── 6Indian.png │ ├── 7African.png │ └── 8African.png │ └── thumbnails │ ├── 1European.png │ ├── 2European.png │ ├── 3Asian.png │ ├── 4Asian.png │ ├── 5Indian.png │ ├── 6Indian.png │ ├── 7African.png │ └── 8African.png ├── images ├── 1Hair │ ├── 1257390520.png │ ├── 1257390533.png │ └── 1257390544.png ├── 2Tops │ ├── 1257347014.png │ ├── 1257347573.png │ ├── 1257347590.png │ └── 1257347611.png ├── 3Bottoms │ ├── 1257390559.png │ ├── 1257390571.png │ ├── 1257390583.png │ └── 1257449592.png └── 4Shoes │ ├── 1257348326.png │ ├── 1257348338.png │ └── 1259939446.png ├── index.php ├── index_no_php.html ├── scripts ├── anti-rightclick.js └── drag.js └── styles ├── mainstylesheet.css └── reset.css /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010 Veronique Gagnon-Bilhete (Ninique) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Ninique's Dollmaker Script 2 | ========================== 3 | 4 | This is a script written with the aid of jQuery, that you can use to create 5 | your own dollmaker (dressup game). I made it easy for people to add/remove 6 | pieces to the dollmaker, without having to edit the html page overtime 7 | (if they have PHP). 8 | 9 | This script was designed to be used on a server with PHP. However, it does 10 | not require a database, as it works with the file structure. It can also 11 | be used on a server that does not have PHP, but that requires more work 12 | on your part. Scroll below for more details. 13 | 14 | The code has been tested and should be functional in all major browsers. I 15 | am not responsible for browser compatibility problems resulting in your 16 | customizing of the code. 17 | 18 | I am using the following libraries/plugins (The javascript libraries are 19 | hosted from Google): 20 | 21 | * [JQuery](http://jquery.com/) 22 | * [JQuery UI](http://jqueryui.com/) 23 | * [Eric Meyer's CSS Reset](http://meyerweb.com/eric/tools/css/reset/) 24 | 25 | --------------------------------------- 26 | Terms: 27 | --------------------------------------- 28 | All of the code used in this dollmaker script is licensed under the MIT 29 | license. You can use and edit it in any way that you want. A link back 30 | would be appreciated, but is not necessary. 31 | 32 | **The sample bases and clothing provided with this dollmaker are for 33 | demonstration purposes only. You must use YOUR OWN basebody and 34 | clothes for dollmakers that you create!** 35 | 36 | --------------------------------------- 37 | How to use: 38 | --------------------------------------- 39 | If you have PHP on your website, delete the file index\_no\_php.html. (If 40 | you don't have PHP, scroll below for more info) 41 | 42 | ####Categories (Tabs):#### 43 | In the images folder, you'll see some subfolders that are named 1Hair, 44 | 2Tops, 3Bottoms, etc. These folders correspond to the tabs in the 45 | dollmaker. If you change the name, it'll change what appears on the tab. 46 | The number corresponds to the order you want the tabs to appear. 47 | 48 | ####Props (Clothing & Hair):#### 49 | To put props in your dollmaker, just place them within those folders. The 50 | filename doesn't matter, but the props will be ordered alphabetically, so 51 | you should take that into consideration. 52 | 53 | ####Bases:#### 54 | You can also see that there is a folder called "bases". In it are two 55 | folders: full and thumbnails. In "full", you put the bases, in 56 | "thumbnails", you put some thumbnails that people can click on. Make sure 57 | that each full base and its corresponding thumbnail have the same file 58 | name. Just like with clothing, the bases will be ordered alphabetically. 59 | 60 | ####Layout:#### 61 | You may change the layout to your liking by editing mainstylesheet.css. 62 | Some of the styles are mandatory for the functionality, and they are marked 63 | as so. I have annotated the CSS file so that you can better 64 | find your way in it. I encourage you to change the colors to your own! 65 | 66 | --------------------------------------- 67 | "But I don't have PHP!" 68 | --------------------------------------- 69 | You can still use the script even if you don't have PHP! It's just not as 70 | easy to setup and maintain, since you'll have to do it manually. (all 71 | that php does is put the props and images onto the page for you, the 72 | drag/drop functionality is handled by jQuery.) 73 | 74 | First you'll want to follow the steps above to put all the images into 75 | the right folders. 76 | 77 | Then, delete the file called index.php and then rename index\_no\_php.html 78 | to index.html. 79 | 80 | Now you'll need to add all the image tags to index.html so that the props 81 | actually appear on the page. There are further instructions in the 82 | comments of index_no_php.html (which you just renamed index.html) to help 83 | you put the right codes in the right places, but you should have a basic 84 | understanding of HTML. -------------------------------------------------------------------------------- /README.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 2 | {\fonttbl\f0\fswiss\fcharset0 ArialMT;} 3 | {\colortbl;\red255\green255\blue255;\red5\green0\blue235;} 4 | {\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid1\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid1}} 5 | {\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}} 6 | \margl1440\margr1440\vieww15060\viewh13160\viewkind0 7 | \deftab720 8 | \pard\pardeftab720\sl340\sa340\ql\qnatural 9 | 10 | \f0\b\fs52 \cf0 Ninique's Dollmaker Script\ 11 | \pard\pardeftab720\sl340\sa260\ql\qnatural 12 | 13 | \b0\fs26 \cf0 This is a script written with the aid of jQuery, that you can use to create your own dollmaker (dressup game). I made it easy for people to add/remove pieces to the dollmaker, without having to edit the html page overtime (if they have PHP).\ 14 | This script was designed to be used on a server with PHP. However, it does not require a database, as it works with the file structure. It can also be used on a server that does not have PHP, but that requires more work on your part. Scroll below for more details.\ 15 | The code has been tested and should be functional in all major browsers. I am not responsible for browser compatibility problems resulting in your customizing of the code.\ 16 | I am using the following libraries/plugins (The javascript libraries are hosted from Google):\ 17 | \pard\tx220\tx720\pardeftab720\li720\fi-720\sl340\ql\qnatural 18 | \ls1\ilvl0\cf2 {\listtext \'95 }{\field{\*\fldinst{HYPERLINK "http://jquery.com/"}}{\fldrslt \ul JQuery}}\cf0 \ 19 | \ls1\ilvl0\cf2 {\listtext \'95 }{\field{\*\fldinst{HYPERLINK "http://jqueryui.com/"}}{\fldrslt \ul JQuery UI}}\cf0 \ 20 | \ls1\ilvl0\cf2 {\listtext \'95 }{\field{\*\fldinst{HYPERLINK "http://meyerweb.com/eric/tools/css/reset/"}}{\fldrslt \ul Eric Meyer's CSS Reset}}\cf0 \ 21 | \pard\pardeftab720\sl340\sa120\ql\qnatural 22 | \cf0 \ 23 | \pard\pardeftab720\sl340\sa320\ql\qnatural 24 | 25 | \b\fs40 \cf0 Terms:\ 26 | \pard\pardeftab720\sl340\sa260\ql\qnatural 27 | 28 | \b0\fs26 \cf0 All of the code used in this dollmaker script is licensed under the MIT license. You can use and edit it in any way that you want. A link back would be appreciated, but is not necessary.\ 29 | \pard\pardeftab720\sl340\sa260\ql\qnatural 30 | 31 | \b \cf0 The sample bases and clothing provided with this dollmaker are for demonstration purposes only. You must use YOUR OWN basebody and clothes for dollmakers that you create! 32 | \b0 \ 33 | \pard\pardeftab720\sl340\sa120\ql\qnatural 34 | \cf0 \ 35 | \pard\pardeftab720\sl340\sa320\ql\qnatural 36 | 37 | \b\fs40 \cf0 How to use:\ 38 | \pard\pardeftab720\sl340\sa260\ql\qnatural 39 | 40 | \b0\fs26 \cf0 If you have PHP on your website, delete the file index_no_php.html. (If you don't have PHP, scroll below for more info)\ 41 | \pard\pardeftab720\sl340\sa340\ql\qnatural 42 | 43 | \b \cf0 Categories (Tabs):\ 44 | \pard\pardeftab720\sl340\sa260\ql\qnatural 45 | 46 | \b0 \cf0 In the images folder, you'll see some subfolders that are named 1Hair, 2Tops, 3Bottoms, etc. These folders correspond to the tabs in the dollmaker. If you change the name, it'll change what appears on the tab. The number corresponds to the order you want the tabs to appear.\ 47 | \pard\pardeftab720\sl340\sa340\ql\qnatural 48 | 49 | \b \cf0 Props (Clothing & Hair):\ 50 | \pard\pardeftab720\sl340\sa260\ql\qnatural 51 | 52 | \b0 \cf0 To put props in your dollmaker, just place them within those folders. The filename doesn't matter, but the props will be ordered alphabetically, so you should take that into consideration.\ 53 | \pard\pardeftab720\sl340\sa340\ql\qnatural 54 | 55 | \b \cf0 Bases:\ 56 | \pard\pardeftab720\sl340\sa260\ql\qnatural 57 | 58 | \b0 \cf0 You can also see that there is a folder called "bases". In it are two folders: full and thumbnails. In "full", you put the bases, in "thumbnails", you put some thumbnails that people can click on. Make sure that each full base and its corresponding thumbnail have the same file name. Just like with clothing, the bases will be ordered alphabetically.\ 59 | \pard\pardeftab720\sl340\sa340\ql\qnatural 60 | 61 | \b \cf0 Layout:\ 62 | \pard\pardeftab720\sl340\sa260\ql\qnatural 63 | 64 | \b0 \cf0 You may change the layout to your liking by editing mainstylesheet.css. Some of the styles are mandatory for the functionality, and they are marked as so. I have annotated the CSS file so that you can better find your way in it. I encourage you to change the colors to your own!\ 65 | \pard\pardeftab720\sl340\sa120\ql\qnatural 66 | \cf0 \ 67 | \pard\pardeftab720\sl340\sa320\ql\qnatural 68 | 69 | \b\fs40 \cf0 "But I don't have PHP!"\ 70 | \pard\pardeftab720\sl340\sa260\ql\qnatural 71 | 72 | \b0\fs26 \cf0 You can still use the script even if you don't have PHP! It's just not as easy to setup and maintain, since you'll have to do it manually. (all that php does is put the props and images onto the page for you, the drag/drop functionality is handled by jQuery.)\ 73 | First you'll want to follow the steps above to put all the images into the right folders.\ 74 | Then, delete the file called index.php and then rename index_no_php.html to index.html.\ 75 | Now you'll need to add all the image tags to index.html so that the props actually appear on the page. There are further instructions in the comments of index 76 | \i no 77 | \i0 php.html (which you just renamed index.html) to help you put the right codes in the right places, but you should have a basic understanding of HTML.\ 78 | } -------------------------------------------------------------------------------- /base/Eyes/full/01Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/full/01Black.png -------------------------------------------------------------------------------- /base/Eyes/full/02DarkBrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/full/02DarkBrown.png -------------------------------------------------------------------------------- /base/Eyes/full/03LightBrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/full/03LightBrown.png -------------------------------------------------------------------------------- /base/Eyes/full/04Hazel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/full/04Hazel.png -------------------------------------------------------------------------------- /base/Eyes/full/05Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/full/05Green.png -------------------------------------------------------------------------------- /base/Eyes/full/06DarkBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/full/06DarkBlue.png -------------------------------------------------------------------------------- /base/Eyes/full/07LightBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/full/07LightBlue.png -------------------------------------------------------------------------------- /base/Eyes/full/08Grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/full/08Grey.png -------------------------------------------------------------------------------- /base/Eyes/thumbnails/01Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/thumbnails/01Black.png -------------------------------------------------------------------------------- /base/Eyes/thumbnails/02DarkBrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/thumbnails/02DarkBrown.png -------------------------------------------------------------------------------- /base/Eyes/thumbnails/03LightBrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/thumbnails/03LightBrown.png -------------------------------------------------------------------------------- /base/Eyes/thumbnails/04Hazel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/thumbnails/04Hazel.png -------------------------------------------------------------------------------- /base/Eyes/thumbnails/05Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/thumbnails/05Green.png -------------------------------------------------------------------------------- /base/Eyes/thumbnails/06DarkBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/thumbnails/06DarkBlue.png -------------------------------------------------------------------------------- /base/Eyes/thumbnails/07LightBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/thumbnails/07LightBlue.png -------------------------------------------------------------------------------- /base/Eyes/thumbnails/08Grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Eyes/thumbnails/08Grey.png -------------------------------------------------------------------------------- /base/Skintone/full/1European.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/full/1European.png -------------------------------------------------------------------------------- /base/Skintone/full/2European.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/full/2European.png -------------------------------------------------------------------------------- /base/Skintone/full/3Asian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/full/3Asian.png -------------------------------------------------------------------------------- /base/Skintone/full/4Asian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/full/4Asian.png -------------------------------------------------------------------------------- /base/Skintone/full/5Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/full/5Indian.png -------------------------------------------------------------------------------- /base/Skintone/full/6Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/full/6Indian.png -------------------------------------------------------------------------------- /base/Skintone/full/7African.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/full/7African.png -------------------------------------------------------------------------------- /base/Skintone/full/8African.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/full/8African.png -------------------------------------------------------------------------------- /base/Skintone/thumbnails/1European.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/thumbnails/1European.png -------------------------------------------------------------------------------- /base/Skintone/thumbnails/2European.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/thumbnails/2European.png -------------------------------------------------------------------------------- /base/Skintone/thumbnails/3Asian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/thumbnails/3Asian.png -------------------------------------------------------------------------------- /base/Skintone/thumbnails/4Asian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/thumbnails/4Asian.png -------------------------------------------------------------------------------- /base/Skintone/thumbnails/5Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/thumbnails/5Indian.png -------------------------------------------------------------------------------- /base/Skintone/thumbnails/6Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/thumbnails/6Indian.png -------------------------------------------------------------------------------- /base/Skintone/thumbnails/7African.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/thumbnails/7African.png -------------------------------------------------------------------------------- /base/Skintone/thumbnails/8African.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/base/Skintone/thumbnails/8African.png -------------------------------------------------------------------------------- /images/1Hair/1257390520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/1Hair/1257390520.png -------------------------------------------------------------------------------- /images/1Hair/1257390533.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/1Hair/1257390533.png -------------------------------------------------------------------------------- /images/1Hair/1257390544.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/1Hair/1257390544.png -------------------------------------------------------------------------------- /images/2Tops/1257347014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/2Tops/1257347014.png -------------------------------------------------------------------------------- /images/2Tops/1257347573.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/2Tops/1257347573.png -------------------------------------------------------------------------------- /images/2Tops/1257347590.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/2Tops/1257347590.png -------------------------------------------------------------------------------- /images/2Tops/1257347611.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/2Tops/1257347611.png -------------------------------------------------------------------------------- /images/3Bottoms/1257390559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/3Bottoms/1257390559.png -------------------------------------------------------------------------------- /images/3Bottoms/1257390571.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/3Bottoms/1257390571.png -------------------------------------------------------------------------------- /images/3Bottoms/1257390583.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/3Bottoms/1257390583.png -------------------------------------------------------------------------------- /images/3Bottoms/1257449592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/3Bottoms/1257449592.png -------------------------------------------------------------------------------- /images/4Shoes/1257348326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/4Shoes/1257348326.png -------------------------------------------------------------------------------- /images/4Shoes/1257348338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/4Shoes/1257348338.png -------------------------------------------------------------------------------- /images/4Shoes/1259939446.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninique/Dollmaker-Script/cfd810c411cc211f453afafce20fb24cc5621e26/images/4Shoes/1259939446.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |