Compare commits
28 commits
Author | SHA1 | Date | |
---|---|---|---|
d4c7af6d68 | |||
6c1269c66c | |||
38c65b8861 | |||
3076be7c21 | |||
93ccf30cd5 | |||
dc1601b003 | |||
914f7959eb | |||
af96d83212 | |||
2e59bd71cc | |||
d93d294d6a | |||
cf2fbb1d70 | |||
526b7e3122 | |||
e8ef432eea | |||
9e12132d3b | |||
1cc90a4662 | |||
d1a9ebb92e | |||
9da776129c | |||
e446030481 | |||
7c2c896d47 | |||
cc30355f3b | |||
1f95bd6842 | |||
1f4d6ab772 | |||
3813b9f7a9 | |||
bbca84f7c5 | |||
a443e5c432 | |||
25ad581fdc | |||
2c7edc4b62 | |||
|
8e3fd88874 |
6
.gitignore
vendored
|
@ -1,2 +1,8 @@
|
|||
.DS_Store
|
||||
node_modules/**
|
||||
|
||||
# Ignore files created by build step
|
||||
**/style.css
|
||||
|
||||
**/index.html
|
||||
!/index.html
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="JavaScriptLibraryMappings">
|
||||
<includedPredefinedLibrary name="Node.js Core" />
|
||||
</component>
|
||||
</project>
|
9
.idea/prettier.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="PrettierConfiguration">
|
||||
<option name="myConfigurationMode" value="MANUAL" />
|
||||
<option name="myRunOnSave" value="true" />
|
||||
<option name="myRunOnReformat" value="true" />
|
||||
<option name="myFilesPattern" value="**/!(index|style).{js,ts,jsx,tsx,vue,astro,html,css}" />
|
||||
</component>
|
||||
</project>
|
1
.prettierrc
Normal file
|
@ -0,0 +1 @@
|
|||
{}
|
188
bs-config.js
|
@ -12,104 +12,102 @@
|
|||
|
|
||||
*/
|
||||
|
||||
const domain = 'saudade.test'
|
||||
const homedir = require('os').homedir()
|
||||
const domain = "saudade.test";
|
||||
const homedir = require("os").homedir();
|
||||
const certdir =
|
||||
homedir + "/Library/Application Support/Herd/config/valet/Certificates/";
|
||||
|
||||
module.exports = {
|
||||
'ui': {
|
||||
'port': 3001,
|
||||
ui: {
|
||||
port: 3001,
|
||||
},
|
||||
watch: true,
|
||||
ignore: [],
|
||||
single: false,
|
||||
watchOptions: {
|
||||
ignoreInitial: true,
|
||||
},
|
||||
server: false,
|
||||
proxy: "https://" + domain,
|
||||
port: 3000,
|
||||
middleware: false,
|
||||
serveStatic: [],
|
||||
ghostMode: {
|
||||
clicks: true,
|
||||
scroll: true,
|
||||
location: true,
|
||||
forms: {
|
||||
submit: true,
|
||||
inputs: true,
|
||||
toggles: true,
|
||||
},
|
||||
'files': '**/*',
|
||||
'watchEvents': [
|
||||
'change',
|
||||
],
|
||||
'watch': false,
|
||||
'ignore': [],
|
||||
'single': false,
|
||||
'watchOptions': {
|
||||
'ignoreInitial': true,
|
||||
},
|
||||
logLevel: "info",
|
||||
logPrefix: "Browsersync",
|
||||
logConnections: false,
|
||||
logFileChanges: true,
|
||||
logSnippet: true,
|
||||
rewriteRules: [],
|
||||
open: false,
|
||||
browser: "default",
|
||||
cors: false,
|
||||
xip: false,
|
||||
hostnameSuffix: false,
|
||||
reloadOnRestart: false,
|
||||
notify: false,
|
||||
scrollProportionally: true,
|
||||
scrollThrottle: 0,
|
||||
scrollRestoreTechnique: "window.name",
|
||||
scrollElements: [],
|
||||
scrollElementMapping: [],
|
||||
reloadDelay: 0,
|
||||
reloadDebounce: 500,
|
||||
reloadThrottle: 0,
|
||||
plugins: [],
|
||||
injectChanges: true,
|
||||
startPath: null,
|
||||
minify: true,
|
||||
host: domain,
|
||||
localOnly: false,
|
||||
codeSync: true,
|
||||
timestamps: true,
|
||||
clientEvents: [
|
||||
"scroll",
|
||||
"scroll:element",
|
||||
"input:text",
|
||||
"input:toggles",
|
||||
"form:submit",
|
||||
"form:reset",
|
||||
"click",
|
||||
],
|
||||
socket: {
|
||||
socketIoOptions: {
|
||||
log: false,
|
||||
},
|
||||
'server': false,
|
||||
'proxy': 'https://' + domain,
|
||||
'port': 3000,
|
||||
'middleware': false,
|
||||
'serveStatic': [],
|
||||
'ghostMode': {
|
||||
'clicks': true,
|
||||
'scroll': true,
|
||||
'location': true,
|
||||
'forms': {
|
||||
'submit': true,
|
||||
'inputs': true,
|
||||
'toggles': true,
|
||||
},
|
||||
socketIoClientConfig: {
|
||||
reconnectionAttempts: 50,
|
||||
},
|
||||
'logLevel': 'info',
|
||||
'logPrefix': 'Browsersync',
|
||||
'logConnections': false,
|
||||
'logFileChanges': true,
|
||||
'logSnippet': true,
|
||||
'rewriteRules': [],
|
||||
'open': false,
|
||||
'browser': 'default',
|
||||
'cors': false,
|
||||
'xip': false,
|
||||
'hostnameSuffix': false,
|
||||
'reloadOnRestart': false,
|
||||
'notify': false,
|
||||
'scrollProportionally': true,
|
||||
'scrollThrottle': 0,
|
||||
'scrollRestoreTechnique': 'window.name',
|
||||
'scrollElements': [],
|
||||
'scrollElementMapping': [],
|
||||
'reloadDelay': 0,
|
||||
'reloadDebounce': 500,
|
||||
'reloadThrottle': 0,
|
||||
'plugins': [],
|
||||
'injectChanges': true,
|
||||
'startPath': null,
|
||||
'minify': true,
|
||||
'host': domain,
|
||||
'localOnly': false,
|
||||
'codeSync': true,
|
||||
'timestamps': true,
|
||||
'clientEvents': [
|
||||
'scroll',
|
||||
'scroll:element',
|
||||
'input:text',
|
||||
'input:toggles',
|
||||
'form:submit',
|
||||
'form:reset',
|
||||
'click',
|
||||
],
|
||||
'socket': {
|
||||
'socketIoOptions': {
|
||||
'log': false,
|
||||
},
|
||||
'socketIoClientConfig': {
|
||||
'reconnectionAttempts': 50,
|
||||
},
|
||||
'path': '/browser-sync/socket.io',
|
||||
'clientPath': '/browser-sync',
|
||||
'namespace': '/browser-sync',
|
||||
'clients': {
|
||||
'heartbeatTimeout': 5000,
|
||||
},
|
||||
path: "/browser-sync/socket.io",
|
||||
clientPath: "/browser-sync",
|
||||
namespace: "/browser-sync",
|
||||
clients: {
|
||||
heartbeatTimeout: 5000,
|
||||
},
|
||||
'tagNames': {
|
||||
'less': 'link',
|
||||
'scss': 'link',
|
||||
'css': 'link',
|
||||
'jpg': 'img',
|
||||
'jpeg': 'img',
|
||||
'png': 'img',
|
||||
'svg': 'img',
|
||||
'gif': 'img',
|
||||
'js': 'script',
|
||||
},
|
||||
'injectNotification': false,
|
||||
'https': {
|
||||
'key': homedir + '/.config/valet/Certificates/' + domain + '.key',
|
||||
'cert': homedir + '/.config/valet/Certificates/' + domain + '.crt',
|
||||
},
|
||||
}
|
||||
},
|
||||
tagNames: {
|
||||
less: "link",
|
||||
scss: "link",
|
||||
css: "link",
|
||||
jpg: "img",
|
||||
jpeg: "img",
|
||||
png: "img",
|
||||
svg: "img",
|
||||
gif: "img",
|
||||
js: "script",
|
||||
},
|
||||
injectNotification: false,
|
||||
https: {
|
||||
key: certdir + domain + ".key",
|
||||
cert: certdir + domain + ".crt",
|
||||
},
|
||||
};
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
MENU.HTML
|
||||
MENU
|
||||
|
||||
Feb 2022 (except no frames)
|
||||
Feb 2022 (except noframes)
|
||||
Dec 2023 (noframes only)
|
||||
|
||||
* main
|
||||
no frames
|
||||
* noframes
|
||||
|
||||
* whatsnew
|
||||
* flowers
|
||||
|
@ -123,24 +124,29 @@ MENU.HTML
|
|||
Nov 2022 & July 2023
|
||||
|
||||
* babyz/babyzclothes
|
||||
babyz/babyzplayscene
|
||||
babyz/babyztoyz
|
||||
babyz/babyzedit
|
||||
babyz/babyzplay
|
||||
|
||||
offsitespecials
|
||||
petz/petz3/p3playscenz
|
||||
finfin/finfin
|
||||
Nov 2023
|
||||
|
||||
* babyz/babyzplayscene
|
||||
|
||||
Dec 2023
|
||||
|
||||
* babyz/babyztoyz
|
||||
* babyz/babyzplay
|
||||
|
||||
* offsitespecials = https://web.archive.org/web/20150316023926/http://www.stevehornsc.pwp.blueyonder.co.uk/carolyn/index.htm
|
||||
* petz/petz3/p3playscenz
|
||||
* finfin
|
||||
|
||||
HOME
|
||||
phantarella
|
||||
petz/dream
|
||||
crashingxp
|
||||
petzfriendsite
|
||||
* phantarella
|
||||
* petz/petz1/dream
|
||||
* crashingxp
|
||||
* petzfriendsite
|
||||
|
||||
WHATSNEW
|
||||
newsarchive
|
||||
babyz/vvccr (vvccr/index.htm)
|
||||
* newsarchive
|
||||
* babyz/vvccr (vvccr/index.htm)
|
||||
smallislovely
|
||||
petzhexzlinks
|
||||
newlinks
|
||||
|
@ -197,7 +203,7 @@ TUTORIALS
|
|||
tutorials/rontigat_aflh
|
||||
tutorials/rontigat_changesize
|
||||
|
||||
LNZDETAILS
|
||||
TUTORIALS/LNZDETAILS
|
||||
tutorials/LNZ_summary
|
||||
tutorials/LNZ1st
|
||||
tutorials/BabyzBodyAreaNumbers
|
||||
|
@ -214,7 +220,7 @@ MADSCIENTIST
|
|||
petz/petz4/petz4fooler
|
||||
tutorials/Petz5NurseryFix
|
||||
|
||||
PETZEDIT
|
||||
PETZ/PETZEDIT
|
||||
tutorials/infobits
|
||||
tutorials/BallConversionCatToDog
|
||||
tutorials/BallConversionDogToCat
|
||||
|
@ -297,11 +303,11 @@ PETZEDIT
|
|||
tutorials/FAQchangeNoseColour
|
||||
tutorials/FAQchangeDefaultAdoptionCentreClothes
|
||||
|
||||
ODDBALLZEDIT
|
||||
ODDBALLZ/ODDBALLZEDIT
|
||||
oddballz/oddballzplayer
|
||||
oddballz/oddballzedit2
|
||||
|
||||
BABYZEDIT
|
||||
BABYZ/BABYZEDIT
|
||||
babyz/sphinx
|
||||
tutorials/BabyzFreezeFix
|
||||
tutorials/BabyzSliderBrains
|
||||
|
@ -331,7 +337,7 @@ BABYZEDIT
|
|||
tutorials/MakingBabyzWalkers
|
||||
tutorials/BabyNaturalHairGrow
|
||||
|
||||
COLLABORATIONS
|
||||
SPECIALS/COLLABORATIONS
|
||||
petz/withbutterflychaser
|
||||
petz/butterflychaser
|
||||
petz/withcasey
|
||||
|
@ -339,82 +345,82 @@ COLLABORATIONS
|
|||
petz/withmelanie
|
||||
petz/withmeerii
|
||||
|
||||
EMOTICONPETZ1
|
||||
SPECIALS/EMOTICONPETZ1
|
||||
specials/emoticonpetz2
|
||||
specials/emoticonbreed
|
||||
|
||||
SEALIFE
|
||||
SPECIALS/SEALIFE
|
||||
petz/petzfrogz
|
||||
petz/transforms
|
||||
babyz/babyzfish
|
||||
babyz/wardahseascape
|
||||
petz/minibyteseascape
|
||||
|
||||
BUGZLIFE
|
||||
SPECIALS/BUGZLIFE
|
||||
babyz/babyzarthropods
|
||||
petz/petzarthropods
|
||||
|
||||
PETZPEOPLE
|
||||
SPECIALS/PETZPEOPLE
|
||||
petz/PeopleLNZBreedz
|
||||
petz/peoplebreedz
|
||||
|
||||
PETZ3-5LNZ
|
||||
SPECIALS/PETZ3-5LNZ
|
||||
tutorials/LNZBreedzHowto
|
||||
specials/petz3-5lnzp2
|
||||
|
||||
P5TOYZ
|
||||
PETZ/PETZ5/P5TOYZ
|
||||
tutorials/RegistryHowto
|
||||
|
||||
P5BREEDZ
|
||||
PETZ/PETZ5/P5BREEDZ
|
||||
petz/pfmice
|
||||
|
||||
C5BREEDZ
|
||||
PETZ/PETZ5/C5BREEDZ
|
||||
petz/petz5/catz5-2
|
||||
petz/petz5/catz5-3
|
||||
petz/petz5/catz5-4
|
||||
petz/petz5/catz5-5
|
||||
|
||||
D5BREEDZ
|
||||
PETZ/PETZ5/D5BREEDZ
|
||||
petz/petz5/dogz5-2
|
||||
petz/petz5/dogz5-3
|
||||
petz/petz5/dogz5-4
|
||||
petz/petz5/dogz5-5
|
||||
|
||||
CATBEHAVIOURS
|
||||
PETZ/CATBEHAVIOURS
|
||||
reassociate
|
||||
|
||||
C4BREEDZ
|
||||
PETZ/PETZ4/C4BREEDZ
|
||||
petz/petz4/catz4-2
|
||||
petz/petz4/catz4-3
|
||||
petz/petz4/catz4-4
|
||||
petz/petz4/catz4-5
|
||||
|
||||
C3BREEDZ
|
||||
PETZ/PETZ3/C3BREEDZ
|
||||
petz/petz3/catz3-2
|
||||
petz/petz3/catz3-3
|
||||
petz/petz3/catz3-4
|
||||
petz/petz3/catz3-5
|
||||
|
||||
D3BREEDZ
|
||||
PETZ/PETZ3/D3BREEDZ
|
||||
petz/petz3/dogz3-2
|
||||
petz/petz3/dogz3-3
|
||||
petz/petz3/dogz3-4
|
||||
petz/petz3/dogz3-5
|
||||
|
||||
CATZ1DEX
|
||||
PETZ/PETZ1/CATZ1DEX
|
||||
petz/petz1/sclub
|
||||
petz/petz1/dload2
|
||||
|
||||
DOGZ1FOOLER
|
||||
PETZ/PETZ1/DOGZ1FOOLER
|
||||
petz/petz1/dogz1dl
|
||||
|
||||
ODDBALLZ
|
||||
ODDBALLZ/ODDBALLZ
|
||||
oddballz/oddballzbreedz
|
||||
|
||||
BABYZNEWEST
|
||||
BABYZ/BABYZNEWEST
|
||||
tutorials/babyzears
|
||||
|
||||
BABYZNEW
|
||||
BABYZ/BABYZNEW
|
||||
babyz/faeriebabyz
|
||||
babyz/babyzoddball
|
||||
babyz/babyzhearts
|
||||
|
@ -424,5 +430,40 @@ BABYZNEW
|
|||
babyz/wingflowerbabyz
|
||||
babyz/wingjewelbabyz
|
||||
|
||||
BABYZ-1
|
||||
BABYZ/BABYZ-1
|
||||
babyz/babyz-2
|
||||
babyz/babyz-3
|
||||
babyz/babyz-4
|
||||
babyz/babyz-5
|
||||
babyz/babyzspecial-1
|
||||
|
||||
BABYZ/BABYZPLAYSCENE
|
||||
babyz/babyzsecretplaypen
|
||||
|
||||
BABYZ/BABYZTOYZ
|
||||
babyz/babyztoyz2
|
||||
babyz/babyztoyz3
|
||||
|
||||
BABYZ/BABYZPLAY
|
||||
netscape4
|
||||
babyz/babyzplay/jackbly
|
||||
babyz/babyzplay/vesuviusbly
|
||||
babyz/babyzplay/cathybly
|
||||
babyz/babyzplay/joshbly
|
||||
babyz/babyzplay/frostedmaltbly
|
||||
|
||||
BABYZ/P3PLAYSCENZ
|
||||
petz/petz3/p3playscenz2
|
||||
petz/petz3/p3playscenz3
|
||||
|
||||
PETZ/PETZ1/DREAM
|
||||
petz/petz1/press
|
||||
|
||||
NEWSARCHIVE
|
||||
2003
|
||||
2004
|
||||
giftsa4
|
||||
giftsa3
|
||||
tools2
|
||||
giftsa2
|
||||
tutorials/temporaryworkaroundpetworkshop
|
|
@ -1,95 +1,93 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Nothing important; just me, for the curious</title>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Nothing important; just me, for the curious</title>
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<br>
|
||||
<br>
|
||||
<div class="center">
|
||||
<p class="bigger">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
|
||||
<div class="center">
|
||||
<p class="bigger">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
<!--suppress HtmlDeprecatedAttribute -->
|
||||
<table class="green" border="1" style="width: 100%">
|
||||
<tr>
|
||||
<td>
|
||||
<h2>
|
||||
<br />
|
||||
For those who really want to know...
|
||||
</h2>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!--suppress HtmlDeprecatedAttribute -->
|
||||
<table class="green" border="1" style="width: 100%;">
|
||||
<tr>
|
||||
<td>
|
||||
<h2>
|
||||
<br>
|
||||
For those who really want to know...
|
||||
</h2>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr class="bigger">
|
||||
<td>
|
||||
<br>
|
||||
What is there to say? Let's see. Well, I'm female, British, in
|
||||
my mid '50s, have a passion for cats (I'm a foster-carer for the
|
||||
local Rescue Centre and if you're interested I have a site about
|
||||
my little ones <a
|
||||
href="https://web.archive.org/web/20160108043537/http://www.stevehornsc.pwp.blueyonder.co.uk/carolyn/cats.htm"
|
||||
target="_BLANK" title="My Real-life cat family"> here </a>),
|
||||
a love of reading (particularly humour), and an obsession with
|
||||
hex editing for all of the P.F.Magic range of games. I have
|
||||
every single one of the Petz games, plus Oddballz and Babyz,
|
||||
including the different versions (Mac Oddballz, International
|
||||
Petz 3 etc). I've hex-edited loads of stuff for them over the
|
||||
years, starting back in 1995 with Dogz original. You edit the
|
||||
dogz breedfiles in Notepad, they are just simple text files --
|
||||
and I spotted that the later games have these text files too,
|
||||
just stuck together with a load of other stuff in large resource
|
||||
files, which is why I've always extracted them and edited them
|
||||
the way I do.<br>
|
||||
<br>
|
||||
I believe that information should be freely available, plus I
|
||||
want others to enjoy my hobby as much as I do, which is why I
|
||||
started to post "howto" messages back on the old Usenet
|
||||
newsgroups years ago. Abby wrote to me and suggested that I
|
||||
gather them together and make tutorials, and the rest (as they
|
||||
say) is history. I also believe that in a hobby such as ours,
|
||||
where we make and share add-ons for our favourite games, we
|
||||
should do so freely and with joy. I never can understand the
|
||||
bickering that goes on about so much, including copyright, in
|
||||
our community. We edit the programmers' original files without a
|
||||
by-your-leave, so why should we be upset when others fiddle with
|
||||
our own files? All that is needed is a suitable acknowledgement
|
||||
of our own work. Outright theft in a community like ours is
|
||||
another thing I cannot understand -- after all, what is the
|
||||
pleasure in taking something that someone else made and
|
||||
displaying it as your own?<br>
|
||||
<br>
|
||||
Do I do anything else? Well, yes -- it's been a full, rich life
|
||||
so far and I spent many years of it in interesting places
|
||||
outside the U.K. I've written some short stories for a satirical
|
||||
magazine, and a couple of novels -- humorous fantasy/SF,
|
||||
probably not suitable for youngsters -- which are available for
|
||||
reading somewhere on the Internet. I've dabbled in editing stuff
|
||||
in the various Creatures games, and somewhere out there are my
|
||||
c307 genomes which used Slink's excellent c306 as base.
|
||||
Startopia -- I modded some stuff for that, currently up at
|
||||
Slink's site along with my deep delvings into the original Sims
|
||||
game files. Oh, and Aquazone -- a couple of edited files of mine
|
||||
and a "howto" are floating around the Internet somewhere. But
|
||||
it's always the P.F.Magic series that I come back to, and
|
||||
hex-editing their files that gives me most of my computerised
|
||||
fun.
|
||||
<br>
|
||||
<br>
|
||||
<img src="Carolyn.jpg" alt="Little Tam and his foster-mum">
|
||||
a<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
<tr class="bigger">
|
||||
<td>
|
||||
<br />
|
||||
What is there to say? Let's see. Well, I'm female, British, in my
|
||||
mid '50s, have a passion for cats (I'm a foster-carer for the local
|
||||
Rescue Centre and if you're interested I have a site about my little
|
||||
ones
|
||||
<a
|
||||
href="https://web.archive.org/web/20160108043537/http://www.stevehornsc.pwp.blueyonder.co.uk/carolyn/cats.htm"
|
||||
target="_BLANK"
|
||||
title="My Real-life cat family"
|
||||
>
|
||||
here </a
|
||||
>), a love of reading (particularly humour), and an obsession with
|
||||
hex editing for all of the P.F.Magic range of games. I have every
|
||||
single one of the Petz games, plus Oddballz and Babyz, including the
|
||||
different versions (Mac Oddballz, International Petz 3 etc). I've
|
||||
hex-edited loads of stuff for them over the years, starting back in
|
||||
1995 with Dogz original. You edit the dogz breedfiles in Notepad,
|
||||
they are just simple text files -- and I spotted that the later
|
||||
games have these text files too, just stuck together with a load of
|
||||
other stuff in large resource files, which is why I've always
|
||||
extracted them and edited them the way I do.<br />
|
||||
<br />
|
||||
I believe that information should be freely available, plus I want
|
||||
others to enjoy my hobby as much as I do, which is why I started to
|
||||
post "howto" messages back on the old Usenet newsgroups years ago.
|
||||
Abby wrote to me and suggested that I gather them together and make
|
||||
tutorials, and the rest (as they say) is history. I also believe
|
||||
that in a hobby such as ours, where we make and share add-ons for
|
||||
our favourite games, we should do so freely and with joy. I never
|
||||
can understand the bickering that goes on about so much, including
|
||||
copyright, in our community. We edit the programmers' original files
|
||||
without a by-your-leave, so why should we be upset when others
|
||||
fiddle with our own files? All that is needed is a suitable
|
||||
acknowledgement of our own work. Outright theft in a community like
|
||||
ours is another thing I cannot understand -- after all, what is the
|
||||
pleasure in taking something that someone else made and displaying
|
||||
it as your own?<br />
|
||||
<br />
|
||||
Do I do anything else? Well, yes -- it's been a full, rich life so
|
||||
far and I spent many years of it in interesting places outside the
|
||||
U.K. I've written some short stories for a satirical magazine, and a
|
||||
couple of novels -- humorous fantasy/SF, probably not suitable for
|
||||
youngsters -- which are available for reading somewhere on the
|
||||
Internet. I've dabbled in editing stuff in the various Creatures
|
||||
games, and somewhere out there are my c307 genomes which used
|
||||
Slink's excellent c306 as base. Startopia -- I modded some stuff for
|
||||
that, currently up at Slink's site along with my deep delvings into
|
||||
the original Sims game files. Oh, and Aquazone -- a couple of edited
|
||||
files of mine and a "howto" are floating around the Internet
|
||||
somewhere. But it's always the P.F.Magic series that I come back to,
|
||||
and hex-editing their files that gives me most of my computerised
|
||||
fun.
|
||||
<br />
|
||||
<br />
|
||||
<img src="Carolyn.jpg" alt="Little Tam and his foster-mum" />
|
||||
a<br /><br />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,93 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Nothing important; just me, for the curious</title>
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<div class="center">
|
||||
<p class="bigger">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
|
||||
<!--suppress HtmlDeprecatedAttribute -->
|
||||
<table class="green" border="1" style="width:100%;">
|
||||
<tr>
|
||||
<td>
|
||||
<h2>
|
||||
<br>
|
||||
For those who really want to know...
|
||||
</h2>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr class="bigger">
|
||||
<td>
|
||||
<br>
|
||||
What is there to say? Let's see. Well, I'm female, British, in
|
||||
my mid '50s, have a passion for cats (I'm a foster-carer for the
|
||||
local Rescue Centre and if you're interested I have a site about
|
||||
my little ones <a href="https://web.archive.org/web/20160108043537/http://www.stevehornsc.pwp.blueyonder.co.uk/carolyn/cats.htm" target="_BLANK" title="My Real-life cat family"> here </a>),
|
||||
a love of reading (particularly humour), and an obsession with
|
||||
hex editing for all of the P.F.Magic range of games. I have
|
||||
every single one of the Petz games, plus Oddballz and Babyz,
|
||||
including the different versions (Mac Oddballz, International
|
||||
Petz 3 etc). I've hex-edited loads of stuff for them over the
|
||||
years, starting back in 1995 with Dogz original. You edit the
|
||||
dogz breedfiles in Notepad, they are just simple text files --
|
||||
and I spotted that the later games have these text files too,
|
||||
just stuck together with a load of other stuff in large resource
|
||||
files, which is why I've always extracted them and edited them
|
||||
the way I do.<br>
|
||||
<br>
|
||||
I believe that information should be freely available, plus I
|
||||
want others to enjoy my hobby as much as I do, which is why I
|
||||
started to post "howto" messages back on the old Usenet
|
||||
newsgroups years ago. Abby wrote to me and suggested that I
|
||||
gather them together and make tutorials, and the rest (as they
|
||||
say) is history. I also believe that in a hobby such as ours,
|
||||
where we make and share add-ons for our favourite games, we
|
||||
should do so freely and with joy. I never can understand the
|
||||
bickering that goes on about so much, including copyright, in
|
||||
our community. We edit the programmers' original files without a
|
||||
by-your-leave, so why should we be upset when others fiddle with
|
||||
our own files? All that is needed is a suitable acknowledgement
|
||||
of our own work. Outright theft in a community like ours is
|
||||
another thing I cannot understand -- after all, what is the
|
||||
pleasure in taking something that someone else made and
|
||||
displaying it as your own?<br>
|
||||
<br>
|
||||
Do I do anything else? Well, yes -- it's been a full, rich life
|
||||
so far and I spent many years of it in interesting places
|
||||
outside the U.K. I've written some short stories for a satirical
|
||||
magazine, and a couple of novels -- humorous fantasy/SF,
|
||||
probably not suitable for youngsters -- which are available for
|
||||
reading somewhere on the Internet. I've dabbled in editing stuff
|
||||
in the various Creatures games, and somewhere out there are my
|
||||
c307 genomes which used Slink's excellent c306 as base.
|
||||
Startopia -- I modded some stuff for that, currently up at
|
||||
Slink's site along with my deep delvings into the original Sims
|
||||
game files. Oh, and Aquazone -- a couple of edited files of mine
|
||||
and a "howto" are floating around the Internet somewhere. But
|
||||
it's always the P.F.Magic series that I come back to, and
|
||||
hex-editing their files that gives me most of my computerised
|
||||
fun.
|
||||
<br>
|
||||
<br>
|
||||
<img src="Carolyn.jpg" alt="Little Tam and his foster-mum">
|
||||
a<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,40 +1,259 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>Hex edited babyz</title>
|
||||
<!-- -->
|
||||
<!-- from source -->
|
||||
<title>Hex edited babyz</title>
|
||||
<!-- end from source -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big-gap-top bigger purple center">
|
||||
<p>
|
||||
<b>Hex edited babyz</b><br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="small-gap-top bigger purple center">
|
||||
<p><b>Hex edited babyz</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
</div>
|
||||
<div class="border-outer">
|
||||
<div class="border-inner center brown bigger bold">
|
||||
<p>
|
||||
These are my Babyz. You need to extract the .baby file into your
|
||||
Adopted Babyz directory in your Babyz program directory, or if you
|
||||
have 3 Babyz in that directory already, into you Grandma's House
|
||||
directory. Click on the picture to download.
|
||||
</p>
|
||||
|
||||
<div class="border-outer">
|
||||
<div class="border-inner center brown bigger bold">
|
||||
<p>These are my Babyz. You need to extract the .baby file into your
|
||||
Adopted Babyz directory in your Babyz program directory, or if you have
|
||||
3 Babyz in that directory already, into you Grandma's House directory.
|
||||
Click on the picture to download.</p>
|
||||
<p>
|
||||
Also, all Babyz here have diapers matching their skin tones, and the
|
||||
pictures have been taken with those diapers in place. If you want to
|
||||
download the diapers also, go to my
|
||||
<a href="/babyz/babyzclothes/">babyz clothes</a> page.
|
||||
</p>
|
||||
|
||||
<p>Also, all Babyz here have diapers matching their skin tones, and the
|
||||
pictures have been taken with those diapers in place. If you want to
|
||||
download the diapers also, go to my <a
|
||||
href="/babyz/babyzclothes/">babyz clothes</a> page.</p>
|
||||
<p>
|
||||
<u>Page</u>: 1
|
||||
<a href="/babyz/babyz-2/">2</a>
|
||||
<a href="/babyz/babyz-3/">3</a>
|
||||
<a href="/babyz/babyz-4/">4</a>
|
||||
<a href="/babyz/babyz-5/">5</a>
|
||||
|
|
||||
<a href="/babyz/babyzspecial-1/">Special Babyz</a>
|
||||
|
|
||||
<a href="/babyz/babyzplay/">Play with a Babyz Online</a>
|
||||
</p>
|
||||
|
||||
<p><u>Page</u>:
|
||||
1
|
||||
<table class="center wide-center-table img-border">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Alain.zip">
|
||||
<img src="Alain.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Alaina.zip">
|
||||
<img src="Alaina.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Allan.zip">
|
||||
<img src="Allan.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Andrea.zip">
|
||||
<img src="Andrea.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Angiefay.zip">
|
||||
<img src="Angiefay.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Anona.zip">
|
||||
<img src="Anona.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Anonny.zip">
|
||||
<img src="Anonny.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Ariana.zip">
|
||||
<img src="Ariana.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby1.zip">
|
||||
<img src="Baby1.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Baby2.zip">
|
||||
<img src="Baby2.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby3.zip">
|
||||
<img src="Baby3.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby3x.zip">
|
||||
<img src="Baby3x.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Baby4.zip">
|
||||
<img src="Baby4.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bessalia.zip">
|
||||
<img src="Bessalia.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Blondie.zip">
|
||||
<img src="Blondie.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Blondie2.zip">
|
||||
<img src="Blondie2.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Blossom.zip">
|
||||
<img src="Blossom.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bluebabe.zip">
|
||||
<img src="Bluebabe.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Bluebabe0.zip">
|
||||
<img src="Bluebabe0.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bluefay.zip">
|
||||
<img src="Bluefay.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Boybase.zip">
|
||||
<img src="Boybase.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Caitlina.zip">
|
||||
<img src="Caitlina.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Caitlinb.zip">
|
||||
<img src="Caitlinb.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Candyfloss.zip">
|
||||
<img src="Candyfloss.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Carmena.zip">
|
||||
<img src="Carmena.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Carolyna.zip">
|
||||
<img src="Carolyna.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Cester.zip">
|
||||
<img src="Cester.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Charlemagne.zip">
|
||||
<img src="Charlemagne.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Charmian.zip">
|
||||
<img src="Charmian.gif" />
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Cherrala.zip">
|
||||
<img src="Cherrala.gif" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bigger purple center">
|
||||
<u>Page</u>: 1
|
||||
<a href="/babyz/babyz-2/">2</a>
|
||||
<a href="/babyz/babyz-3/">3</a>
|
||||
<a href="/babyz/babyz-4/">4</a>
|
||||
|
@ -42,224 +261,7 @@
|
|||
|
|
||||
<a href="/babyz/babyzspecial-1/">Special Babyz</a>
|
||||
|
|
||||
<a href="/babyz/babyzplay/">Play with a Babyz Online</a></p>
|
||||
|
||||
<table class="center wide-center-table img-border">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Alain.zip">
|
||||
<img src="Alain.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Alaina.zip">
|
||||
<img src="Alaina.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Allan.zip">
|
||||
<img src="Allan.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Andrea.zip">
|
||||
<img src="Andrea.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Angiefay.zip">
|
||||
<img src="Angiefay.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Anona.zip">
|
||||
<img src="Anona.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Anonny.zip">
|
||||
<img src="Anonny.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Ariana.zip">
|
||||
<img src="Ariana.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby1.zip">
|
||||
<img src="Baby1.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Baby2.zip">
|
||||
<img src="Baby2.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby3.zip">
|
||||
<img src="Baby3.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby3x.zip">
|
||||
<img src="Baby3x.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Baby4.zip">
|
||||
<img src="Baby4.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bessalia.zip">
|
||||
<img src="Bessalia.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Blondie.zip">
|
||||
<img src="Blondie.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Blondie2.zip">
|
||||
<img src="Blondie2.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Blossom.zip">
|
||||
<img src="Blossom.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bluebabe.zip">
|
||||
<img src="Bluebabe.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Bluebabe0.zip">
|
||||
<img src="Bluebabe0.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bluefay.zip">
|
||||
<img src="Bluefay.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Boybase.zip">
|
||||
<img src="Boybase.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Caitlina.zip">
|
||||
<img src="Caitlina.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Caitlinb.zip">
|
||||
<img src="Caitlinb.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Candyfloss.zip">
|
||||
<img src="Candyfloss.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Carmena.zip">
|
||||
<img src="Carmena.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Carolyna.zip">
|
||||
<img src="Carolyna.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Cester.zip">
|
||||
<img src="Cester.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Charlemagne.zip">
|
||||
<img src="Charlemagne.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Charmian.zip">
|
||||
<img src="Charmian.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Cherrala.zip">
|
||||
<img src="Cherrala.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bigger purple center">
|
||||
<u>Page</u>:
|
||||
1
|
||||
<a href="/babyz/babyz-2/">2</a>
|
||||
<a href="/babyz/babyz-3/">3</a>
|
||||
<a href="/babyz/babyz-4/">4</a>
|
||||
<a href="/babyz/babyz-5/">5</a>
|
||||
|
|
||||
<a href="/babyz/babyzspecial-1/">Special Babyz</a>
|
||||
|
|
||||
<a href="/babyzplay/">Play with a Babyz Online</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<a href="/babyzplay/">Play with a Babyz Online</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,264 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- from source -->
|
||||
<title>Hex edited babyz</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="small-gap-top bigger purple center">
|
||||
<p><b>Hex edited babyz</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
</div>
|
||||
|
||||
<div class="border-outer">
|
||||
<div class="border-inner center brown bigger bold">
|
||||
<p>These are my Babyz. You need to extract the .baby file into your
|
||||
Adopted Babyz directory in your Babyz program directory, or if you have
|
||||
3 Babyz in that directory already, into you Grandma's House directory.
|
||||
Click on the picture to download.</p>
|
||||
|
||||
<p>Also, all Babyz here have diapers matching their skin tones, and the
|
||||
pictures have been taken with those diapers in place. If you want to
|
||||
download the diapers also, go to my <a href="/carolyns_creations/babyz/babyzclothes/">babyz clothes</a> page.</p>
|
||||
|
||||
<p><u>Page</u>:
|
||||
1
|
||||
<a href="/carolyns_creations/babyz/babyz-2/">2</a>
|
||||
<a href="/carolyns_creations/babyz/babyz-3/">3</a>
|
||||
<a href="/carolyns_creations/babyz/babyz-4/">4</a>
|
||||
<a href="/carolyns_creations/babyz/babyz-5/">5</a>
|
||||
|
|
||||
<a href="/carolyns_creations/babyz/babyzspecial-1/">Special Babyz</a>
|
||||
|
|
||||
<a href="/carolyns_creations/babyz/babyzplay/">Play with a Babyz Online</a></p>
|
||||
|
||||
<table class="center wide-center-table img-border">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Alain.zip">
|
||||
<img src="Alain.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Alaina.zip">
|
||||
<img src="Alaina.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Allan.zip">
|
||||
<img src="Allan.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Andrea.zip">
|
||||
<img src="Andrea.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Angiefay.zip">
|
||||
<img src="Angiefay.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Anona.zip">
|
||||
<img src="Anona.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Anonny.zip">
|
||||
<img src="Anonny.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Ariana.zip">
|
||||
<img src="Ariana.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby1.zip">
|
||||
<img src="Baby1.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Baby2.zip">
|
||||
<img src="Baby2.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby3.zip">
|
||||
<img src="Baby3.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Baby3x.zip">
|
||||
<img src="Baby3x.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Baby4.zip">
|
||||
<img src="Baby4.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bessalia.zip">
|
||||
<img src="Bessalia.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Blondie.zip">
|
||||
<img src="Blondie.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Blondie2.zip">
|
||||
<img src="Blondie2.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Blossom.zip">
|
||||
<img src="Blossom.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bluebabe.zip">
|
||||
<img src="Bluebabe.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Bluebabe0.zip">
|
||||
<img src="Bluebabe0.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Bluefay.zip">
|
||||
<img src="Bluefay.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Boybase.zip">
|
||||
<img src="Boybase.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Caitlina.zip">
|
||||
<img src="Caitlina.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Caitlinb.zip">
|
||||
<img src="Caitlinb.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Candyfloss.zip">
|
||||
<img src="Candyfloss.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Carmena.zip">
|
||||
<img src="Carmena.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Carolyna.zip">
|
||||
<img src="Carolyna.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Cester.zip">
|
||||
<img src="Cester.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Charlemagne.zip">
|
||||
<img src="Charlemagne.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Charmian.zip">
|
||||
<img src="Charmian.gif">
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="Cherrala.zip">
|
||||
<img src="Cherrala.gif">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bigger purple center">
|
||||
<u>Page</u>:
|
||||
1
|
||||
<a href="/carolyns_creations/babyz/babyz-2/">2</a>
|
||||
<a href="/carolyns_creations/babyz/babyz-3/">3</a>
|
||||
<a href="/carolyns_creations/babyz/babyz-4/">4</a>
|
||||
<a href="/carolyns_creations/babyz/babyz-5/">5</a>
|
||||
|
|
||||
<a href="/carolyns_creations/babyz/babyzspecial-1/">Special Babyz</a>
|
||||
|
|
||||
<a href="/carolyns_creations/babyzplay/">Play with a Babyz Online</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,109 +1,149 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>Hex edited babyz clothes</title>
|
||||
<!-- -->
|
||||
<!-- from source -->
|
||||
<title>Hex edited babyz clothes</title>
|
||||
<!-- end from source -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="bold purple bigger center">
|
||||
<p>
|
||||
Hex edited babyz clothes<br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="border-outer border-green" style="width: 90%">
|
||||
<div
|
||||
class="border-inner border-green green center bold bigger img-border"
|
||||
>
|
||||
<p>
|
||||
These are Carolyn's Babyz clothes. You need to extract the .clo file
|
||||
into your Resource\Clothes directory in your Babyz program directory.
|
||||
Names of the "naturist" diapers are listed in the order they are on
|
||||
the shelf.
|
||||
</p>
|
||||
|
||||
<div class="bold purple bigger center">
|
||||
<p>Hex edited babyz clothes<br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
</div>
|
||||
<p>
|
||||
Download the
|
||||
<a href="whitediaper.zip">proper white diaper</a> overwrites the
|
||||
grubby-looking grey default<br />
|
||||
Download the
|
||||
<a href="Tailsfixedfornaturists.zip">fixed tails</a> which will allow
|
||||
you to use the "naturist" diapers further down this page with the
|
||||
tails. Read the Readme file for more info.
|
||||
</p>
|
||||
|
||||
<div class="border-outer border-green">
|
||||
<div class="border-inner border-green green center bold bigger img-border">
|
||||
<p>These are Carolyn's Babyz clothes. You need to extract the .clo file
|
||||
into your Resource\Clothes directory in your Babyz program directory.
|
||||
Names of the "naturist" diapers are listed in the order they are on the
|
||||
shelf.</p>
|
||||
<p>
|
||||
<img src="exoticbubbles.gif" title="My Flower Crown" /><br />
|
||||
<a href="exoticbubblepants.zip">My "Exotic bubble pants"</a>,
|
||||
<a href="normalbubbles.zip">My "normal" bubble pants and hats</a
|
||||
><br />
|
||||
They show up in the closet and can be removed from or added to the
|
||||
baby by hand.
|
||||
</p>
|
||||
|
||||
<p>Download the <a href="whitediaper.zip">proper white diaper</a>
|
||||
overwrites the grubby-looking grey default<br>
|
||||
Download the <a href="Tailsfixedfornaturists.zip">fixed tails</a> which
|
||||
will allow you to use the "naturist" diapers further down this page with
|
||||
the tails. Read the Readme file for more info.</p>
|
||||
<p>
|
||||
<img src="RubyEarrings.gif" title="Ruby Earrings" />
|
||||
<img src="GoldEarrings.gif" title="Gold Earrings" /><br />
|
||||
<a href="RubyEarrings.zip">Ruby Earrings</a>,
|
||||
<a href="GoldEarrings.zip">Gold Earrings</a>
|
||||
</p>
|
||||
|
||||
<p><img src="exoticbubbles.gif" title="My Flower Crown"><br>
|
||||
<a href="exoticbubblepants.zip">My "Exotic bubble pants"</a>, <a
|
||||
href="normalbubbles.zip">My "normal" bubble pants and
|
||||
hats</a><br>
|
||||
They show up in the closet and can be removed from or added to the baby
|
||||
by hand.</p>
|
||||
<p>
|
||||
<img src="Tiswaswithcrown.gif" title="My Flower Crown" /><br />
|
||||
<a href="MyFlowerCrown.zip">My Flower Crown</a>
|
||||
</p>
|
||||
|
||||
<p><img src="RubyEarrings.gif" title="Ruby Earrings">
|
||||
<img src="GoldEarrings.gif" title="Gold Earrings"><br>
|
||||
<a href="RubyEarrings.zip">Ruby Earrings</a>, <a
|
||||
href="GoldEarrings.zip">Gold Earrings</a></p>
|
||||
<p>
|
||||
<img src="oxygentube.gif" title="Oxygen Tube" />
|
||||
<img src="oxygentubepreemie.gif" title="Oxygen Tube" /><br />
|
||||
<a href="oxygentube.zip">Oxygen Tube</a>,
|
||||
<a href="oxygentubepreemie.zip">"Preemie" Oxygen Tube</a><br />
|
||||
<span class="normal"
|
||||
>Note: the oxygen tube should work with most babyz -- whether mini,
|
||||
maxi, normal, or growers.<br />
|
||||
But there may be some, like Kim's "Preemies", where you will find
|
||||
that it looks enormous. Download the "preemie" version if you have
|
||||
that problem. Both versions show up separately and do not overwrite
|
||||
each other.</span
|
||||
>
|
||||
</p>
|
||||
|
||||
<p><img src="Tiswaswithcrown.gif" title="My Flower Crown"><br>
|
||||
<a href="MyFlowerCrown.zip">My Flower Crown</a></p>
|
||||
<p>
|
||||
<a href="Browngirldiaper.zip" title="Brown Girl Diaper"
|
||||
>Brown Girl Diaper</a
|
||||
>,
|
||||
<a href="Paleboydiaper.zip" title="Pale Boy Diaper">Pale Boy Diaper</a
|
||||
>, <a href="Palegirldiaper.zip">Pale Girl Diaper</a><br />
|
||||
<span
|
||||
class="missing-asset normal"
|
||||
title="Browng_Paleb_Paleflesh0"
|
||||
style="width: 226px; height: 66px"
|
||||
>missing:<br />
|
||||
Browng_Paleb_Paleflesh.gif</span
|
||||
>
|
||||
</p>
|
||||
|
||||
<p><img src="oxygentube.gif" title="Oxygen Tube">
|
||||
<img src="oxygentubepreemie.gif" title="Oxygen Tube"><br>
|
||||
<a href="oxygentube.zip">Oxygen Tube</a>, <a
|
||||
href="oxygentubepreemie.zip">"Preemie" Oxygen Tube</a><br>
|
||||
<span class="normal">Note: the oxygen tube should work with most babyz
|
||||
-- whether mini, maxi, normal, or growers.<br>
|
||||
But there may be some, like Kim's "Preemies", where you will find that
|
||||
it looks enormous. Download the "preemie" version if you have that
|
||||
problem. Both versions show up separately and do not overwrite each
|
||||
other.</span></p>
|
||||
<p>
|
||||
<a href="Chocolategirldiaper.zip">Chocolate Girl Diaper</a>,
|
||||
<a href="Creamgirldiaper.zip">Cream Girl Diaper</a>,
|
||||
<a href="Robinbrowngirldiaper.zip">Robin-brown Girl Diaper</a><br />
|
||||
<img src="Chocog_Creamg_Robing.gif" title="Chocog_Creamg_Robing0" />
|
||||
</p>
|
||||
|
||||
<p><a href="Browngirldiaper.zip" title="Brown Girl Diaper">Brown Girl
|
||||
Diaper</a>, <a href="Paleboydiaper.zip" title="Pale Boy Diaper">Pale
|
||||
Boy Diaper</a>, <a href="Palegirldiaper.zip">Pale Girl
|
||||
Diaper</a><br>
|
||||
<span class="missing-asset normal" title="Browng_Paleb_Paleflesh0"
|
||||
style="width: 226px; height: 66px;">missing:<br>
|
||||
Browng_Paleb_Paleflesh.gif</span></p>
|
||||
<p>
|
||||
<a href="Darkgirldiaper.zip">Dark Girl Diaper</a>,
|
||||
<a href="Blackgirldiaper.zip">Black Girl Diaper</a>,
|
||||
<a href="Mochagirldiaper.zip">Mocha Girl Diaper</a><br />
|
||||
<img src="Darkg_Blackg_Mochag.gif" title="Darkg_Blackg_Mochag0" />
|
||||
</p>
|
||||
|
||||
<p><a href="Chocolategirldiaper.zip">Chocolate Girl Diaper</a>, <a
|
||||
href="Creamgirldiaper.zip">Cream Girl Diaper</a>, <a
|
||||
href="Robinbrowngirldiaper.zip">Robin-brown Girl Diaper</a><br>
|
||||
<img src="Chocog_Creamg_Robing.gif" title="Chocog_Creamg_Robing0"></p>
|
||||
<p>
|
||||
<a href="Flameboydiaper.zip">Flame Boy Diaper</a>,
|
||||
<a href="Flamegirldiaper.zip">Flame Girl Diaper</a>,
|
||||
<a href="Ghostgirldiaper.zip">Ghost Girl Diaper</a><br />
|
||||
<img src="Flameb_Flameg_Ghostg.gif" title="Flameb_Flameg_Ghostg0" />
|
||||
</p>
|
||||
|
||||
<p><a href="Darkgirldiaper.zip">Dark Girl Diaper</a>, <a
|
||||
href="Blackgirldiaper.zip">Black Girl Diaper</a>, <a
|
||||
href="Mochagirldiaper.zip">Mocha Girl Diaper</a><br>
|
||||
<img src="Darkg_Blackg_Mochag.gif" title="Darkg_Blackg_Mochag0"></p>
|
||||
<p>
|
||||
<a href="Tailgirldarkdiaper.zip">Monkeytail Diaper</a>,
|
||||
<a href="Ookgirldiaper.zip">Ookape Diaper</a>,
|
||||
<a href="Monkgirldiaper.zip">Monkey Girl Diaper</a><br />
|
||||
<img
|
||||
src="Monkeytail_Ookape_Monkeyg.gif"
|
||||
title="Monkeytail_Ookape_Monkeyg0"
|
||||
/>
|
||||
</p>
|
||||
|
||||
<p><a href="Flameboydiaper.zip">Flame Boy Diaper</a>, <a
|
||||
href="Flamegirldiaper.zip">Flame Girl Diaper</a>, <a
|
||||
href="Ghostgirldiaper.zip">Ghost Girl Diaper</a><br>
|
||||
<img src="Flameb_Flameg_Ghostg.gif" title="Flameb_Flameg_Ghostg0"></p>
|
||||
<p>
|
||||
<a href="Silvergirldiaper.zip">Silver (Frostedmalt) Girl Diaper</a>,
|
||||
<a href="Tailblondediaper.zip">Blondetail Diaper</a>,
|
||||
<a href="Tailgolddiaper.zip">Goldtail Diaper</a><br />
|
||||
<img
|
||||
src="Silverg(frostedmalt)_Blondetail_Goldtail.gif"
|
||||
title="Silvergfrostedmalt_Blondetail_Goldtail0"
|
||||
/>
|
||||
</p>
|
||||
|
||||
<p><a href="Tailgirldarkdiaper.zip">Monkeytail Diaper</a>, <a
|
||||
href="Ookgirldiaper.zip">Ookape Diaper</a>, <a
|
||||
href="Monkgirldiaper.zip">Monkey Girl Diaper</a><br>
|
||||
<img src="Monkeytail_Ookape_Monkeyg.gif"
|
||||
title="Monkeytail_Ookape_Monkeyg0"></p>
|
||||
<p>
|
||||
<a href="Redgirldiaper.zip">Red Girl Diaper</a>,
|
||||
<a href="Greengirldiaper.zip">Green Diaper</a><br />
|
||||
<img src="Redg_Greeng_none.gif" title="Redg_Greeng_none0" />
|
||||
</p>
|
||||
|
||||
<p><a href="Silvergirldiaper.zip">Silver (Frostedmalt) Girl Diaper</a>, <a
|
||||
href="Tailblondediaper.zip">Blondetail Diaper</a>, <a
|
||||
href="Tailgolddiaper.zip">Goldtail Diaper</a><br>
|
||||
<img src="Silverg(frostedmalt)_Blondetail_Goldtail.gif"
|
||||
title="Silvergfrostedmalt_Blondetail_Goldtail0"></p>
|
||||
|
||||
<p><a href="Redgirldiaper.zip">Red Girl Diaper</a>, <a
|
||||
href="Greengirldiaper.zip">Green Diaper</a><br>
|
||||
<img src="Redg_Greeng_none.gif" title="Redg_Greeng_none0"></p>
|
||||
|
||||
<p><a href="HarryPotterglasses.zip">Harry Potter Glasses</a>,<br>
|
||||
<img src="HPGlasses1.gif" title="Harry Potter glasses"></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<p>
|
||||
<a href="HarryPotterglasses.zip">Harry Potter Glasses</a>,<br />
|
||||
<img src="HPGlasses1.gif" title="Harry Potter glasses" />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,92 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- from source -->
|
||||
<title>Hex edited babyz clothes</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="bold purple bigger center">
|
||||
<p>Hex edited babyz clothes<br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
</div>
|
||||
|
||||
<div class="border-outer border-green">
|
||||
<div class="border-inner border-green green center bold bigger img-border">
|
||||
<p>These are Carolyn's Babyz clothes. You need to extract the .clo file
|
||||
into your Resource\Clothes directory in your Babyz program directory.
|
||||
Names of the "naturist" diapers are listed in the order they are on the
|
||||
shelf.</p>
|
||||
|
||||
<p>Download the <a href="whitediaper.zip">proper white diaper</a>
|
||||
overwrites the grubby-looking grey default<br>
|
||||
Download the <a href="Tailsfixedfornaturists.zip">fixed tails</a> which
|
||||
will allow you to use the "naturist" diapers further down this page with
|
||||
the tails. Read the Readme file for more info.</p>
|
||||
|
||||
<p><img src="exoticbubbles.gif" title="My Flower Crown"><br>
|
||||
<a href="exoticbubblepants.zip">My "Exotic bubble pants"</a>, <a href="normalbubbles.zip">My "normal" bubble pants and
|
||||
hats</a><br>
|
||||
They show up in the closet and can be removed from or added to the baby
|
||||
by hand.</p>
|
||||
|
||||
<p><img src="RubyEarrings.gif" title="Ruby Earrings">
|
||||
<img src="GoldEarrings.gif" title="Gold Earrings"><br>
|
||||
<a href="RubyEarrings.zip">Ruby Earrings</a>, <a href="GoldEarrings.zip">Gold Earrings</a></p>
|
||||
|
||||
<p><img src="Tiswaswithcrown.gif" title="My Flower Crown"><br>
|
||||
<a href="MyFlowerCrown.zip">My Flower Crown</a></p>
|
||||
|
||||
<p><img src="oxygentube.gif" title="Oxygen Tube">
|
||||
<img src="oxygentubepreemie.gif" title="Oxygen Tube"><br>
|
||||
<a href="oxygentube.zip">Oxygen Tube</a>, <a href="oxygentubepreemie.zip">"Preemie" Oxygen Tube</a><br>
|
||||
<span class="normal">Note: the oxygen tube should work with most babyz
|
||||
-- whether mini, maxi, normal, or growers.<br>
|
||||
But there may be some, like Kim's "Preemies", where you will find that
|
||||
it looks enormous. Download the "preemie" version if you have that
|
||||
problem. Both versions show up separately and do not overwrite each
|
||||
other.</span></p>
|
||||
|
||||
<p><a href="Browngirldiaper.zip" title="Brown Girl Diaper">Brown Girl
|
||||
Diaper</a>, <a href="Paleboydiaper.zip" title="Pale Boy Diaper">Pale
|
||||
Boy Diaper</a>, <a href="Palegirldiaper.zip">Pale Girl
|
||||
Diaper</a><br>
|
||||
<span class="missing-asset normal" title="Browng_Paleb_Paleflesh0" style="width:226px;height:66px;">missing:<br>
|
||||
Browng_Paleb_Paleflesh.gif</span></p>
|
||||
|
||||
<p><a href="Chocolategirldiaper.zip">Chocolate Girl Diaper</a>, <a href="Creamgirldiaper.zip">Cream Girl Diaper</a>, <a href="Robinbrowngirldiaper.zip">Robin-brown Girl Diaper</a><br>
|
||||
<img src="Chocog_Creamg_Robing.gif" title="Chocog_Creamg_Robing0"></p>
|
||||
|
||||
<p><a href="Darkgirldiaper.zip">Dark Girl Diaper</a>, <a href="Blackgirldiaper.zip">Black Girl Diaper</a>, <a href="Mochagirldiaper.zip">Mocha Girl Diaper</a><br>
|
||||
<img src="Darkg_Blackg_Mochag.gif" title="Darkg_Blackg_Mochag0"></p>
|
||||
|
||||
<p><a href="Flameboydiaper.zip">Flame Boy Diaper</a>, <a href="Flamegirldiaper.zip">Flame Girl Diaper</a>, <a href="Ghostgirldiaper.zip">Ghost Girl Diaper</a><br>
|
||||
<img src="Flameb_Flameg_Ghostg.gif" title="Flameb_Flameg_Ghostg0"></p>
|
||||
|
||||
<p><a href="Tailgirldarkdiaper.zip">Monkeytail Diaper</a>, <a href="Ookgirldiaper.zip">Ookape Diaper</a>, <a href="Monkgirldiaper.zip">Monkey Girl Diaper</a><br>
|
||||
<img src="Monkeytail_Ookape_Monkeyg.gif" title="Monkeytail_Ookape_Monkeyg0"></p>
|
||||
|
||||
<p><a href="Silvergirldiaper.zip">Silver (Frostedmalt) Girl Diaper</a>, <a href="Tailblondediaper.zip">Blondetail Diaper</a>, <a href="Tailgolddiaper.zip">Goldtail Diaper</a><br>
|
||||
<img src="Silverg(frostedmalt)_Blondetail_Goldtail.gif" title="Silvergfrostedmalt_Blondetail_Goldtail0"></p>
|
||||
|
||||
<p><a href="Redgirldiaper.zip">Red Girl Diaper</a>, <a href="Greengirldiaper.zip">Green Diaper</a><br>
|
||||
<img src="Redg_Greeng_none.gif" title="Redg_Greeng_none0"></p>
|
||||
|
||||
<p><a href="HarryPotterglasses.zip">Harry Potter Glasses</a>,<br>
|
||||
<img src="HPGlasses1.gif" title="Harry Potter glasses"></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,487 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Special Babyz stuff for editing</title>
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center">
|
||||
<p class="big">
|
||||
<a href="#REF">Fix 'n' Ref</a>...
|
||||
<a href="#EDT">Easy Babyz</a>...
|
||||
<a href="#UTL">Edit Info</a>...
|
||||
<a href="#SCN">Easy Scenes</a>...
|
||||
<a href="#TOY">Toyz/Clo</a>...
|
||||
<a href="#BAB">Babyfile edit</a>...
|
||||
</p>
|
||||
|
||||
<p class="big">Go to <a href="/carolyns_creations/tutorials/tutorials/">my Main tutorial
|
||||
page</a><br>
|
||||
for general stuff and colour charts, Resource Hacker tips, LNZ Pro 2 tips
|
||||
etc<br>
|
||||
Go to <a href="/carolyns_creations/tutorials/LNZdetails/">my LNZ breakdown chunks</a><br>
|
||||
for some very useful information on the LNZ files which make up the core of
|
||||
your new baby.<br>
|
||||
<a href="/carolyns_creations/specials/nicholastools/">Go here for info on Nicholas' Babyza,
|
||||
Tinker, and LNZPro 2</a><br>
|
||||
<span class="normal">Not created by me, obviously -- but I've helped with
|
||||
information and files, and I feel very protective of Nicholas. He's a
|
||||
National Treasure :-)</span></p>
|
||||
|
||||
<p><b>NOTE</b> My tutorials mostly tell you how to edit in the days before
|
||||
<a href="/carolyns_creations/specials/nicholastools/" title="Nicholas' utilities">Nicholas'
|
||||
tools</a> were created for us all. I keep the tutorials and howtos here
|
||||
anyway because they are still useful. But wherever you see mention of
|
||||
Notepad, you can use the same info when editing the LNZ or CLZ section in
|
||||
LNZPro. And <a href="/carolyns_creations/tutorials/LNZdetails/">my LNZ info chunks </a>are
|
||||
still invaluable.</p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/tutorials/hexerbaby/">The special hexer baby</a>
|
||||
-- thanks, <a title="http://rgn.riverpebble.net" class="defunct" target="_TOP">L41N</a>!<br>
|
||||
This is L41N's brilliant idea. She sent me a hexer baby which I tidied up
|
||||
and added to with extra comments, a how-to page etc.</p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/babyz/sphinx/">Go here for Sphinx's Special
|
||||
tools</a><br>
|
||||
<span class="normal">Also not created by me, obviously :-) but Sphinx has
|
||||
generously offered them to the BC and, since I have fond memories of her
|
||||
jabbing, poking and encouraging me until I made many of my Babyz
|
||||
discoveries, I am very happy to have something of hers here.</span></p>
|
||||
|
||||
<p><span class="big">IMPORTANT NOTE:</span><br>
|
||||
Some files that we hexers want to edit are .DLL files, such as the large
|
||||
BabyzRez.dll. Windows, by default, has files of this type "hidden" --
|
||||
presumably as some kind of safety feature, but in our case we need to see
|
||||
them. So if you cannot see them on your machine, open My Computer or Windows
|
||||
Explorer, choose View and Options, and then under View make sure that "Show
|
||||
all files" is ticked. While you're about it, un-tick "Hide MS-DOS file
|
||||
extensions", because that's a nuisance too.</p>
|
||||
|
||||
<!-- Fixes & Ref ---------------------------------------------------------->
|
||||
<p class="bigger purple"><b id="REF">Babyz fixes, and Reference
|
||||
items</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br></p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/babyz/vvccr/">ViaVoice fix</a><br>
|
||||
<a href="/carolyns_creations/babyz/babyzxpsoundfix/">Sound fixed files for Windows XP</a><br>
|
||||
Now that Nicholas has made Petza fix the sound problem while the game is
|
||||
running, you don't really need this soundfix. But I'm leaving it up for
|
||||
anyone who cannot get petza to work for them or wants alternative files for
|
||||
the "fooler". I have the link to Nicholas' site on my "Nicholas' Tools"
|
||||
page.<br>
|
||||
|
||||
<a href="BabyzWithMenu.zip">Modified Exe for Playpen access</a><br>
|
||||
<span class="normal">This is my ongoing testbed .exe file. My hope is that I
|
||||
will eventually be able to get the game to accept more playscenes, by
|
||||
avoiding the need to use the house icon. As yet in my game I have not
|
||||
been able to get it to work for the Attic and Nursery, so have not got as
|
||||
far as further scenes. I'm producing it for you in case you can do better
|
||||
with it. It does have one feature that you might enjoy; the Playpen and
|
||||
Desktop "scenes" are both usable. It overwrites your original, so please
|
||||
please make sure you put yours somewhere safe before trying mine.</span><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/BabyzColours/">My Colour Chart for Babyz hexing</a><br>
|
||||
<a href="/carolyns_creations/tutorials/BabyzFreezeFix/">How to fix problems with Babyz freezing
|
||||
or crashing</a><br>
|
||||
<a href="/carolyns_creations/tutorials/BabyzSliderBrains/">Brain-sliders for your Babyz' health
|
||||
and happiness</a><br>
|
||||
<a href="/carolyns_creations/tutorials/BabyzBallList/">Babyz Ballz list</a><br>
|
||||
|
||||
<!-- Fooler/Full Game ----------------------------------------------------->
|
||||
<a href="BabyzrezSafeCopy.zip">Backup copy of un-edited BabyzRez.dll</a><br>
|
||||
<span class="normal">For people who don't use my easy-edit package to create
|
||||
new babyz. If you've messed the thing up in Resource Hacker or a hex
|
||||
editor and don't want to have to re-install, then this is the download
|
||||
for you.</span><br>
|
||||
|
||||
<a href="babyzCDfix.zip">A fix for when that annoying CD message pops
|
||||
up</a><br>
|
||||
<span class="normal">...and you don't want to either have to keep putting
|
||||
the CD in the drive or re-setting the game back to its defaults.</span></p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/babyz/babyzfooler/"><b>Babyz Demo
|
||||
Fooler.</b></a><br>
|
||||
<span class="normal">A partial solution for people who cannot buy the
|
||||
game anywhere; this fools the demo into giving you better play.</span></p>
|
||||
|
||||
<p>And for people who have lost their CD and cannot find another anywhere,
|
||||
<a href="/carolyns_creations/babyz/babyzfix/">here is a page</a> where you can find a backup
|
||||
ISO image of the complete game and an installation fix. The game is zipped
|
||||
of course, so you would need to unzip it and either burn it to a CD or mount
|
||||
it with image-mounting software. If you don't know what that means, just
|
||||
burn it to a CD.</p>
|
||||
|
||||
<p>And, if you're running Windows (blech) XP or (argh blech) Vista, I
|
||||
strongly advise you to get Nicholas' Petza/Babyza. You can get the link to
|
||||
his site via my "Nicholas' Tools" page.</p>
|
||||
|
||||
<!-- Easy-Edit ------------------------------------------------------------>
|
||||
<p class="big"><span id="EDT">Ultra-easy editing to create new
|
||||
babyz</span><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
|
||||
|
||||
<a href="BabyzEditingMadeEasy.zip">Ultra easy New-babyz editing "howto"
|
||||
package</a><br>
|
||||
<a href="BabyzRezForEasy-edits.zip">The Rez.dll plus .lnz from Ultra Easy
|
||||
package</a><br>
|
||||
<span class="normal">Only download the Rez.dll version if you either cannot
|
||||
change the single byte yourself or the little patch from the "howto"
|
||||
package doesn't work. The zipfile is 5.5 megabytes in size.</span></p>
|
||||
|
||||
<p class="big"><span class="normal">(Take a look also at my LNZ file
|
||||
breakdown chunks <a href="/carolyns_creations/tutorials/LNZdetails/">here</a>, they really
|
||||
should be helpful.)<br>
|
||||
This is part of my "Ultra-easy" editing range; this package includes all
|
||||
that you need in order to create new babyz easily, using only Notepad,
|
||||
Wordpad and either Windows Explorer or My Computer! Woo-hoo! NOTE: You do
|
||||
have to read the included text files carefully and follow the instructions,
|
||||
or the method won't work for you. Click <a href="BabyzExtLnz2.jpg">here
|
||||
</a>to see a screengrab of my Babyz directories in Windows Explorer, so
|
||||
you can see where the .lnz files are supposed to go if you're confused.
|
||||
The icon beside the .lnz files are Notepad ones because I used Windows
|
||||
Explorer's View -> Options -> File Types menu item to Associate the .lnz
|
||||
extension with Notepad.exe.</span><br>
|
||||
|
||||
This next lot is for people who want to edit items such as the bubbles from
|
||||
the bubble machine. You can only change those by editing them in the
|
||||
BabyzRez.dll file, and all the in-game bubbles will be changed if you do --
|
||||
bath bubbles etc. So if people want your bubbles they will have to download
|
||||
the external-filmstrip files.<br>
|
||||
|
||||
<a href="externalfilmstripbabyzrez.zip">The Rez.dll prepared for external
|
||||
filmstrips</a><br>
|
||||
This is a 5.5 megabyte download and is just the .dll file with two bytes
|
||||
changed to make the game look for filmstrips externally. You can change the
|
||||
bytes yourself instead if you wish, but whichever you choose, you absolutely
|
||||
need to download the filmstrips.<br>
|
||||
|
||||
<a href="Babyzfilmstripfiles.zip">The external filmstrips</a><br>
|
||||
|
||||
This next one is a .dll which has been prepared to use external lnz as well
|
||||
as external filmstrips. If you download it, make sure to download also the
|
||||
external filmstrips zip which also contains the required external lnz. <a href="externalfilmstripandlnzbabyzrez.zip">The Rez.dll prepared for
|
||||
external filmstrips</a></p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/tutorials/fatima/">Ultra easy New-babyz
|
||||
Egyptian-pharaoh eyes, bangs, single pigtail with bow</a><br>
|
||||
This is actually the complete .lnz for a baby, for use with my Ultra easy
|
||||
New-babyz editing "howto".</p>
|
||||
|
||||
<p><a href="Fatima.zip" title="Fatima">
|
||||
<img src="Fatima.gif" alt="Flowers etc on a babyz">
|
||||
</a></p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/tutorials/faedruna/">Ultra easy New-babyz
|
||||
Flowers, Long hair Etc</a><br>
|
||||
This is actually the complete .lnz for a baby, for use with my Ultra easy
|
||||
New-babyz editing "howto", including instructions for customising it.<br>
|
||||
<a href="Faedrune.zip" title="Faedrune">
|
||||
<img src="Faedruna.gif" alt="Flowers etc on a babyz">
|
||||
</a><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/BabyzWingzCodes/">Ultra easy New-babyz Wingz</a><br>
|
||||
<img src="Check.gif" alt="wingz on babyz">
|
||||
</p>
|
||||
|
||||
<!-- Edit Info / Special -------------------------------------------------->
|
||||
<p class="big"><span id="UTL">Various Information for making special new
|
||||
babyz</span><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
|
||||
|
||||
This is for editing the .lnz files; my <a href="BabyzEditingMadeEasy.zip">easy-edit kit</a> along with
|
||||
Notepad.exe is how I used to make new babyz, and I recommend it to you.<br>
|
||||
Nowadays I also use the ever-more-fantastic LNZPro, either with my easy-edit
|
||||
kits or simply to rehex one of my existing babyz.<br>
|
||||
<a href="/carolyns_creations/tutorials/hexerbaby/">Here's a special hexer baby</a> for
|
||||
you to use with LNZPro -- thanks, <a title="http://rgn.riverpebble.net" class="defunct" target="_TOP">L41N</a>,
|
||||
for the great idea and the base
|
||||
baby! This method is also <b>highly</b> recommended.<br>
|
||||
As I say above, please also take a look at my LNZ file breakdown chunks <a href="/carolyns_creations/tutorials/LNZdetails/">here</a>, they really should help you
|
||||
understand the .lnz files.</p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/tutorials/ThinFatBaby/">How to hex a babyz that's
|
||||
permanently skinny (or fat)</a><br>
|
||||
<a href="/carolyns_creations/tutorials/Polygons4BabyzHowto/">How to use Polygons in Babyz
|
||||
hexing</a><br>
|
||||
<a href="/carolyns_creations/tutorials/ClothingToBreed/">How to add stuff from clothing items
|
||||
to your babyz</a><br>
|
||||
|
||||
<a href="Pepebabyz.zip">
|
||||
<img src="Pepebabyz.gif" alt="Pepe Babyz">
|
||||
</a><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/Linez4BabyzHowto/">How to use Linez in Babyz
|
||||
hexing</a><br>
|
||||
<a href="/carolyns_creations/tutorials/HowToHexNewBabyz/">Making new babyz</a><br>
|
||||
<a href="/carolyns_creations/tutorials/BabyzTeethEnabling/">How to "enable" the original
|
||||
teeth</a><br>
|
||||
<a href="/carolyns_creations/tutorials/PreemieBabiesHowto/">Creating Preemie babyz</a><br>
|
||||
<a href="/carolyns_creations/tutorials/AddBallz/">Moving Add Ballz around</a><br>
|
||||
<a href="/carolyns_creations/tutorials/xyz/">x, y, z positions -- how to figure it out</a><br>
|
||||
<a href="/carolyns_creations/tutorials/BabyzTextures/">changing textures in Babyz, also
|
||||
kiss-marks</a><br>
|
||||
|
||||
<a href="HexingBabyzHairEyelashesAndGrowthAug2003.zip">Hexing Babyz Hair,
|
||||
Eyelashes, and growth</a><br>
|
||||
<span class="normal">Updated August 2003. This time not on .baby files (see
|
||||
below, "Various Information for Editing adopted .Baby files", for info on
|
||||
making already-adopted babyz grow). This is for people who want to adopt
|
||||
babyz that will grow without alteration. Includes some info on changing
|
||||
body colours. Also includes example babyz and .lnz sections.</span></p>
|
||||
|
||||
<p><img src="Babyzgrow2.gif" alt="growing babyz"></p>
|
||||
|
||||
<p class="big"><a href="RemovingBabyzOrPetzLegsEtcApr2003.zip">Making a Baby
|
||||
or Pet with missing limbs.</a><br>
|
||||
<span class="normal">and before anyone sends me hate-mail for this one,
|
||||
please read the readme. This tutorial is intended as a service for people
|
||||
who need to relate to virtual playmates who do not have the "body
|
||||
perfect".</span><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/BabyzFAQ/">Hair FAQs</a></p>
|
||||
|
||||
<p class="big"><span id="SCN">My Playscene Easy-edit Kits</span><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
|
||||
|
||||
NOTE: Since I made these, Nicholas has made the Tinker and LNZPro 2
|
||||
programmes. You can download them via my Nicholas Tools page, and for info
|
||||
on how to use them for this purpose <a href="/carolyns_creations/tutorials/TinkerAndLNZPro2Tips/">click here</a><br>
|
||||
Specifically on making playscenes show up separately using LNZPro, <a href="/carolyns_creations/tutorials/BabyzSceneSeperate/">click here.</a><br>
|
||||
|
||||
<a href="KitchenExternal.zip">A kit for making new kitchen
|
||||
Playscenes</a><br>
|
||||
<span class="normal">part of my "Ultra-easy" editing range. This particular
|
||||
one has the filmstrips separated out, but I have not had time to put the
|
||||
bitmap headers on them for you.</span><br>
|
||||
|
||||
<a href="ClothesclosetExternal.zip">A kit for making new Clothes Closet
|
||||
Playscenes</a><br>
|
||||
<span class="normal">part of my "Ultra-easy" editing range. This particular
|
||||
one has the filmstrips separated out, but I have not had time to put the
|
||||
bitmap headers on them for you.</span><br>
|
||||
|
||||
<a href="FamilyroomExternal.zip">A kit for making new Family Room
|
||||
Playscenes</a><br>
|
||||
<span class="normal">part of my "Ultra-easy" editing range.</span>
|
||||
|
||||
<a href="AtticExternal.zip">An easy-edit kit for making new Attic
|
||||
Playscenes</a><br>
|
||||
<span class="normal">part of my "Ultra-easy" editing range.</span>
|
||||
|
||||
<a href="BackyardExternal.zip">An easy-edit kit for making new Back Yard
|
||||
Playscenes</a><br>
|
||||
<span class="normal">part of my "Ultra-easy" editing range.</span>
|
||||
|
||||
<a href="PlayroomExternal.zip">An easy-edit kit for making new Playroom
|
||||
Playscenes</a><br>
|
||||
<span class="normal">part of my "Ultra-easy" editing range.</span>
|
||||
|
||||
<a href="NurseryExternal.zip">A kit for making new nursery
|
||||
Playscenes</a><br>
|
||||
<span class="normal">part of my "Ultra-easy" editing range; this package
|
||||
includes the playscene and a load of external files which you do need to
|
||||
put in the correct places before the game will accept it. Please read the
|
||||
included info carefully. Note that if you want the window area to look
|
||||
right, you'll need to either change the background in the affected area
|
||||
or you'll need to edit the window filmstrips. If you want my <a href="/carolyns_creations/babyz/BabyzPlayscene/">Secret Wood Playscene</a>, you'll need
|
||||
to install this "change your nursery" kit first. Click <a href="ExternalStuffWhereItGoes.jpg">here </a>to see a screengrab of
|
||||
my Babyz directories in Windows Explorer, so you can see where the Nursery's
|
||||
external files are supposed to go if you're confused.</span>
|
||||
If you're having trouble working out how to fix problems with the
|
||||
background<br>
|
||||
<span class="normal">being messed up in places, or you need help with
|
||||
editing the filmstrips, <b>download <a href="FilesToHelpSceneEditing.zip">this file</a> also</b> -- it is
|
||||
specific to Nursery-based scenes, but with any luck it'll help you to
|
||||
understand how to deal with others too.</span></p>
|
||||
|
||||
<p><span class="big"><a href="EditingBabyzSecretPlaypen.zip">Changing your
|
||||
Babyz "secret" Playpen background</a></span><br>
|
||||
Note that this tells you to edit your game's main .exe file. It also gives a
|
||||
hint that you can edit other graphics within the .exe.<br>
|
||||
For people who have a later version of the game than mine, you may prefer to
|
||||
use:<br>
|
||||
<span class="big"><a href="/carolyns_creations/tutorials/BabyzSecretPlaypen/">this simpler
|
||||
method</a> for changing the playpen background.<br></span>
|
||||
Works with later versions of the game than mine. If this doesn't work for
|
||||
you, either get a later version of the Babyz.exe -- my "modified" one, for
|
||||
instance, or there may be one available at Daniel Wright's <a title="http://www.dmwright.com/babyz/" class="defunct" target="_top">The
|
||||
Babyz Crib</a> -- or check out my "howto" above on editing the .exe.</p>
|
||||
|
||||
<!-- Toy Editing ---------------------------------------------------------->
|
||||
<p class="big"><span id="TOY">Filmstrip editing, Toyz, Toychests, and
|
||||
Clothes</span><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
|
||||
<p class="big">NOTE: Since I made the easy-edit kits, Nicholas has made the
|
||||
Tinker and LNZPro 2 programmes. You can download them via my Nicholas Tools
|
||||
page, and for info on how to use them for this purpose <a href="/carolyns_creations/tutorials/TinkerAndLNZPro2tips/">click here</a></p>
|
||||
|
||||
<p class="big">
|
||||
<a href="/carolyns_creations/tutorials/MakingCrackersShowSeparately/">Extra help; making your
|
||||
own crackers come out of the box</a><br>
|
||||
<a href="CarrotsBagExternal.zip">The Carrot bag mentioned in the cracker-box
|
||||
tut</a><br>
|
||||
|
||||
<img src="Carrotsbag.gif" alt="carrots bag"><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/NonOverwriteClothes/">Extra help on non-overwriting
|
||||
clothes etc</a><br>
|
||||
<a href="/carolyns_creations/tutorials/SpoonBlobColour/">Changing the jar and bowl food-blob
|
||||
colour on the spoon</a><br>
|
||||
<a href="SipcupEasyedit.zip">Easy-edit kit for making your own Sippy
|
||||
cups</a><br>
|
||||
|
||||
<a href="redchestEasy-edit.zip">A kit for making your own "Red"
|
||||
Toychests</a><br>
|
||||
<span class="normal">Everything is here for your easy-editing pleasure,
|
||||
except that I've not put the bitmap headers on the chopped filmstrips. I
|
||||
thought I'd leave that bit of fun for you... actually I had no time to do
|
||||
it :-)</span><br>
|
||||
|
||||
<a href="HippochestEasy-edit.zip">A kit for making your own Hippo
|
||||
Toychests</a><br>
|
||||
<span class="normal">Everything is here for your easy-editing pleasure,
|
||||
except that I've not put the bitmap headers on the chopped filmstrips. I
|
||||
thought I'd leave that bit of fun for you... actually I had no time to do
|
||||
it :-)</span><br>
|
||||
|
||||
<a href="BabyzFrogChestEasy-edit.zip">A kit for making your own
|
||||
Toychests</a><br>
|
||||
<span class="normal">This is an external-filmstrip easy-edit package. Those
|
||||
who are keen to learn more about filmstrip editing may also wish to
|
||||
download <a href="BabyzFrogChestFilmstripSections.zip">this second
|
||||
zipfile</a> with its split-filmstrip and howto, but those who just
|
||||
want as much done for them as possible will wish to download <a href="BabyzFrogChestFilmstripBitmaps.zip">this third zipfile</a> with
|
||||
ready-prepared bitmaps instead of the second zipfile.</span><br>
|
||||
|
||||
<a href="gunkchest.zip">My Gunk Toychest</a><br>
|
||||
<img src="Gunkchest.gif" alt="Gunk toychest"><br>
|
||||
<span class="normal">Think it's pretty dreadful?? Well, consider yourselves
|
||||
lucky that I didn't drive you potty with my "gone" toychest *cackles
|
||||
crazily*</span><br>
|
||||
|
||||
<a href="KidpoolmakingKit.zip">A kit for making your own kiddie
|
||||
pools</a><br>
|
||||
<span class="normal">This is a set of filmstrips for you to edit and
|
||||
instructions for re-inserting them into the bathtub toy.</span><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/HiddenAndDifficultToysInPetz3-5andBabyz/">Un-hiding and
|
||||
giving shelf graphics to difficult toyz</a><br>
|
||||
<span class="normal">This includes the petz games, but there is very
|
||||
important info for Babyz. It shows how you can use your hex editor to
|
||||
make "hidden" toyz show up properly on shelves in all the games.</span><br>
|
||||
|
||||
<a href="babyfilmstrip.zip">Editing Babyz Filmstrips (advanced)</a><br>
|
||||
<span class="normal">Toyz editing, clothes showing up separately, etc, for
|
||||
Babyz.</span><br>
|
||||
|
||||
<a href="filmstriphexpainting.zip">Simple filmstrip editing</a><br>
|
||||
<span class="normal">hex-painting (colouring) for toyz, clothes on shelf,
|
||||
etc. Applies to all the games including Babyz.</span><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/BabyzClothes/">Hexing babyz clothes</a><br>
|
||||
<a href="/carolyns_creations/tutorials/PositionOnShelf/">Position of clothes etc on
|
||||
shelves</a><br>
|
||||
<span class="normal">People who get puzzled as to how the game knows where
|
||||
to put clothing items etc, and how to fit their own in where they wish,
|
||||
this is for you.</span><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/ToyzInSpecialPlaces/">Making Hidden and special-place
|
||||
toyz</a><br>
|
||||
<span class="normal">This one shows how easy it is to make your own "hidden"
|
||||
toyz and make them appear in very special places, such as the floor of
|
||||
any chosen scene or the fridge etc. Click <a href="orangetexturedicecup.zip">here for my example Icecup</a> toy; if
|
||||
you follow the installation instructions, the toy should show up only in
|
||||
the freezer compartment.</span>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/ChangingPointersInFiles/">Changing "Pointers" in
|
||||
files</a><br>
|
||||
<span class="normal">For people who get puzzled about why clothes or toyz
|
||||
don't look right on the shelves after filmstrips etc have been
|
||||
changed.</span></p>
|
||||
|
||||
<!-- Editing Adopted .Baby Files ------------------------------------------>
|
||||
<p class="big">
|
||||
<span id="BAB">Various Information for Editing adopted .Baby files</span><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</p>
|
||||
|
||||
<p class="big">
|
||||
<a href="/carolyns_creations/tutorials/hexerbaby/">Here's a special hexer baby</a><br>
|
||||
for you to use with LNZPro -- thanks, <a title="http://rgn.riverpebble.net" class="defunct" target="_TOP">L41N</a>, for the
|
||||
great idea and the base
|
||||
baby!<br>
|
||||
<span class="normal">If you download this baby and study how to edit it in
|
||||
LNZPro, once you're used to that you should be able to rehex any of your
|
||||
own babyz in the same way. This is not intended as a method for thieves
|
||||
to steal code, and you can be assured that the BC will notice if you do that
|
||||
:-)</span></p>
|
||||
|
||||
<p>Apart from the "basic" tutorial, the following "howto"s tend to assume
|
||||
that you already know how to edit .baby files. Some of them are also
|
||||
relevant to editing pet files, but don't let that confuse you. The methods
|
||||
are the same. Unless you are using LNZPro (recommended to you since the
|
||||
wonderful version 3!), you need to edit in a hex editor and compensate for
|
||||
the checksum.</p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/tutorials/BasicBabyOrPetFileEditingJul2004/">Basic .baby and .pet
|
||||
file editing</a><br></p>
|
||||
|
||||
<p class="big"><a href="/carolyns_creations/tutorials/ThinFatBaby/">How make your baby
|
||||
permanently skinny (or fat)</a><br>
|
||||
<a href="/carolyns_creations/tutorials/EyeshadowOnBabyz/">Put "eyeshadow" on your
|
||||
already-adopted babyz</a><br>
|
||||
<span class="normal">You can now make changes to your babyz' eyelids that
|
||||
will actually work.</span><br>
|
||||
|
||||
<a href="/carolyns_creations/tutorials/MakingBabyzWalkers/">Turning your babyz into
|
||||
Walkers</a><br>
|
||||
<a href="/carolyns_creations/tutorials/CorruptedBitmap/">A rare fixable corruption in a pet or
|
||||
babyz</a><br>
|
||||
<a href="/carolyns_creations/tutorials/PetFileEdit2/">Eyelids -- adding or subtracting
|
||||
digits</a><br>
|
||||
<a href="/carolyns_creations/tutorials/PetFileEdit3/">Editing without a Paint Ballz
|
||||
section</a><br>
|
||||
<a href="/carolyns_creations/tutorials/PetFileEdit4/">Eye colour -- how?</a><br>
|
||||
|
||||
<a href="PeteyesBabyzbellybuttons.zip">More Pet and Baby file
|
||||
editing</a><br>
|
||||
<span class="normal">Putting bellybuttons on Babyz, and how to increase a
|
||||
pet's eye colour to a greater-digit number or decrease it to a
|
||||
lesser-digit number. Includes example babyz and petz.<br></span>
|
||||
<img src="Gerri.gif" alt="bellybutton before and after"></p>
|
||||
|
||||
<p><span class="big"><a href="GrowingBabyzAndHairMar2003.zip">How to make
|
||||
your adopted Babyz grow, also its hair</a><br></span>
|
||||
Includes example baby.<br>
|
||||
Note that, if you want the hair etc to grow out from the head as the baby
|
||||
grows rather than appearing as spots in the air around the baby at first,
|
||||
read <a href="/carolyns_creations/tutorials/BabyNaturalHairGrow/">this [Add Ball] snippet of
|
||||
info</a>.<br>
|
||||
<img src="GrowingBabyz.gif" alt="Growing Babyz"></p>
|
||||
|
||||
<p class="big">
|
||||
<a href="MoreAdvancedEditingPetzAndBabyzFilesJun2003.zip">More Advanced Pet
|
||||
And Baby Files Editing</a> (Updated 20 June 2003)<br>
|
||||
<span class="normal">Includes examples</span><br>
|
||||
<a href="PetAndBabyFileEditingJan2003.zip">Advanced Pet And Baby File
|
||||
Editing</a> (Jan 2003)</p>
|
||||
|
||||
<p class="big">Online Player files.<br>
|
||||
~~~~~~~~~~~~~~~~~~~~</p>
|
||||
|
||||
<p class="big"><a href="MakingBlyFiles.zip">Making babyz Player files to put
|
||||
up at your website</a></p>
|
||||
|
||||
<p>.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,67 +1,80 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>Babyz Glasses</title>
|
||||
<!-- -->
|
||||
<!-- from source -->
|
||||
<title>Babyz Glasses</title>
|
||||
<!-- end from source -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big center brown">
|
||||
<p class="bigger purple">.</p>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big center brown">
|
||||
<p class="bigger purple">.</p>
|
||||
<p class="bigger purple">
|
||||
<b>unusual glasses for your Babyz</b><br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</p>
|
||||
|
||||
<p class="bigger purple"><b>unusual glasses for your Babyz</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
<p>
|
||||
These glasses were inspired by a request by Budgie, on the
|
||||
<a
|
||||
href="https://web.archive.org/web/20070208055821/http://s4.invisionfree.com/Insatiable/"
|
||||
target="_TOP"
|
||||
>Insatiable forum</a
|
||||
>, who wanted star-shaped glasses. Later on in the thread, Chris
|
||||
suggested heart-shaped sunglasses for babyz on the beach... It caught my
|
||||
imagination and here, at last they are for download along with a very
|
||||
special babyz hexed by Tigger.
|
||||
</p>
|
||||
|
||||
<p>These glasses were inspired by a request by Budgie, on the <a
|
||||
href="https://web.archive.org/web/20070208055821/http://s4.invisionfree.com/Insatiable/"
|
||||
target="_TOP">Insatiable forum</a>, who wanted star-shaped glasses.
|
||||
Later on in the thread, Chris suggested heart-shaped sunglasses for babyz on
|
||||
the beach... It caught my imagination and here, at last they are for
|
||||
download along with a very special babyz hexed by Tigger.</p>
|
||||
<p>
|
||||
In this montage by Tigger,<br />
|
||||
<a href="EltonJohnBaby.zip" title="Floretta">
|
||||
<img src="EltonJohnCollage.jpg" alt="Elton John" /><br />
|
||||
Tigger's Elton John</a
|
||||
>
|
||||
is modelling<br />
|
||||
<a href="Heartglasses.zip" title="Heart Glasses">my Heart glasses and</a
|
||||
><br />
|
||||
<a href="Eltonglasses.zip" title="Elton Glasses">my Elton Glasses</a
|
||||
><br />
|
||||
Click on the picture to download him. He looks best if you also have
|
||||
installed my Elton Glasses and<br />
|
||||
clothes from
|
||||
<a
|
||||
title="http://www.geocities.com/bubble_babyz_boutique/"
|
||||
class="defunct"
|
||||
target="_TOP"
|
||||
>Liz' Bubble Babyz boutique</a
|
||||
>. Read the readme in his zipfile :-)
|
||||
</p>
|
||||
|
||||
<p>In this montage by Tigger,<br>
|
||||
<a href="EltonJohnBaby.zip" title="Floretta">
|
||||
<img src="EltonJohnCollage.jpg" alt="Elton John"><br>
|
||||
Tigger's Elton John</a> is modelling<br>
|
||||
<a href="Heartglasses.zip" title="Heart Glasses">my Heart glasses
|
||||
and</a><br>
|
||||
<a href="Eltonglasses.zip" title="Elton Glasses">my Elton
|
||||
Glasses</a><br>
|
||||
Click on the picture to download him. He looks best if you also have
|
||||
installed my Elton Glasses and<br>
|
||||
clothes from <a title="http://www.geocities.com/bubble_babyz_boutique/"
|
||||
class="defunct" target="_TOP">Liz' Bubble Babyz boutique</a>.
|
||||
Read the
|
||||
readme in his zipfile :-)</p>
|
||||
<p>
|
||||
Also for your downloading pleasure,
|
||||
<a href="Blankglasses.zip" title="Blank Glasses"
|
||||
>here is another pair of glasses</a
|
||||
>
|
||||
which is really three (or even more) in one! Please read the readme very
|
||||
carefully and install it properly, or it won't work for you. Hexers may
|
||||
also enjoy this one. Here are three of my own babes, hexed for me by
|
||||
some lovely people, modelling the set for you:<br />
|
||||
<img src="WackyStarGlasses.gif" alt="wacky stars" />
|
||||
<img src="PlainHeartGlasses.gif" alt="plain hearts" />
|
||||
<img src="Plaincircleglasses.gif" alt="palin circles" /><br />
|
||||
Delissa, from DStar, favours the Wacky Star glasses; Dream, from
|
||||
Garfield, has a classier taste in hearts; and Jane's Serenity seems
|
||||
rather fond of the simple circlets.
|
||||
</p>
|
||||
|
||||
<p>Also for your downloading pleasure, <a href="Blankglasses.zip"
|
||||
title="Blank Glasses">here is
|
||||
another pair of glasses</a> which is
|
||||
really three (or even more) in one! Please read the readme very carefully
|
||||
and install it properly, or it won't work for you. Hexers may also enjoy
|
||||
this one. Here are three of my own babes, hexed for me by some lovely
|
||||
people, modelling the set for you:<br>
|
||||
<img src="WackyStarGlasses.gif" alt="wacky stars">
|
||||
<img src="PlainHeartGlasses.gif" alt="plain hearts">
|
||||
<img src="Plaincircleglasses.gif" alt="palin circles"><br>
|
||||
Delissa, from DStar, favours the Wacky Star glasses; Dream, from Garfield,
|
||||
has a classier taste in hearts; and Jane's Serenity seems rather fond of the
|
||||
simple circlets.</p>
|
||||
<p>Enjoy!</p>
|
||||
|
||||
<p>Enjoy!</p>
|
||||
|
||||
<p>.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<p>.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,63 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- from source -->
|
||||
<title>Babyz Glasses</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big center brown">
|
||||
<p class="bigger purple">.</p>
|
||||
|
||||
<p class="bigger purple"><b>unusual glasses for your Babyz</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
|
||||
<p>These glasses were inspired by a request by Budgie, on the <a href="https://web.archive.org/web/20070208055821/http://s4.invisionfree.com/Insatiable/" target="_TOP">Insatiable forum</a>, who wanted star-shaped glasses.
|
||||
Later on in the thread, Chris suggested heart-shaped sunglasses for babyz on
|
||||
the beach... It caught my imagination and here, at last they are for
|
||||
download along with a very special babyz hexed by Tigger.</p>
|
||||
|
||||
<p>In this montage by Tigger,<br>
|
||||
<a href="EltonJohnBaby.zip" title="Floretta">
|
||||
<img src="EltonJohnCollage.jpg" alt="Elton John"><br>
|
||||
Tigger's Elton John</a> is modelling<br>
|
||||
<a href="Heartglasses.zip" title="Heart Glasses">my Heart glasses
|
||||
and</a><br>
|
||||
<a href="Eltonglasses.zip" title="Elton Glasses">my Elton
|
||||
Glasses</a><br>
|
||||
Click on the picture to download him. He looks best if you also have
|
||||
installed my Elton Glasses and<br>
|
||||
clothes from <a title="http://www.geocities.com/bubble_babyz_boutique/" class="defunct" target="_TOP">Liz' Bubble Babyz boutique</a>.
|
||||
Read the
|
||||
readme in his zipfile :-)</p>
|
||||
|
||||
<p>Also for your downloading pleasure, <a href="Blankglasses.zip" title="Blank Glasses">here is
|
||||
another pair of glasses</a> which is
|
||||
really three (or even more) in one! Please read the readme very carefully
|
||||
and install it properly, or it won't work for you. Hexers may also enjoy
|
||||
this one. Here are three of my own babes, hexed for me by some lovely
|
||||
people, modelling the set for you:<br>
|
||||
<img src="WackyStarGlasses.gif" alt="wacky stars">
|
||||
<img src="PlainHeartGlasses.gif" alt="plain hearts">
|
||||
<img src="Plaincircleglasses.gif" alt="palin circles"><br>
|
||||
Delissa, from DStar, favours the Wacky Star glasses; Dream, from Garfield,
|
||||
has a classier taste in hearts; and Jane's Serenity seems rather fond of the
|
||||
simple circlets.</p>
|
||||
|
||||
<p>Enjoy!</p>
|
||||
|
||||
<p>.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,57 +1,64 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>Babyz Harem sets</title>
|
||||
<!-- -->
|
||||
<!-- from source -->
|
||||
<title>Babyz Harem sets</title>
|
||||
<!-- end from source -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center brown big">
|
||||
<p class="bigger purple">.</p>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center brown big">
|
||||
<p class="bigger purple">.</p>
|
||||
<p class="bigger purple">
|
||||
<b>My Babyz Harem sets</b><br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</p>
|
||||
|
||||
<p class="bigger purple"><b>My Babyz Harem sets</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
<p>
|
||||
These "harem" items are just a bit of fun, in case anyone is upset by
|
||||
the idea. My babyz love dressing up, and they seem to enjoy my more
|
||||
glittery or diaphanous items. I usually have three babyz in the game at
|
||||
once, and often it is one boy and two girls or vice versa. I think the
|
||||
funniest time was when I had two girls in the game who were having fun
|
||||
with a pile of clothes -- and they dressed Rameses in harem pants and a
|
||||
belly-bow... LOL...<br />
|
||||
Here you see Anniebear's<br />
|
||||
<img src="TevynGoldDanceDress.gif" alt="Tevyn" /><br />
|
||||
adorable Tevyn modelling the gold dress along with the spiky head-dress
|
||||
and a belly jewel. You can see that she enjoys belly-dancing!<br />
|
||||
<a href="GoldHaremDress.zip" title="Gold Harem dress"
|
||||
>Gold Harem dress</a
|
||||
><br />
|
||||
<img src="haremdress1.gif" alt="gold harem dress" />
|
||||
</p>
|
||||
|
||||
<p>These "harem" items are just a bit of fun, in case anyone is upset by the
|
||||
idea. My babyz love dressing up, and they seem to enjoy my more glittery or
|
||||
diaphanous items. I usually have three babyz in the game at once, and often
|
||||
it is one boy and two girls or vice versa. I think the funniest time was
|
||||
when I had two girls in the game who were having fun with a pile of clothes
|
||||
-- and they dressed Rameses in harem pants and a belly-bow... LOL...<br>
|
||||
Here you see Anniebear's<br>
|
||||
<img src="TevynGoldDanceDress.gif" alt="Tevyn"><br>
|
||||
adorable Tevyn modelling the gold dress along with the spiky head-dress and
|
||||
a belly jewel. You can see that she enjoys belly-dancing!<br>
|
||||
<a href="GoldHaremDress.zip" title="Gold Harem dress">Gold Harem
|
||||
dress</a><br>
|
||||
<img src="haremdress1.gif" alt="gold harem dress"></p>
|
||||
<p>
|
||||
Here you see my lovely Callys, from Lain<br />
|
||||
<img src="Callys.gif" alt="Callys" /><br />
|
||||
modelling the spiky collar and head-dress along with a belly bow. The
|
||||
white diaper is not a harem item :-)<br />
|
||||
<a href="spikyheaddress.zip" title="spikyheaddress">spiky headdress</a
|
||||
><br />
|
||||
<a href="spikyneckcollar.zip" title="spikyneckcollar">spiky collar</a
|
||||
><br />
|
||||
<a href="goldnavelbow.zip" title="goldnavelbow.zip"
|
||||
>gold and ruby navel-bow</a
|
||||
><br />
|
||||
<a href="goldnavelgem.zip" title="goldnavelgem">gold navel gem</a>
|
||||
</p>
|
||||
|
||||
<p>Here you see my lovely Callys, from Lain<br>
|
||||
<img src="Callys.gif" alt="Callys"><br>
|
||||
modelling the spiky collar and head-dress along with a belly bow. The white
|
||||
diaper is not a harem item :-)<br>
|
||||
<a href="spikyheaddress.zip" title="spikyheaddress">spiky headdress</a><br>
|
||||
<a href="spikyneckcollar.zip" title="spikyneckcollar">spiky collar</a><br>
|
||||
<a href="goldnavelbow.zip" title="goldnavelbow.zip">gold and ruby
|
||||
navel-bow</a><br>
|
||||
<a href="goldnavelgem.zip" title="goldnavelgem">gold navel gem</a></p>
|
||||
<p>More to come...</p>
|
||||
|
||||
<p>More to come...</p>
|
||||
<p>Enjoy!</p>
|
||||
|
||||
<p>Enjoy!</p>
|
||||
|
||||
<p>.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<p>.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,57 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- from source -->
|
||||
<title>Babyz Harem sets</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center brown big">
|
||||
<p class="bigger purple">.</p>
|
||||
|
||||
<p class="bigger purple"><b>My Babyz Harem sets</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
|
||||
<p>These "harem" items are just a bit of fun, in case anyone is upset by the
|
||||
idea. My babyz love dressing up, and they seem to enjoy my more glittery or
|
||||
diaphanous items. I usually have three babyz in the game at once, and often
|
||||
it is one boy and two girls or vice versa. I think the funniest time was
|
||||
when I had two girls in the game who were having fun with a pile of clothes
|
||||
-- and they dressed Rameses in harem pants and a belly-bow... LOL...<br>
|
||||
Here you see Anniebear's<br>
|
||||
<img src="TevynGoldDanceDress.gif" alt="Tevyn"><br>
|
||||
adorable Tevyn modelling the gold dress along with the spiky head-dress and
|
||||
a belly jewel. You can see that she enjoys belly-dancing!<br>
|
||||
<a href="GoldHaremDress.zip" title="Gold Harem dress">Gold Harem
|
||||
dress</a><br>
|
||||
<img src="haremdress1.gif" alt="gold harem dress"></p>
|
||||
|
||||
<p>Here you see my lovely Callys, from Lain<br>
|
||||
<img src="Callys.gif" alt="Callys"><br>
|
||||
modelling the spiky collar and head-dress along with a belly bow. The white
|
||||
diaper is not a harem item :-)<br>
|
||||
<a href="spikyheaddress.zip" title="spikyheaddress">spiky headdress</a><br>
|
||||
<a href="spikyneckcollar.zip" title="spikyneckcollar">spiky collar</a><br>
|
||||
<a href="goldnavelbow.zip" title="goldnavelbow.zip">gold and ruby
|
||||
navel-bow</a><br>
|
||||
<a href="goldnavelgem.zip" title="goldnavelgem">gold navel gem</a></p>
|
||||
|
||||
<p>More to come...</p>
|
||||
|
||||
<p>Enjoy!</p>
|
||||
|
||||
<p>.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,78 +1,88 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>New Babyz</title>
|
||||
<!-- -->
|
||||
<!-- from source -->
|
||||
<title>New Babyz</title>
|
||||
<!-- end from source -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big center green">
|
||||
<p class="bigger">
|
||||
<b>New Babyz</b><br />
|
||||
Click photo or name to download.
|
||||
</p>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big center green">
|
||||
<p class="bigger"><b>New Babyz</b><br>
|
||||
Click photo or name to download.</p>
|
||||
<p class="bigger">
|
||||
<b>NEW!!</b>For the Pasted-Head babyz, go to the
|
||||
<a href="/babyz/babyzheadbanger/">Headbanger babyz</a> page<br />
|
||||
For the Faerie babyz, go to the
|
||||
<a href="/babyz/faeriebabyz/">Faerie babyz</a> page<br />
|
||||
For the Oddballz babyz, go to the
|
||||
<a href="/babyz/babyzoddball/">Babyz Oddballz</a> page<br />
|
||||
For the Fishies, go to the
|
||||
<a href="/babyz/babyzfish/">Babyz Fishies</a> page<br />
|
||||
For the butterflies and spiders, go to the
|
||||
<a href="/babyz/babyzarthropods/">Babyz Arthropods</a> page<br />
|
||||
For the Valentine Hearts, go to the
|
||||
<a href="/babyz/babyzhearts/">Babyz Hearts</a> page<br />
|
||||
For the anatomically correct babyz, go to the
|
||||
<a href="/babyz/realbabyz/">Real Babyz</a> page<br />
|
||||
For the Pharaoh babyz, go to the
|
||||
<a href="/babyz/pharaohbabyz/">Pharaoh babyz</a> page<br />
|
||||
For the Growing babyz, go to the
|
||||
<a href="/babyz/growerbabyz/">Grower babyz</a> page<br />
|
||||
For babyz with flowers/wings in their hair --
|
||||
<a href="/babyz/wingflowerbabyz/">Flower-power babyz</a> page<br />
|
||||
More babyz with jewels, hair-wings or necklets --
|
||||
<a href="/babyz/wingjewelbabyz/">Jewel babyz</a> page<br />
|
||||
<span class="normal"
|
||||
>Afrasweet and Miggles are on the jewel babyz page also. Hey, it's my
|
||||
site, I can do things like that :-)</span
|
||||
><br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</p>
|
||||
|
||||
<p class="bigger"><b>NEW!!</b>For the Pasted-Head babyz, go to the <a
|
||||
href="/babyz/babyzheadbanger/">Headbanger babyz</a> page<br>
|
||||
For the Faerie babyz, go to the <a href="/babyz/faeriebabyz/">Faerie
|
||||
babyz</a> page<br>
|
||||
For the Oddballz babyz, go to the <a href="/babyz/babyzoddball/">Babyz
|
||||
Oddballz</a> page<br>
|
||||
For the Fishies, go to the <a href="/babyz/babyzfish/">Babyz
|
||||
Fishies</a> page<br>
|
||||
For the butterflies and spiders, go to the <a
|
||||
href="/babyz/babyzarthropods/">Babyz Arthropods</a> page<br>
|
||||
For the Valentine Hearts, go to the <a href="/babyz/babyzhearts/">Babyz
|
||||
Hearts</a> page<br>
|
||||
For the anatomically correct babyz, go to the <a
|
||||
href="/babyz/realbabyz/">Real Babyz</a> page<br>
|
||||
For the Pharaoh babyz, go to the <a href="/babyz/pharaohbabyz/">Pharaoh
|
||||
babyz</a> page<br>
|
||||
For the Growing babyz, go to the <a href="/babyz/growerbabyz/">Grower
|
||||
babyz</a> page<br>
|
||||
For babyz with flowers/wings in their hair -- <a
|
||||
href="/babyz/wingflowerbabyz/">Flower-power babyz</a> page<br>
|
||||
More babyz with jewels, hair-wings or necklets -- <a
|
||||
href="/babyz/wingjewelbabyz/">Jewel babyz</a> page<br>
|
||||
<span class="normal">Afrasweet and Miggles are on the jewel babyz page also.
|
||||
Hey, it's my site, I can do things like that :-)</span><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
<p>
|
||||
Here are a few unusual boy babyz for you. Each is distinctive in a
|
||||
special way...
|
||||
</p>
|
||||
|
||||
<p>Here are a few unusual boy babyz for you. Each is distinctive in a
|
||||
special way...</p>
|
||||
<p>
|
||||
<a href="Xmyboy.zip" title="Xmyboy">
|
||||
<img src="Xmyboy.gif" alt="Xmyboy" /><br />
|
||||
Xmyboy </a
|
||||
><br />
|
||||
Xmyboy has a very unusual hairstyle that shimmers as he moves
|
||||
</p>
|
||||
|
||||
<p><a href="Xmyboy.zip" title="Xmyboy">
|
||||
<img src="Xmyboy.gif" alt="Xmyboy"><br>
|
||||
Xmyboy
|
||||
</a><br>
|
||||
Xmyboy has a very unusual hairstyle that shimmers as he moves</p>
|
||||
<p>
|
||||
<a href="Shock2Lock.zip" title="Shock morphing to Lock">
|
||||
<img src="ShockMorphtoLock.gif" alt="ShockMorphtoLock" /><br />
|
||||
Shock2Lock </a
|
||||
><br />
|
||||
Shock2Lock starts as Shock and, as the days of play pass in the game he
|
||||
morphs into Lock. Thanks to Nika for the idea of a Shock and Lock baby
|
||||
:-)
|
||||
</p>
|
||||
|
||||
<p><a href="Shock2Lock.zip" title="Shock morphing to Lock">
|
||||
<img src="ShockMorphtoLock.gif" alt="ShockMorphtoLock"><br>
|
||||
Shock2Lock
|
||||
</a><br>
|
||||
Shock2Lock starts as Shock and, as the days of play pass in the game he
|
||||
morphs into Lock. Thanks to Nika for the idea of a Shock and Lock baby
|
||||
:-)</p>
|
||||
<p>
|
||||
<a href="Tigger.zip" title="Tigger">
|
||||
<img src="Tigger.gif" alt="Tigger" /><br />
|
||||
Tigger </a
|
||||
><br />
|
||||
Tigger has a tail which moves around as he moves. If you want to see him
|
||||
in his natural state, as shown in the picture, you will need to remove
|
||||
the White Diaper.clo file from the game's clothes directory.
|
||||
</p>
|
||||
|
||||
<p><a href="Tigger.zip" title="Tigger">
|
||||
<img src="Tigger.gif" alt="Tigger"><br>
|
||||
Tigger
|
||||
</a><br>
|
||||
Tigger has a tail which moves around as he moves. If you want to see him in
|
||||
his natural state, as shown in the picture, you will need to remove the
|
||||
White Diaper.clo file from the game's clothes directory.</p>
|
||||
|
||||
<p>.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<p>.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,73 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- from source -->
|
||||
<title>New Babyz</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big center green">
|
||||
<p class="bigger"><b>New Babyz</b><br>
|
||||
Click photo or name to download.</p>
|
||||
|
||||
<p class="bigger"><b>NEW!!</b>For the Pasted-Head babyz, go to the <a href="/carolyns_creations/babyz/babyzheadbanger/">Headbanger babyz</a> page<br>
|
||||
For the Faerie babyz, go to the <a href="/carolyns_creations/babyz/faeriebabyz/">Faerie
|
||||
babyz</a> page<br>
|
||||
For the Oddballz babyz, go to the <a href="/carolyns_creations/babyz/babyzoddball/">Babyz
|
||||
Oddballz</a> page<br>
|
||||
For the Fishies, go to the <a href="/carolyns_creations/babyz/babyzfish/">Babyz
|
||||
Fishies</a> page<br>
|
||||
For the butterflies and spiders, go to the <a href="/carolyns_creations/babyz/babyzarthropods/">Babyz Arthropods</a> page<br>
|
||||
For the Valentine Hearts, go to the <a href="/carolyns_creations/babyz/babyzhearts/">Babyz
|
||||
Hearts</a> page<br>
|
||||
For the anatomically correct babyz, go to the <a href="/carolyns_creations/babyz/realbabyz/">Real Babyz</a> page<br>
|
||||
For the Pharaoh babyz, go to the <a href="/carolyns_creations/babyz/pharaohbabyz/">Pharaoh
|
||||
babyz</a> page<br>
|
||||
For the Growing babyz, go to the <a href="/carolyns_creations/babyz/growerbabyz/">Grower
|
||||
babyz</a> page<br>
|
||||
For babyz with flowers/wings in their hair -- <a href="/carolyns_creations/babyz/wingflowerbabyz/">Flower-power babyz</a> page<br>
|
||||
More babyz with jewels, hair-wings or necklets -- <a href="/carolyns_creations/babyz/wingjewelbabyz/">Jewel babyz</a> page<br>
|
||||
<span class="normal">Afrasweet and Miggles are on the jewel babyz page also.
|
||||
Hey, it's my site, I can do things like that :-)</span><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
|
||||
|
||||
<p>Here are a few unusual boy babyz for you. Each is distinctive in a
|
||||
special way...</p>
|
||||
|
||||
<p><a href="Xmyboy.zip" title="Xmyboy">
|
||||
<img src="Xmyboy.gif" alt="Xmyboy"><br>
|
||||
Xmyboy
|
||||
</a><br>
|
||||
Xmyboy has a very unusual hairstyle that shimmers as he moves</p>
|
||||
|
||||
<p><a href="Shock2Lock.zip" title="Shock morphing to Lock">
|
||||
<img src="ShockMorphtoLock.gif" alt="ShockMorphtoLock"><br>
|
||||
Shock2Lock
|
||||
</a><br>
|
||||
Shock2Lock starts as Shock and, as the days of play pass in the game he
|
||||
morphs into Lock. Thanks to Nika for the idea of a Shock and Lock baby
|
||||
:-)</p>
|
||||
|
||||
<p><a href="Tigger.zip" title="Tigger">
|
||||
<img src="Tigger.gif" alt="Tigger"><br>
|
||||
Tigger
|
||||
</a><br>
|
||||
Tigger has a tail which moves around as he moves. If you want to see him in
|
||||
his natural state, as shown in the picture, you will need to remove the
|
||||
White Diaper.clo file from the game's clothes directory.</p>
|
||||
|
||||
<p>.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,60 +1,66 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>Experimental Babyz and harem clothes, etc</title>
|
||||
<!-- -->
|
||||
<!-- from source -->
|
||||
<title>Experimental Babyz and harem clothes, etc</title>
|
||||
<!-- end from source -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center big green">
|
||||
<p><b>Experimental Babyz and harem clothes, etc</b></p>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center big green">
|
||||
<p><b>Experimental Babyz and harem clothes, etc</b></p>
|
||||
<p>
|
||||
<img src="StewieCowbells.gif" alt="Stewie and Cowbells" /><br />
|
||||
<a href="Stewiewhite.zip">Stewie</a><br />
|
||||
<a href="Stewieblack.zip">Black Stewie</a><br />
|
||||
<a href="Stewietan.zip">Tanned Stewie</a><br />
|
||||
<a href="cowbells.zip">All three cowbells</a>
|
||||
</p>
|
||||
|
||||
<p><img src="StewieCowbells.gif" alt="Stewie and Cowbells"><br>
|
||||
<a href="Stewiewhite.zip">Stewie</a><br>
|
||||
<a href="Stewieblack.zip">Black Stewie</a><br>
|
||||
<a href="Stewietan.zip">Tanned Stewie</a><br>
|
||||
<a href="cowbells.zip">All three cowbells</a></p>
|
||||
<p>
|
||||
<img src="globble2.gif" alt="globble" /><br />
|
||||
<a href="globble.zip">Globble</a>
|
||||
</p>
|
||||
|
||||
<p><img src="globble2.gif" alt="globble"><br>
|
||||
<a href="globble.zip">Globble</a></p>
|
||||
<p><a href="darkdoggy.zip">Darkdoggy</a></p>
|
||||
|
||||
<p><a href="darkdoggy.zip">Darkdoggy</a></p>
|
||||
<p>
|
||||
<a href="dog-earedgirls.zip">Dog and fox-eared girls</a><br />
|
||||
<a href="foxybabe.zip">foxy babe</a><br />
|
||||
<a href="/tutorials/babyzears/"
|
||||
>hexer's codes for the fox and dog babes</a
|
||||
>
|
||||
</p>
|
||||
|
||||
<p><a href="dog-earedgirls.zip">Dog and fox-eared girls</a><br>
|
||||
<a href="foxybabe.zip">foxy babe</a><br>
|
||||
<a href="/tutorials/babyzears/">hexer's codes for the fox and dog
|
||||
babes</a></p>
|
||||
<p><img src="Dog-earedBabyz.gif" alt="globble" /></p>
|
||||
|
||||
<p><img src="Dog-earedBabyz.gif" alt="globble"></p>
|
||||
<p>
|
||||
<img src="Chalica.gif" alt="Chalica" /><br />
|
||||
this is Chalica. I made her several months ago to help someone on one of
|
||||
the forums who wanted a particular hairstyle, and at the same time I
|
||||
gave her my eyeshine code. I only just now realised that I'd forgotten
|
||||
to upload her to the site, LOL!<br />
|
||||
You can download her by clicking <a href="Chalica.zip">here</a>
|
||||
</p>
|
||||
|
||||
<p><img src="Chalica.gif" alt="Chalica"><br>
|
||||
this is Chalica. I made her several months ago to help someone on one of the
|
||||
forums who wanted a particular hairstyle, and at the same time I gave her my
|
||||
eyeshine code. I only just now realised that I'd forgotten to upload her to
|
||||
the site, LOL!<br>
|
||||
You can download her by clicking <a href="Chalica.zip">here</a></p>
|
||||
<p><a href="brownie.zip">Brownie</a></p>
|
||||
|
||||
<p><a href="brownie.zip">Brownie</a></p>
|
||||
<p><a href="danceveil1.zip">Dance veil 1</a></p>
|
||||
|
||||
<p><a href="danceveil1.zip">Dance veil 1</a></p>
|
||||
<p><a href="danceveil2.zip">Dance veil 2</a></p>
|
||||
|
||||
<p><a href="danceveil2.zip">Dance veil 2</a></p>
|
||||
<p>
|
||||
<a href="nappygem.zip">Nappy gem -- let your babyz be true Naturists</a>
|
||||
</p>
|
||||
|
||||
<p><a href="nappygem.zip">Nappy gem -- let your babyz be true
|
||||
Naturists</a></p>
|
||||
|
||||
<p><img src="globble1.gif" alt="globble"></p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<p><img src="globble1.gif" alt="globble" /></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,60 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- from source -->
|
||||
<title>Experimental Babyz and harem clothes, etc</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center big green">
|
||||
<p><b>Experimental Babyz and harem clothes, etc</b></p>
|
||||
|
||||
<p><img src="StewieCowbells.gif" alt="Stewie and Cowbells"><br>
|
||||
<a href="Stewiewhite.zip">Stewie</a><br>
|
||||
<a href="Stewieblack.zip">Black Stewie</a><br>
|
||||
<a href="Stewietan.zip">Tanned Stewie</a><br>
|
||||
<a href="cowbells.zip">All three cowbells</a></p>
|
||||
|
||||
<p><img src="globble2.gif" alt="globble"><br>
|
||||
<a href="globble.zip">Globble</a></p>
|
||||
|
||||
<p><a href="darkdoggy.zip">Darkdoggy</a></p>
|
||||
|
||||
<p><a href="dog-earedgirls.zip">Dog and fox-eared girls</a><br>
|
||||
<a href="foxybabe.zip">foxy babe</a><br>
|
||||
<a href="/carolyns_creations/tutorials/babyzears/">hexer's codes for the fox and dog
|
||||
babes</a></p>
|
||||
|
||||
<p><img src="Dog-earedBabyz.gif" alt="globble"></p>
|
||||
|
||||
<p><img src="Chalica.gif" alt="Chalica"><br>
|
||||
this is Chalica. I made her several months ago to help someone on one of the
|
||||
forums who wanted a particular hairstyle, and at the same time I gave her my
|
||||
eyeshine code. I only just now realised that I'd forgotten to upload her to
|
||||
the site, LOL!<br>
|
||||
You can download her by clicking <a href="Chalica.zip">here</a></p>
|
||||
|
||||
<p><a href="brownie.zip">Brownie</a></p>
|
||||
|
||||
<p><a href="danceveil1.zip">Dance veil 1</a></p>
|
||||
|
||||
<p><a href="danceveil2.zip">Dance veil 2</a></p>
|
||||
|
||||
<p><a href="nappygem.zip">Nappy gem -- let your babyz be true
|
||||
Naturists</a></p>
|
||||
|
||||
<p><img src="globble1.gif" alt="globble"></p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
BIN
carolyns_creations/babyz/babyzplay/Cathy.gif
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
carolyns_creations/babyz/babyzplay/Frostedmalt.gif
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
carolyns_creations/babyz/babyzplay/Jack.gif
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
carolyns_creations/babyz/babyzplay/Josh.gif
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
carolyns_creations/babyz/babyzplay/Vesuvius.gif
Normal file
After Width: | Height: | Size: 6.3 KiB |
139
carolyns_creations/babyz/babyzplay/babyzplay.html
Normal file
|
@ -0,0 +1,139 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>Play with babyz</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
|
||||
<style>
|
||||
table {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table:first-of-type td {
|
||||
width: 33%;
|
||||
}
|
||||
|
||||
table:last-of-type {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
table:last-of-type td {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
table a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
table a span {
|
||||
color: blue;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="center bigger">
|
||||
<div class="big-gap-top purple bold">
|
||||
Play with babyz online<br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</div>
|
||||
|
||||
<div class="border-outer border-green" style="width: 90%">
|
||||
<div class="border-inner bigger bold green">
|
||||
<p>
|
||||
Click on any picture to play with the baby online. You will need to
|
||||
have the
|
||||
<a href="babyzplayer.exe" target="_TOP">babyz player</a> installed
|
||||
before your browser will let you play with them. I have Windows 95,
|
||||
and I can play with these babyz just fine using either Internet
|
||||
Explorer 5 or <a href="/netscape4/">Netscape 4</a>. If you are unable
|
||||
to make them work with a different operating system or browser /
|
||||
browser version, please don't ask me for help -- ask someone who uses
|
||||
the same setup as yourself or ask UbiSoft.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
I made all these .bly files by hand using a hex editor. If you would
|
||||
like to make some for your site also, take a look at my
|
||||
<a href="/tutorials/tutorials/">tutorial </a>on making player babyz.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<u>Page</u>:
|
||||
<a href="/babyz/babyz-1/">1</a>
|
||||
<a href="/babyz/babyz-2/">2</a>
|
||||
<a href="/babyz/babyz-3/">3</a>
|
||||
<a href="/babyz/babyz-4/">4</a>
|
||||
<a href="/babyz/babyz-5/">5</a>
|
||||
|
|
||||
<a href="/babyz/babyzspecial-1/">Special Babyz</a>| Play with a Babyz
|
||||
Online
|
||||
</p>
|
||||
|
||||
<table class="img-border normal">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/babyz/babyzplay/jackbly/">
|
||||
<img src="Jack.gif" /><br />
|
||||
<span>Play with Jack</span>
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="/babyz/babyzplay/vesuviusbly/">
|
||||
<img src="Vesuvius.gif" /><br />
|
||||
<span>Play with Vesuvius</span>
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="/babyz/babyzplay/cathybly/">
|
||||
<img src="Cathy.gif" /><br />
|
||||
<span>Play with Cathy</span>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<table class="img-border normal">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/babyz/babyzplay/joshbly/">
|
||||
<img src="Josh.gif" /><br />
|
||||
<span>Play with Josh</span>
|
||||
</a>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="/babyz/babyzplay/frostedmaltbly/">
|
||||
<img src="Frostedmalt.gif" /><br />
|
||||
<span>Play with Frostedmalt</span>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="purple" style="margin-top: 0">
|
||||
<u>Page</u>:
|
||||
<a href="/babyz/babyz-1/">1</a>
|
||||
<a href="/babyz/babyz-2/">2</a>
|
||||
<a href="/babyz/babyz-3/">3</a>
|
||||
<a href="/babyz/babyz-4/">4</a>
|
||||
<a href="/babyz/babyz-5/">5</a>
|
||||
|
|
||||
<a href="/babyz/babyzspecial-1/">Special Babyz</a>| Play with a Babyz
|
||||
Online
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
BIN
carolyns_creations/babyz/babyzplay/babyzplayer.exe
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/AtticExternal.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/BabyzplaypenEtc1.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/BabyzplaypenEtc2.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/BackyardExternal.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/FamilyroomExternal.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/JunglePlayroom.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/Jungleplayroom.jpg
Normal file
After Width: | Height: | Size: 69 KiB |
BIN
carolyns_creations/babyz/babyzplayscene/KitchenExternal.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/Nursery.jpg
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
carolyns_creations/babyz/babyzplayscene/NurseryExternal.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/PlayroomExternal.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/SecretWoodBabyz.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/SecretWoodSounds.zip
Normal file
BIN
carolyns_creations/babyz/babyzplayscene/UsingHexEditor.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
179
carolyns_creations/babyz/babyzplayscene/babyzplayscene.html
Normal file
|
@ -0,0 +1,179 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>New Babyz Playpens</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="green center side-padding">
|
||||
<p class="bigger">
|
||||
<b>New Babyz Playpens</b><br />
|
||||
Click picture or name to download.
|
||||
</p>
|
||||
|
||||
To get lots of playscenes for your Babyz, go to these sites -- and while
|
||||
you're there browse for other goodies :-)<br />
|
||||
For some of Jesslan's scenes<br />
|
||||
<a href="http://www.dmwright.com/babyz/" class="defunct" target="_TOP"
|
||||
>the Babyz Crib</a
|
||||
><br />
|
||||
For some of Jesslan's scenes<br />
|
||||
<a
|
||||
href="https://web.archive.org/web/20161030151033/http://pfbabyz.com/MyBabyz/index.html"
|
||||
target="_TOP"
|
||||
>Purple Flower Babyz</a
|
||||
><br />
|
||||
For Dani's scenes<br />
|
||||
<a href="https://www.d-r-n.com/" target="_TOP">D.R.N</a>
|
||||
|
||||
<p class="big">
|
||||
This page contains any playscenes or playpen backgrounds etc that I make
|
||||
for the Babyz game.
|
||||
</p>
|
||||
|
||||
<a href="KitchenExternal.zip" class="big"
|
||||
>A kit for making new kitchen Playscenes</a
|
||||
><br />
|
||||
part of my "Ultra-easy" editing range. This particular one has the
|
||||
filmstrips separated out, but I have not had time to put the bitmap
|
||||
headers on them for you.<br />
|
||||
<a href="ClothesclosetExternal.zip" class="big"
|
||||
>A kit for making new Clothes Closet Playscenes</a
|
||||
><br />
|
||||
part of my "Ultra-easy" editing range. This particular one has the
|
||||
filmstrips separated out, but I have not had time to put the bitmap
|
||||
headers on them for you.<br />
|
||||
<a href="FamilyroomExternal.zip" class="big"
|
||||
>A kit for for making new Family Room Playscenes</a
|
||||
><br />
|
||||
part of my "Ultra-easy" editing range.<br />
|
||||
<a href="AtticExternal.zip" class="big"
|
||||
>An easy-edit kit for making new Attic Playscenes</a
|
||||
><br />
|
||||
<a href="BackyardExternal.zip" class="big"
|
||||
>An easy-edit kit for making new Back Yard Playscenes</a
|
||||
><br />
|
||||
<a href="PlayroomExternal.zip" class="big"
|
||||
>An easy-edit kit for making new Playroom Playscenes</a
|
||||
><br />
|
||||
This package lets you change your playroom to your heart's content. Make
|
||||
sure that you read the included Readme carefully, and keep a backup copy
|
||||
of your original Playroom.<br />
|
||||
<br />
|
||||
<a href="JunglePlayroom.zip" class="big" title="A Jungle Playroom">
|
||||
<img src="Jungleplayroom.jpg" alt="Jungle Playroom" /><br />
|
||||
My Babyz Jungle Playroom </a
|
||||
><br />
|
||||
Make sure that you read the included Readme carefully. If you already have
|
||||
the Playroom easy-edit kit, the files inside this one will overwrite the
|
||||
relevant Playroom .env, .flm, .flh and backdrop .bmp items, so make sure
|
||||
that you've got the originals stored safely before you move these into the
|
||||
\Resource\Area and \art\Sprites\Area\Playroom directories.<br />
|
||||
<br />
|
||||
.<br />
|
||||
<br />
|
||||
<a
|
||||
href="NurseryExternal.zip"
|
||||
class="big"
|
||||
title="Change your Nursery yourself"
|
||||
>
|
||||
<img
|
||||
src="Nursery.jpg"
|
||||
alt="Nursery using my Secret Wood background"
|
||||
/><br />
|
||||
Change your Nursery yourself!</a
|
||||
>
|
||||
<span class="big">/</span>
|
||||
<a href="SecretWoodBabyz.zip" class="big" title="Download the Secret Wood"
|
||||
>The secret Wood bits</a
|
||||
><br />
|
||||
This package lets you change your nursery to your heart's content. The
|
||||
picture shows my own latest scenario, in which I use the backdrop from my
|
||||
Petz Secret Wood scenes and I altered the window and crib-front filmstrips
|
||||
to simply be transparent. Also I've enabled the "animal" mobile. You can
|
||||
make more creative stuff than this! Make sure that you read the included
|
||||
Readme carefully.<br />
|
||||
If you want your playscene to look like the one in the picture, download
|
||||
the Secret Wood bits. They will overwrite the relevant Nursery window and
|
||||
crib .flm, .flh and backdrop .bmp items, so make sure that you've got the
|
||||
originals stored safely before you move these into the
|
||||
\art\Sprites\Area\Nursery directory. Click on the door if you want to see
|
||||
what's there. When your baby is tired, lift it over the patch of soft
|
||||
mossy grass which is on the lion's flank.<br />
|
||||
<span class="big"
|
||||
>If you want to have the full "Secret wood" experience, download
|
||||
<a href="SecretWoodSounds.zip" title="Secret Wood sounds">the sounds </a
|
||||
>also.</span
|
||||
><br />
|
||||
The sound zip contains an overwriting Nursery file which overwrites the
|
||||
original external-nursery one. The .txt and .wav files go into the
|
||||
\art\Sprites\Area\Nursery directory.<br />
|
||||
<br />
|
||||
.<br />
|
||||
<br />
|
||||
<span class="big"
|
||||
>These "hidden playpens" below are only needed for people who have a
|
||||
version of the game which, like mine, doesn't allow the simple Registry
|
||||
change to work.</span
|
||||
><br />
|
||||
I hadn't realised that there was more than one version of the game until
|
||||
2004 -- only one game release, but two or three versions. For people who
|
||||
would like to try it,
|
||||
<a href="/babyz/babyzsecretplaypen/">click here</a> for a little trick
|
||||
which might work for you; Daniel Wright pointed out that this works for
|
||||
his game, and probably for many other people's. If it doesn't work for
|
||||
yours, you can either go to Daniel's
|
||||
<a href="http://www.dmwright.com/babyz/" class="defunct"
|
||||
>The Babyz Crib</a
|
||||
>
|
||||
where I'm told he has an .exe file which works with this fix, or try the
|
||||
two patchfiles below instead. These patchfiles of mine will give you a new
|
||||
default "logo" picture for the playpen, as well as a new splash-screen and
|
||||
"Grandmother's House" screen.<br />
|
||||
<a
|
||||
href="BabyzplaypenEtc1.zip"
|
||||
class="big"
|
||||
title="Download the Playpen with Hay Carpet"
|
||||
>
|
||||
<img src="UsingHexEditor.jpg" alt="Playpen with Hay Carpet" /><br />
|
||||
Playpen with Hay Carpet</a
|
||||
>
|
||||
<span class="big">/</span>
|
||||
<a
|
||||
href="BabyzplaypenEtc2.zip"
|
||||
class="big"
|
||||
title="Download the Playpen with Shag Carpet"
|
||||
>Playpen with Shag Carpet</a
|
||||
><br />
|
||||
NOTE: The above playpens are in the form of patchfiles. They patch your
|
||||
game's main executable file. Make a copy of any file that you intend to
|
||||
patch, as these are important files and you will one day want your
|
||||
original back again!<br />
|
||||
If you have a babyz.exe which is a different size from mine, these patches
|
||||
won't work for you; also my instructions will be slightly off because the
|
||||
place you'll be looking for will be in a different place. In that case, if
|
||||
you want to edit the internal pictures, all I can suggest is that you try
|
||||
using
|
||||
<a href="http://www.angusj.com/resourcehacker/" target="_top"
|
||||
>ResHacker</a
|
||||
>
|
||||
to replace the bitmaps that you want to change. But I cannot stress
|
||||
enough; if you're going to edit your .exe, keep a backup copy safe
|
||||
somewhere else just in case you get a corruption, and also make sure that
|
||||
you have safe copies of all your adopted babyz.<br />
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
<div class="side-padding">.</div>
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
BIN
carolyns_creations/babyz/babyztoyz/CarrotsBag.zip
Normal file
BIN
carolyns_creations/babyz/babyztoyz/Carrotsbag.gif
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
carolyns_creations/babyz/babyztoyz/ChristmasSpoon.zip
Normal file
BIN
carolyns_creations/babyz/babyztoyz/Christmasspoon.gif
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
carolyns_creations/babyz/babyztoyz/Plantsinfrog.gif
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
carolyns_creations/babyz/babyztoyz/Surprisebox2.zip
Normal file
BIN
carolyns_creations/babyz/babyztoyz/Surprisetoybox.jpg
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
carolyns_creations/babyz/babyztoyz/Surprisetoybox.zip
Normal file
BIN
carolyns_creations/babyz/babyztoyz/Tallgreenplantmovable.zip
Normal file
BIN
carolyns_creations/babyz/babyztoyz/Teletubbies.gif
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
carolyns_creations/babyz/babyztoyz/Yellowflowersplantmovable.zip
Normal file
BIN
carolyns_creations/babyz/babyztoyz/babyzmagnets.zip
Normal file
134
carolyns_creations/babyz/babyztoyz/babyztoyz.html
Normal file
|
@ -0,0 +1,134 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>Babyz Toyz</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big-gap-top purple center">
|
||||
<span class="bigger">
|
||||
<b>Babyz Toyz</b><br />
|
||||
~~~~~~~~~~~~~~~~~~~~~<br />
|
||||
</span>
|
||||
Page 1 of my hexed Babyz toyz -- the latest ones are on this page. They
|
||||
all show up seperately in the closet with their own graphics. You need to
|
||||
extract the .toy file into your Resource\Toyz directory in your Babyz
|
||||
program directory.
|
||||
</div>
|
||||
|
||||
<div class="border-outer border-green green" style="width: 90%">
|
||||
<div class="border-inner bold center img-border">
|
||||
For the Oddballz babyz and the Oddball-eggz toyz, go to the
|
||||
<a href="/babyz/babyzoddball/">Babyz Oddballz</a> page<br />
|
||||
For my oldest Babyz toyz (Piggy, Santa Doll, Blowers, Blooms) and a
|
||||
bunch of toys in different closets plus hidden toyz on shelves (big
|
||||
teddy etc)
|
||||
<a href="/babyz/babyztoyz2/">go here</a><br />
|
||||
For babyz pools, extra baths, sippy cups, spoons, "catty", "bunny", and
|
||||
extra Kitchen high chairs <a href="/babyz/babyztoyz3/">go here</a>
|
||||
|
||||
<p class="big">
|
||||
The kitchen magnets, separated out and made to show up in the kitchen
|
||||
closet. This one is for people who find that their magnets disappear,
|
||||
also for hexers who want to make a range of magnets of their own. They
|
||||
don't overwrite the original, and as far as I know you cannot put them
|
||||
back in the closet, so take care how you litter the kitchen with them,
|
||||
LOL!<br />
|
||||
<img src="magnets.gif" alt="separate magnets" /><br />
|
||||
<a href="babyzmagnets.zip">separate magnets</a>
|
||||
</p>
|
||||
|
||||
<p class="big">
|
||||
The Christmas Spoon, made originally for DRN's 2005 Advent Calendar.
|
||||
You will find that food looks different when it's on this spoon :-)<br />
|
||||
<img src="Christmasspoon.gif" alt="Christmas Spoon" /><br />
|
||||
<a href="ChristmasSpoon.zip">Christmas Spoon</a>
|
||||
</p>
|
||||
|
||||
<p class="big">
|
||||
The "Surprise" toy, made to show up in your attic closet. This seems
|
||||
to be a toy that the makers forgot about; in the Petz 4 game, the
|
||||
surprise is that there's a bubble machine inside. In Babyz, the makers
|
||||
forgot to delete the bubble machine filmstrips when they made that toy
|
||||
separate, and they didn't finish the box off. I've finished it off for
|
||||
you, and now the "surprise" is that you can use it to stuff more toyz
|
||||
into your toychestz, LOL! It overwrites the original. Version 1 is the
|
||||
standard box with lid, version 2 has a surprise lid :-) Hexers may be
|
||||
interested in version 2, which gives something extra to fiddle
|
||||
with.<br />
|
||||
<img src="Surprisetoybox.jpg" alt="Surprise box" /><br />
|
||||
<a href="Surprisetoybox.zip">"Surprise" box</a><br />
|
||||
<a href="Surprisebox2.zip">"Surprise" box version 2</a>
|
||||
</p>
|
||||
|
||||
<p class="big">
|
||||
At last! The Teletubbies comes to amuse your Babyz! LOL... This will
|
||||
overwrite your Record Player and Record toyz, so make sure that you
|
||||
have them somewhere safe. You may get tired of seeing your babyz
|
||||
eternally watching TV, even when you're playing classy music :-)<br />
|
||||
Your babyz will dance to the teletubbies music when you put the tape
|
||||
into the slot.<br />
|
||||
Thanks to Kittycat
|
||||
<a
|
||||
href="https://web.archive.org/web/20090430194112/http://www.geocities.com/xxwaterfallheavenxx/index.html"
|
||||
target="_TOP"
|
||||
>of Waterfall Heaven</a
|
||||
>
|
||||
for the idea, the music and a bunch of basic graphics which I altered,
|
||||
added to and made into the toyz; this is really a kind of "team
|
||||
creation". Note that although the teletubbies disco music is supposed
|
||||
to come on when you insert the little tape from the shelf, you may
|
||||
sometimes find that the music is actually linked to a different
|
||||
record. That's just a random quirk of the game.<br />
|
||||
<img src="Teletubbies.gif" alt="Babyz dance" /><br />
|
||||
<a href="teletubbs.zip">Teletubbies TV</a><br />
|
||||
If you have problems with the toy not showing up correctly, download
|
||||
this version instead:<br />
|
||||
<a href="teletubbiesagain.zip">Teletubbies TV version 2</a>
|
||||
</p>
|
||||
|
||||
<p class="big">
|
||||
This one is a complete toy with everything inside -- go to my
|
||||
tutorials page if you want my external-files one. This was made as I
|
||||
went through the steps myself when answering a couple of people who
|
||||
wanted to know how to make their treats show up properly. The Howto
|
||||
and example toy are on my tutorials page.<br />
|
||||
<img src="Carrotsbag.gif" alt="Babyz carrot treats" /><br />
|
||||
<a href="CarrotsBag.zip">Healthy Carrot Treats</a>
|
||||
</p>
|
||||
|
||||
<p class="big">
|
||||
Another special request, this time from Liz as well as Dani. This toy
|
||||
overwrites the original Stuffed Man, and shows up in the playroom
|
||||
closet. It's the toy to use if you want to make a doll or similar type
|
||||
of toy, but don't want to have to fiddle with .lnz files. People who
|
||||
want to change the look of their stuffed man can of course use Tinker,
|
||||
available on this site's "Nicholas' tools" page :-)<br />
|
||||
<a href="stuffedman.zip">Download the Stuffed Man toy</a>
|
||||
</p>
|
||||
|
||||
<p class="big">
|
||||
These two plants can now be put back on the playroom and attic
|
||||
shelves, plus they can now be moved between scenes in the toychest.
|
||||
The Babyz will be a bit more interested in them than they used to
|
||||
be.<br />
|
||||
<img src="Plantsinfrog.gif" alt="Plants in toychest" /><br />
|
||||
<a href="Tallgreenplantmovable.zip">Tall Green Plant</a><br />
|
||||
<a href="Yellowflowersplantmovable.zip">Yellow Flowers Plant</a>
|
||||
</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<div class="big">.</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
BIN
carolyns_creations/babyz/babyztoyz/magnets.gif
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
carolyns_creations/babyz/babyztoyz/stuffedman.zip
Normal file
BIN
carolyns_creations/babyz/babyztoyz/teletubbiesagain.zip
Normal file
BIN
carolyns_creations/babyz/babyztoyz/teletubbs.zip
Normal file
6
carolyns_creations/babyz/vvccr/DATA.TAG
Executable file
|
@ -0,0 +1,6 @@
|
|||
[TagInfo]
|
||||
Company=IBM
|
||||
Application=
|
||||
Version=5.3.0.10
|
||||
Category=Development Tool
|
||||
Misc=
|
BIN
carolyns_creations/babyz/vvccr/SETUP.EXE
Executable file
3
carolyns_creations/babyz/vvccr/SETUP.INI
Executable file
|
@ -0,0 +1,3 @@
|
|||
[Startup]
|
||||
AppName=IBM ViaVoice Technology - Command And Control Runtime
|
||||
FreeDiskSpace=1075
|
BIN
carolyns_creations/babyz/vvccr/_INST32I.EX_
Executable file
BIN
carolyns_creations/babyz/vvccr/_ISDEL.EXE
Executable file
BIN
carolyns_creations/babyz/vvccr/_SETUP.DLL
Executable file
BIN
carolyns_creations/babyz/vvccr/_sys1.cab
Executable file
BIN
carolyns_creations/babyz/vvccr/_user1.cab
Executable file
BIN
carolyns_creations/babyz/vvccr/data1.cab
Executable file
BIN
carolyns_creations/babyz/vvccr/dcom95.exe
Executable file
194
carolyns_creations/babyz/vvccr/lang.dat
Executable file
|
@ -0,0 +1,194 @@
|
|||
[Info]
|
||||
Name=INTL
|
||||
Version=1.00.000
|
||||
[0x0409]
|
||||
TITLE=Choose Setup Language
|
||||
DESCRIPTION=Select the language for this installation from the choices below.
|
||||
OK=OK
|
||||
Cancel=Cancel
|
||||
|
||||
[0x0407]
|
||||
TITLE=W鋒len Sie eine Setup-Sprache aus
|
||||
DESCRIPTION=W鋒len Sie die Sprache dieser Installation aus der unten aufgef黨rten Auswahl aus.
|
||||
OK=OK
|
||||
Cancel=Abbrechen
|
||||
|
||||
[0x040c]
|
||||
TITLE=S閘ection de la langue d'installation
|
||||
DESCRIPTION=S閘ectionnez la langue d'installation de la liste ci-dessous.
|
||||
OK=OK
|
||||
Cancel=Annuler
|
||||
|
||||
[0x0410]
|
||||
TITLE=Scegliere la lingua di installazione
|
||||
DESCRIPTION=Selezionare la lingua per questa installazione dalla selezione seguente.
|
||||
OK=OK
|
||||
Cancel=Annulla
|
||||
|
||||
[0x040a]
|
||||
TITLE=Seleccione el idioma de configuraci髇
|
||||
DESCRIPTION=Seleccionar uno de los siguientes idiomas para la instalaci髇.
|
||||
OK=Aceptar
|
||||
Cancel=Cancelar
|
||||
|
||||
[0x041d]
|
||||
TITLE=V鋖j installationsspr錵
|
||||
DESCRIPTION=V鋖j installationsspr錵 bland valen nedan.
|
||||
OK=OK
|
||||
Cancel=Avbryt
|
||||
|
||||
[0x0416]
|
||||
TITLE=Sele玢o do Idioma para a Instala玢o
|
||||
DESCRIPTION=Selecione um idioma para esta instala玢o a partir da listagem de idiomas abaixo.
|
||||
OK=OK
|
||||
Cancel=Cancelar
|
||||
|
||||
[0x0c0c]
|
||||
TITLE=S閘ection de la langue d'installation
|
||||
DESCRIPTION=S閘ectionnez la langue d'installation d閟ir閑 parmis les choix offert ci-dessous.
|
||||
OK=OK
|
||||
Cancel=Annuler
|
||||
|
||||
[0x042d]
|
||||
TITLE=Aukeratu instalazioa egiteko hizkuntza
|
||||
DESCRIPTION=Hautatu hizkuntza bat beheko aukeren artean.
|
||||
OK=Ados
|
||||
Cancel=Utzi
|
||||
|
||||
[0x0403]
|
||||
TITLE=Esculli la llengua del Setup
|
||||
DESCRIPTION=Seleccioni la llengua per a aquesta instal.laci?de la seg黣nt llista.
|
||||
OK=D'acord
|
||||
Cancel=Cancel穕a
|
||||
|
||||
[0x0405]
|
||||
TITLE=Vyberte jazyk
|
||||
DESCRIPTION=Vyberte jazyk z uveden?nab韉ky pro tuto instalaci.
|
||||
OK=OK
|
||||
Cancel=Zru歩t
|
||||
|
||||
[0x0406]
|
||||
TITLE=V鎙g installationssproget
|
||||
DESCRIPTION=V鎙g installationssproget fra den f鴏gende liste.
|
||||
OK=OK
|
||||
Cancel=Annuller
|
||||
|
||||
[0x0413]
|
||||
TITLE=Kies Setup-taal
|
||||
DESCRIPTION=Selecteer de taal voor deze installatie uit de onderstaande lijst.
|
||||
OK=OK
|
||||
Cancel=Annuleren
|
||||
|
||||
[0x040b]
|
||||
TITLE=Valitse asennuskieli
|
||||
DESCRIPTION=Valitse haluamasi asennuskieli alla olevasta luettelosta.
|
||||
OK=OK
|
||||
Cancel=Peruuta
|
||||
|
||||
[0x0408]
|
||||
TITLE=拈犭蓊翦 翮?汶<>筢 邈赆糗篝狍珧
|
||||
DESCRIPTION=硼殡蓊翦 翮?汶<>筢 翮?邈赆糗篝狍珧 狨艮? 狃?糸?疳襻贶豉 屦殡镢蒡.
|
||||
OK=OK
|
||||
Cancel=㈥躐?
|
||||
|
||||
[0x040e]
|
||||
TITLE=A nyelv kiv醠aszt醩a
|
||||
DESCRIPTION=V醠asszon egy nyelvet a telepit閟hez az al醔biak k鰖黮.
|
||||
OK=OK
|
||||
Cancel=Cancel
|
||||
|
||||
[0x0414]
|
||||
TITLE=Velg installeringsspr錵
|
||||
DESCRIPTION=Velg spr錵et du 鴑sker for denne installeringen fra alternativene under.
|
||||
OK=OK
|
||||
Cancel=Avbryt
|
||||
|
||||
[0x0415]
|
||||
TITLE=Wybierz parametry instalacyjne.
|
||||
DESCRIPTION= Wybierz parametry instalacyjne z poni縠j podanych mo縧iwo渃i.
|
||||
OK=OK
|
||||
Cancel=Zako馽z
|
||||
|
||||
[0x0816]
|
||||
TITLE=Seleccione o Idioma da Configura玢
|
||||
DESCRIPTION=Seleccione o idioma para esta instala玢o a partir das seguintes op珲es.
|
||||
OK=OK
|
||||
Cancel=Cancelar
|
||||
|
||||
[0x0424]
|
||||
TITLE=Izberite jezik za pripravo
|
||||
DESCRIPTION=Izberite jezik, ki ga 瀍lite uporabljati pri tej namestitvi izmed teh, ki so navedeni spodaj.
|
||||
OK=OK
|
||||
Cancel=Prekini
|
||||
|
||||
[0x041b]
|
||||
TITLE=Vyberte jazyk
|
||||
DESCRIPTION=Vyberte jazyk z uvedenej ponuky pre t鷗o in歵al醕iu.
|
||||
OK=OK
|
||||
Cancel=Storno
|
||||
|
||||
[0x0411]
|
||||
TITLE=愝掕尵岅偺慖戰
|
||||
DESCRIPTION=偙偺僀儞僗僩乕儖偱巊梡偡傞尵岅傪師偺拞偐傜慖戰偟偰壓偝偄丅
|
||||
OK=OK
|
||||
Cancel=僉儍儞僙儖
|
||||
|
||||
[0x0419]
|
||||
TITLE=蔓犷?<3F>琨赅
|
||||
DESCRIPTION=蔓徨痂蝈 眢骓<E79CA2> <20>琨?桤 耧桉赅.
|
||||
OK=问
|
||||
Cancel=悟戾磬
|
||||
|
||||
[0x0804]
|
||||
TITLE=选择设置语言
|
||||
DESCRIPTION=从以下列表中选择安装语言.
|
||||
OK=确定
|
||||
Cancel=取消
|
||||
|
||||
[0x0404]
|
||||
TITLE=匡<><E58CA1>杆粂ē
|
||||
DESCRIPTION=眖<><E79C96>睲虫い匡<E38184>璶<EFBFBD>杆<EFBFBD>粂ē
|
||||
OK=絋﹚
|
||||
Cancel=<3D><>
|
||||
|
||||
[0x041f]
|
||||
TITLE=Kur dilini se鏸n
|
||||
DESCRIPTION=Bu y黭leme i鏸n a<>餴daki se鏴neklerden istedi餴niz dili se鏸n.
|
||||
OK=Tamam
|
||||
Cancel=輕tal Et
|
||||
|
||||
[0x0401]
|
||||
TITLE=盼是?巅?妊淝闾 轻炮锨?
|
||||
DESCRIPTION=盼是?巅?轻输枕?沅 轻雾茄鞘 轻是犴?
|
||||
OK=沔禽?
|
||||
Cancel=裴矍?轻勉?
|
||||
|
||||
[0x041e]
|
||||
TITLE=嗯淄±疑曳砧悛殂光幻帷昧翟吹验?
|
||||
DESCRIPTION=嗯淄±疑沂铀醚骸颐翟吹验Ч臻ㄒ∶衣∫梅砧琳闼猷抛汀㈤咬盆咬拐?
|
||||
OK=怠脓
|
||||
Cancel=隆嗯浴
|
||||
|
||||
[0x042a]
|
||||
TITLE=Cho騨 ng鬾 ng<6E> ca蘨 疸騮
|
||||
DESCRIPTION=Cho騨 ng鬾 ng<6E> cho ph馓n ca蘨 疸騮 na蘺 t<> danh mu騝 d<>靑 疴y.
|
||||
OK=旋躜c
|
||||
Cancel=Th鬷
|
||||
|
||||
[0x0412]
|
||||
TITLE=汲摹 攫绢 急琶
|
||||
DESCRIPTION=捞 汲摹甫 困秦 盔窍绰 攫绢甫 酒贰俊辑 急琶窍绞矫坷.
|
||||
OK=犬牢
|
||||
Cancel=秒家
|
||||
|
||||
[0x040d]
|
||||
TITLE=徵?帔 <20>?滗<>痄
|
||||
DESCRIPTION=徵?帔 澌翡 熹<>痄 驽 钺轱 溧豉<E6BAA7>殄?漕弭轵妃 熹祜.
|
||||
OK=嚅<>?
|
||||
Cancel=衢桢?
|
||||
|
||||
[0x0421]
|
||||
TITLE=Pilih bahasa yang akan dipakai
|
||||
DESCRIPTION=Pilih bahasa untuk dipasang dari daftar dibawah ini
|
||||
OK=Setuju
|
||||
Cancel=Pembatalan
|
BIN
carolyns_creations/babyz/vvccr/layout.bin
Executable file
14
carolyns_creations/babyz/vvccr/os.dat
Executable file
|
@ -0,0 +1,14 @@
|
|||
[Info]
|
||||
Name=PLATFORM
|
||||
Version=1.00.000
|
||||
|
||||
[0x0009]
|
||||
OS Independent=0x0000000000000000
|
||||
Windows 3.1 & 3.11=0x0000000000000001
|
||||
Windows 95=0x0000000000000010
|
||||
Windows NT 3.51 (Intel)=0x0000000000001000
|
||||
Windows NT 3.51 (Alpha)=0x0000000000002000
|
||||
Windows NT 3.51 (MIPS)=0x0000000000004000
|
||||
Windows NT 4.0 (Intel)=0x0000000000010000
|
||||
Windows NT 4.0 (Alpha)=0x0000000000020000
|
||||
Windows NT 4.0 (MIPS)=0x0000000000040000
|
47
carolyns_creations/babyz/vvccr/readrtus.htm
Executable file
|
@ -0,0 +1,47 @@
|
|||
<HTML>
|
||||
<HEAD>
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
|
||||
<META NAME="Generator" CONTENT="Microsoft Word 97">
|
||||
<TITLE>readme</TITLE>
|
||||
<META NAME="Template" CONTENT="D:\Microsoft Office\Office\html.dot">
|
||||
</HEAD>
|
||||
<BODY LINK="#0000ff" VLINK="#800080">
|
||||
|
||||
<P><A NAME="TOP"></A></P>
|
||||
<B><I><FONT SIZE=5 COLOR="#000080"><P ALIGN="CENTER">IBM ViaVoice Runtime, version 5.3<BR>
|
||||
Read Me!</P>
|
||||
</B></I></FONT><P><HR></P>
|
||||
<FONT SIZE=4 COLOR="#000080"><P>Here is the latest information on ViaVoice Runtime.</P>
|
||||
<P>Please familiarize yourself with this Read Me. It complements the Problem Solving Reference in ViaVoice Help. Before calling Technical Support, check this Read Me any time you have a question not covered in the Problem Solving Reference, other online Help, or the User Guide.</P>
|
||||
</FONT><P><HR></P>
|
||||
<H2>Contents</H2>
|
||||
<TABLE CELLSPACING=0 BORDER=0 CELLPADDING=7 WIDTH=636>
|
||||
<TR><TD VALIGN="TOP" HEIGHT=111>
|
||||
<P> <A HREF="#A"><B>A. Windows NT limitations.</B></A> </P>
|
||||
<P><A HREF="#B"><B>B. Installing/uninstalling ViaVoice 98 over other speech software.</B></A></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P><HR></P>
|
||||
<B><FONT SIZE=4 COLOR="#0000ff"><P><A NAME="A"></A>A. Windows NT limitations.</P>
|
||||
|
||||
<UL>
|
||||
</B></FONT><LI>You must have administrator privileges to install and uninstall on Windows NT. </LI>
|
||||
<LI>If running IBM Antivirus for Windows NT, make sure you use release 3.0 or later. Earlier releases conflict with ViaVoice installation. </LI></UL>
|
||||
|
||||
<P><HR></P>
|
||||
<B><FONT SIZE=4 COLOR="#0000ff"><P><A NAME="B"></A>B. Installing/uninstalling ViaVoice 98 over other speech software.</P>
|
||||
</FONT><FONT SIZE=4><P>Installing then uninstalling ViaVoice98 products over ViaVoice Runtime.</P>
|
||||
</B></FONT><P>If you install a ViaVoice 98 full product over an installation of the ViaVoice Runtime, and then uninstall it, but want to continue using the Runtime, you must uninstall then reinstall the Runtime into the same directory. Your personal dictation data (added words, enrollments, etc.) will be saved.</P>
|
||||
<B><FONT SIZE=4><P>For best recognition, do not use the "(migrated)" enrollment</P>
|
||||
</B></FONT><P>If you install ViaVoice 98 over a previous ViaVoice or VoiceType product, the installation program migrates the users of the previous product to ViaVoice 98. User data such as added words, macros, as well as <B>enrollments</B> are migrated to ViaVoice 98. The descriptions of enrollments migrated from the previous product contain the word <B>"(migrated)"</B>. In addition to the migrated enrollments ViaVoice 98 creates a <B>new enrollment</B> for each user whose description does not contain the word "(migrated)". For best recognition results, you must select this new enrollment from the "The user is enrolled to use:" dropdown box in the User page of ViaVoice Options, and then run the Enrollment program.</P>
|
||||
<B><FONT SIZE=4><P>Installing over VoiceType 3.0.x, Simply Speaking, or Simply Speaking Gold.</P>
|
||||
</B></FONT><P>ViaVoice 98 is a continuous speech product. If you install it on a computer where a discrete speech product such as VoiceType 3.0.x or Simply Speaking is already installed, be sure that you install in the same directory as the previous product. Your added words and other personal data will migrate to ViaVoice 98, and ViaVoice 98 will save your personal speech files from the previous product in the directory "~users30." Your VoiceType 3.0.x and Simply Speaking enrollments cannot be used by ViaVoice 98. You must re-enroll in ViaVoice 98 to increase recognition accuracy and performance.</P>
|
||||
<P>If you uninstall ViaVoice 98 and reinstall VoiceType 3.0.x or Simply Speaking, you must reinstall in the same directory. You must also copy the subdirectories in the "~users30" directory to the Users directory in order to restore the user data of the previous product.</P>
|
||||
<B><FONT SIZE=4><P>Installing then uninstalling over Olympus or other dictation software</P>
|
||||
</B></FONT><P>If you install ViaVoice 98 over Olympus or other ViaVoice-based dictation software, and then uninstall ViaVoice 98, and you want to continue using your other dictation software (such as Olympus transcription), you must uninstall the other dictation software, then reinstall it in the same directory. Your personal dictation data (added words, enrollments, etc.) will be saved.</P>
|
||||
<B><FONT SIZE=4><P>Ignore page fault when installing Olympus transcription over ViaVoice 98.</P>
|
||||
</B></FONT><P>Sometimes when you install Olympus transcription over ViaVoice 98, the Olympus transcription installation menu might cause a page fault. Simply close the page fault dialog box, and proceed with Olympus transcription installation. The Olympus installation will complete successfully.</P>
|
||||
<P><A NAME="G"></A><A HREF="#TOP">Return to top</A></P>
|
||||
<P><A HREF="http://www.software.ibm.com/workgroup/voicetyp/">Go to the IBM VoiceType Home Page</A> </P></BODY>
|
||||
</HTML>
|
98
carolyns_creations/babyz/vvccr/readrtus.txt
Executable file
|
@ -0,0 +1,98 @@
|
|||
IBM ViaVoice Runtime, version 5.3
|
||||
Read Me!
|
||||
|
||||
Here is the latest information on ViaVoice Runtime.
|
||||
Please familiarize yourself with this Read Me. It complements
|
||||
the Problem Solving Reference in ViaVoice Help. Before
|
||||
calling Technical Support, check this Read Me any time you have
|
||||
a question not covered in the Problem Solving Reference, other online
|
||||
Help, or the User Guide.
|
||||
|
||||
Contents
|
||||
========
|
||||
|
||||
A. Windows NT limitations.
|
||||
|
||||
B. Installing/uninstalling ViaVoice over other speech software.
|
||||
|
||||
|
||||
=================================================================
|
||||
|
||||
-----------------------------------------------------------------
|
||||
A. Windows NT limitations.
|
||||
|
||||
- You must have administrator privileges to install and uninstall
|
||||
on Windows NT.
|
||||
|
||||
- If running IBM Antivirus for Windows NT, make sure you use
|
||||
release 3.0 or later. Earlier releases conflict with ViaVoice
|
||||
installation.
|
||||
|
||||
-----------------------------------------------------------------
|
||||
B. Installing/uninstalling ViaVoice over other dictation
|
||||
software.
|
||||
|
||||
Installing then uninstalling ViaVoice98 products over ViaVoice Runtime.
|
||||
|
||||
o If you install a ViaVoice 98 full product over an installation of the
|
||||
ViaVoice Runtime and then uninstall.
|
||||
|
||||
If you install ViaVoice 98 over the ViaVoice Runtime
|
||||
and then uninstall ViaVoice 98, and then uninstall, but want
|
||||
to continue using the Runtime, you must uninstall then reinstall
|
||||
the Runtime into the same directory. Your personal dictation data
|
||||
(added words, enrollments, etc.) will be saved.
|
||||
|
||||
o For best recognition, do not use the "(migrated)" enrollment
|
||||
|
||||
If you install ViaVoice over a previous ViaVoice or
|
||||
VoiceType product, the installation program migrates the users
|
||||
of the previous product to ViaVoice 98. User data such as
|
||||
added words, macros, as well as enrollments are migrated to
|
||||
ViaVoice 98. The descriptions of enrollments migrated from the
|
||||
previous product contain the word "(migrated)". In addition to
|
||||
the migrated enrollments ViaVoice 98 creates a new enrollment
|
||||
for each user whose description does not contain the word
|
||||
"(migrated)". For best recognition results, you must select
|
||||
this new enrollment from the "The user is enrolled to use:"
|
||||
dropdown box in the User page of ViaVoice Options, and then run
|
||||
the Enrollment program.
|
||||
|
||||
o Installing over VoiceType 3.0.x, Simply Speaking, or
|
||||
Simply Speaking Gold.
|
||||
|
||||
ViaVoice is a continuous speech product. If you install it on a
|
||||
computer where a discrete speech product such as VoiceType 3.0.x or
|
||||
Simply Speaking is already installed, be sure that you install in the
|
||||
same directory as the previous product. Your added words and other
|
||||
personal data will migrate to ViaVoice 98, and ViaVoice 98 will save
|
||||
your personal speech files from the previous product in the directory
|
||||
"~users30." Your VoiceType 3.0.x and Simply Speaking enrollments
|
||||
cannot be used by ViaVoice 98. You must re-enroll in ViaVoice 98 to
|
||||
increase recognition accuracy and performance.
|
||||
|
||||
If you uninstall ViaVoice 98 and reinstall VoiceType 3.0.x or
|
||||
Simply Speaking, you must reinstall in the same directory. You
|
||||
must also copy the subdirectories in the "~users30" directory
|
||||
to the Users directory in order to restore the user data of the
|
||||
previous product.
|
||||
|
||||
o Installing then uninstalling ViaVoice 98 over Olympus or
|
||||
other ViaVoice-based dictation software.
|
||||
|
||||
If you install ViaVoice 98 over Olympus or other dictation
|
||||
software based on ViaVoice, and then uninstall ViaVoice 98, and
|
||||
you want to continue using your other dictation software (such
|
||||
as Olympus transcription), you must uninstall the other
|
||||
dictation software, then reinstall it in the same directory.
|
||||
Your personal dictation data (added words, enrollments, etc.)
|
||||
will be saved.
|
||||
|
||||
o Ignore page fault when installing Olympus transcription over
|
||||
ViaVoice 98.
|
||||
|
||||
Sometimes when you install Olympus transcription over ViaVoice
|
||||
98, the Olympus transcription installation menu might cause a
|
||||
page fault. Simply close the page fault dialog box, and
|
||||
proceed with Olympus transcription installation. The Olympus
|
||||
installation will complete successfully.
|
BIN
carolyns_creations/babyz/vvccr/setup.ins
Executable file
5
carolyns_creations/babyz/vvccr/setup.lid
Executable file
|
@ -0,0 +1,5 @@
|
|||
[Languages]
|
||||
key0=0009
|
||||
Default=0009
|
||||
count=1
|
||||
|
11
carolyns_creations/babyz/vvccr/setup.log
Executable file
|
@ -0,0 +1,11 @@
|
|||
[InstallShield Silent]
|
||||
Version=v5.00.000
|
||||
File=Log File
|
||||
|
||||
[Application]
|
||||
Name=IBM ViaVoice Command and Control Runtime
|
||||
Version=5.3
|
||||
Company=IBM
|
||||
|
||||
[ResponseResult]
|
||||
ResultCode=0
|
BIN
carolyns_creations/babyz/vvccr/spchapi.exe
Executable file
80
carolyns_creations/babyz/vvccr/vvccr.html
Normal file
|
@ -0,0 +1,80 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>Viavoice for Babyz</title>
|
||||
<!-- end from source -->
|
||||
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body class="center purple big">
|
||||
<p class="bigger">
|
||||
<b>Viavoice for Babyz</b><br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Make a directory off your main drive and call it vvccr<br />
|
||||
Then download all these and place them in the vvccr directory.
|
||||
double-click on Setup.exe to install your viaVoice.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
PLEASE NOTE you're on your own with this one. I never bothered to install
|
||||
ViaVoice off my Babyz CD, and I do not use either Windows XP or Vista to
|
||||
play with Babyz so I cannot help if you have ViaVoice problems with those
|
||||
OSes. The files you see below are exactly as they were on my CD, including
|
||||
the Read files, so if there are links in the readme files that don't work,
|
||||
that's IBM's fault.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Here are all the files, zipped up together for people who are having
|
||||
trouble downloading the individual files.<br />
|
||||
<a href="vvccr.zip">Complete vvcr contents</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
And for people who have lost their CD and cannot find another anywhere,
|
||||
<a href="/babyz/babyzfix/">here is a page</a> where you can find a backup
|
||||
ISO image of the complete game and an installation fix. The game is zipped
|
||||
of course, so you would need to unzip it and either burn it to a CD or
|
||||
mount it with image-mounting software. If you don't know what that means,
|
||||
just burn it to a CD.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
If you want to get just an individual file from the Viavoice setup set,
|
||||
here they are unpacked for you.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="DATA.TAG">DATA.TAG</a><br />
|
||||
<a href="SETUP.EXE">SETUP.EXE</a><br />
|
||||
<a href="SETUP.INI">SETUP.INI</a><br />
|
||||
<a href="_INST32I.EX_">_INST32I.EX_</a><br />
|
||||
<a href="_ISDEL.EXE">_ISDEL.EXE</a><br />
|
||||
<a href="_SETUP.DLL">_SETUP.DLL</a><br />
|
||||
<a href="_sys1.cab">_sys1.cab</a><br />
|
||||
<a href="_user1.cab">_user1.cab</a><br />
|
||||
<a href="data1.cab">data1.cab</a><br />
|
||||
<a href="dcom95.exe">dcom95.exe</a><br />
|
||||
<a href="lang.dat">lang.dat</a><br />
|
||||
<a href="layout.bin">layout.bin</a><br />
|
||||
<a href="os.dat">os.dat</a><br />
|
||||
<a href="readrtus.htm">readrtus.htm</a><br />
|
||||
<a href="readrtus.htm">readrtus.htm</a><br />
|
||||
<a href="setup.ins">setup.ins</a><br />
|
||||
<a href="setup.lid">setup.lid</a><br />
|
||||
<a href="setup.log">setup.log</a><br />
|
||||
<a href="spchapi.exe">spchapi.exe</a>
|
||||
</p>
|
||||
|
||||
<p>.</p>
|
||||
</body>
|
||||
</html>
|
BIN
carolyns_creations/babyz/vvccr/vvccr.zip
Normal file
|
@ -1,233 +1,225 @@
|
|||
/* GENERAL */
|
||||
|
||||
html {
|
||||
--background-color: #fff7d7;
|
||||
--color: #810541;
|
||||
--background-color: #fff7d7;
|
||||
--color: #810541;
|
||||
|
||||
background-color: var(--background-color);
|
||||
font-family: 'Comic Sans MS', serif;
|
||||
background-color: var(--background-color);
|
||||
font-family: "Comic Sans MS", serif;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 13px;
|
||||
color: var(--color);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-top: 55px;
|
||||
font-size: 13px;
|
||||
color: var(--color);
|
||||
padding: 0;
|
||||
margin: 20px 0 0;
|
||||
}
|
||||
|
||||
/* MENU */
|
||||
|
||||
.menu {
|
||||
padding: 7px;
|
||||
margin: 0;
|
||||
color: #660000;
|
||||
font-size: 13px;
|
||||
padding: 7px;
|
||||
margin: 0;
|
||||
color: #660000;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.menu li {
|
||||
list-style: none;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* LINKS */
|
||||
|
||||
a {
|
||||
color: #f63;
|
||||
color: #f63;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #8a2be2;
|
||||
color: #8a2be2;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #0f0;
|
||||
color: #0f0;
|
||||
}
|
||||
|
||||
.defunct {
|
||||
text-decoration: line-through;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* TEXT */
|
||||
|
||||
p {
|
||||
padding: 5px 10px;
|
||||
margin-bottom: 0;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.green {
|
||||
color: #006400;
|
||||
color: #006400;
|
||||
}
|
||||
|
||||
.purple {
|
||||
color: #800080;
|
||||
color: #800080;
|
||||
}
|
||||
|
||||
.brown {
|
||||
color: #660000;
|
||||
color: #660000;
|
||||
}
|
||||
|
||||
.normal {
|
||||
font-size: 13px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.big {
|
||||
font-size: 16px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.bigger {
|
||||
font-size: 18px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.courier {
|
||||
font-family: 'Courier New', serif;
|
||||
font-family: "Courier New", serif;
|
||||
}
|
||||
|
||||
.comic-sans {
|
||||
font-family: 'Comic Sans MS', serif;
|
||||
font-family: "Comic Sans MS", serif;
|
||||
}
|
||||
|
||||
.times-new-roman {
|
||||
font-family: 'Times New Roman', serif;
|
||||
font-family: "Times New Roman", serif;
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: 700;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
/* FORMATTING */
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.float-left {
|
||||
float: left;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.left-align {
|
||||
text-align: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* TODO .first kept in so I don't have to go changing previous pages */
|
||||
.first, .padding-top {
|
||||
padding-top: 90px;
|
||||
.huge-gap-top {
|
||||
padding-top: 90px;
|
||||
}
|
||||
|
||||
.small-gap-top {
|
||||
margin-top: 50px;
|
||||
.big-gap-top {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.tiny-gap-top {
|
||||
margin-top: 3px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
|
||||
.side-padding {
|
||||
width: 80%;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
width: 80%;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.more-side-padding {
|
||||
width: 60%;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
width: 60%;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.less-side-padding {
|
||||
width: 90%;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
width: 90%;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
table.img-size img {
|
||||
width: 320px;
|
||||
height: 224px;
|
||||
width: 320px;
|
||||
height: 224px;
|
||||
}
|
||||
|
||||
table.center-table {
|
||||
width: 50%;
|
||||
margin: 0 auto;
|
||||
width: 50%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
table.wide-center-table {
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.border-outer {
|
||||
width: max-content;
|
||||
margin: 0 auto;
|
||||
border: 2px solid;
|
||||
width: max-content;
|
||||
margin: 0 auto;
|
||||
border: 2px solid;
|
||||
}
|
||||
|
||||
.border-outer .border-inner {
|
||||
width: 90vw;
|
||||
margin: 2px;
|
||||
padding: 30px;
|
||||
border: 1px solid;
|
||||
margin: 2px;
|
||||
padding: 30px;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
.border-brown {
|
||||
border-color: #660000;
|
||||
border-color: #660000;
|
||||
}
|
||||
|
||||
.border-green {
|
||||
border-color: #006400;
|
||||
}
|
||||
|
||||
.img-border img {
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
.missing-asset {
|
||||
border: 1px solid;
|
||||
font-style: italic;
|
||||
padding: 10px;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
/* TODO PAGE SPECIFIC */
|
||||
|
||||
#sandz {
|
||||
--background-color: #dafae8;
|
||||
--color: #00552b;
|
||||
--background-color: #dafae8;
|
||||
--color: #00552b;
|
||||
}
|
||||
|
||||
#sandz a {
|
||||
color: #800080;
|
||||
color: #800080;
|
||||
}
|
||||
|
||||
#sandz a:visited {
|
||||
color: #808080;
|
||||
color: #808080;
|
||||
}
|
||||
|
||||
#sandz a:active {
|
||||
color: #f0f;
|
||||
color: #f0f;
|
||||
}
|
||||
|
||||
#catz1dex {
|
||||
--background-color: #33cccc;
|
||||
--color: #000;
|
||||
font-family: Times, serif;
|
||||
--background-color: #33cccc;
|
||||
--color: #000;
|
||||
font-family: Times, serif;
|
||||
}
|
||||
|
||||
#catz1dex a {
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#catz1dex a:visited {
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#dogz1fooler {
|
||||
--background-color: #8442ef;
|
||||
--color: #f7f5d7;
|
||||
font-family: Times, serif;
|
||||
--background-color: #8442ef;
|
||||
--color: #f7f5d7;
|
||||
font-family: Times, serif;
|
||||
}
|
||||
|
||||
#dogz1fooler a {
|
||||
color: #00ff00;
|
||||
color: #00ff00;
|
||||
}
|
||||
|
||||
#dogz1fooler a:visited {
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
|
|
@ -1,63 +1,65 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Carolyn's Creations</title>
|
||||
<head>
|
||||
<title>Carolyn's Creations</title>
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
<style>
|
||||
html {
|
||||
--color: white;
|
||||
--background-color: #202020;
|
||||
|
||||
<style>
|
||||
html {
|
||||
--color: white;
|
||||
--background-color: #202020;
|
||||
background-color: var(--background-color);
|
||||
text-align: center;
|
||||
color: var(--color);
|
||||
font-family: "Comic Sans MS", serif;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
background-color: var(--background-color);
|
||||
text-align: center;
|
||||
color: var(--color);
|
||||
font-family: 'Comic Sans MS', serif;
|
||||
font-size: 1em;
|
||||
}
|
||||
p {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
p {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
a:visited {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:active {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #ffff40;
|
||||
text-decoration: line-through;
|
||||
cursor: ne-resize;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="big-gap-top">
|
||||
<p>
|
||||
Welcome to Carolyn's Creations!<br />
|
||||
<a href="/frames/">Enter frames</a> or
|
||||
<a href="/noframes/">No Frames</a>
|
||||
</p>
|
||||
|
||||
a:hover {
|
||||
color: #ffff40;
|
||||
text-decoration: line-through;
|
||||
cursor: ne-resize;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<p>Welcome to Carolyn's Creations!<br>
|
||||
<a href="/frames/">Enter frames</a> or <a href="/noframes/">No
|
||||
Frames</a></p>
|
||||
<img
|
||||
src="cc-welcome.gif"
|
||||
alt="Image showing several exotic Petz, Oddballz, and a Babyz."
|
||||
/>
|
||||
|
||||
<img src="cc-welcome.gif"
|
||||
alt="Image showing several exotic Petz, Oddballz, and a Babyz.">
|
||||
|
||||
<p>Petz, Babyz, Oddballz, Tutorials and More!</p>
|
||||
</div>
|
||||
</body>
|
||||
<p>Petz, Babyz, Oddballz, Tutorials and More!</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1 +1 @@
|
|||
export const wayback = undefined
|
||||
export const wayback = undefined;
|
||||
|
|
117
carolyns_creations/crashingxp/crashingxp.html
Normal file
|
@ -0,0 +1,117 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- from source -->
|
||||
<title>For Windows XP especially</title>
|
||||
<!-- -->
|
||||
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body class="brown side-padding big">
|
||||
<p class="center purple bigger">
|
||||
<b>In Windows XP; unexplained AC crashes, and sound problems</b><br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Sound Problems with WinXP SP2<br />
|
||||
=============================
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Windows XP with SP2 has special new quirks, and Petz 5 apparently starts
|
||||
up with a sounds error message now. Kahlah has posted an alert about this
|
||||
on
|
||||
<a
|
||||
href="https://web.archive.org/web/20060105132413/http://lesley.proboards21.com/index.cgi?boardpetforum"
|
||||
target="_top"
|
||||
>the APKC/BCKC forum </a
|
||||
>, you may find more info there, but here's the quick fix for you: If Petz
|
||||
5 won't play sounds for you, find the two files smapi.dll and setupapi.dll
|
||||
which are both where you installed Petz 5 (probably C:\Program Files\UBI
|
||||
Soft\Studio Mythos\Petz 5) and delete them. If you cannot see .dll files
|
||||
on your machine, open My Computer, Choose View Options from the menu, and
|
||||
make sure that View all files is ticked on the View tab. Then you'll see
|
||||
those files and can remove them. Actually, Petz 5 will run just fine
|
||||
without most of the files which are in that main directory.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Breedfiles Crashing problems<br />
|
||||
===========================
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Okay, I'm writing this because it seems that people -- usually with
|
||||
Windows XP, but also sometimes with updated Windows ME systems -- are
|
||||
getting Petz 4 or 5 doing a crash-to-desktop when trying to bring some of
|
||||
my breedz out at the Adoption centre. Sometimes it happens with
|
||||
already-adopted petz when they try to breed. In most cases, there is
|
||||
nothing wrong with the breedfile. I always check when someone reports a
|
||||
problem and, if the breed does not crash my game, you have come up against
|
||||
the "XP-nasties". This is a problem that I am unable to duplicate because
|
||||
I do not have (and never intend to have) that operating system on my
|
||||
machine (or Windows ME either), and all my breedz work fine on my system.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
From what I can gather, it tends to be mostly Mutt or Dalmatian-based
|
||||
breedz which crash in this manner, and I have found that people who
|
||||
complain about this can often run the breedz fine if I remove a certain
|
||||
part from the file. I have no time now to go through every single one of
|
||||
my breedz to re-do them just in case they produce this problem which
|
||||
doesn't happen for me, nor do I want to mess them about like that, so I'm
|
||||
telling you here what you can try in order to get the pets to come out or
|
||||
breed for you.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
First of all, make sure you've downloaded the sound-stripped version of
|
||||
the breedfile as opposed to the patchfile version. I believe that people
|
||||
have been having other problems with Windows ME or XP and the patchfiles.
|
||||
I do not now have patchfiles at this site, but if you got one from
|
||||
somewhere else, dump it and grab the proper one.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Now, either using
|
||||
<a href="http://www.angusj.com/resourcehacker/" target="_top"
|
||||
>ResHacker </a
|
||||
>or a hex editor of your choice, remove the [Fur Markings] which are below
|
||||
[Ballz Info]. If this doesn't fix the problem, also remove the [Fur Color
|
||||
Areas].
|
||||
</p>
|
||||
|
||||
<p>
|
||||
With ResHacker you can either delete the whole [Fur Markings] section from
|
||||
the beginning of [Fur Markings] down to directly before [Lnz Version] (do
|
||||
not touch [Lnz Version]) or simply insert a semi-colon at the beginning of
|
||||
each line (this is a "comment-out") but not the [Lnz Version] line. If
|
||||
you're removing [Fur Color Areas] also, similarly delete or comment-out
|
||||
from the beginning of [Fur Color Areas] to directly before [Lnz Version].
|
||||
Compile, save, and run the game with the breedfile in place.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
With a hex editor you can replace all the part from the beginning of [Fur
|
||||
Markings] (or [Fur Color Areas]) down to and including the last number
|
||||
<b>before</b> [Lnz Version] with spaces. Save, and run the game with the
|
||||
breedfile in place.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The pet should come out of the Adoption Centre now even with horrible old
|
||||
Windows XP, and if it doesn't then I can't help you -- as I said before,
|
||||
my breedz work fine in my game just as they are.
|
||||
</p>
|
||||
|
||||
<p class="bigger purple center">Enjoy!</p>
|
||||
|
||||
<p class="bigger purple center">Carolyn Horn</p>
|
||||
</body>
|
||||
</html>
|
|
@ -1,41 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cyberpets</title>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Cyberpets</title>
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js?@root" type="module"></script>
|
||||
<!-- saudade includes -->
|
||||
<script src="/saudade.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center">
|
||||
<br /><br />
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js?@root" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center">
|
||||
<br><br>
|
||||
<p class="bigger purple">
|
||||
<b>I now have three cyberpets :-)</b><br />
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br />
|
||||
<br />
|
||||
</p>
|
||||
|
||||
<p class="bigger purple">
|
||||
<b>I now have three cyberpets :-)</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
|
||||
<br>
|
||||
</p>
|
||||
<p class="bigger">
|
||||
<a href="/cyberpet1/">See Norbessa</a>
|
||||
<br /><br />
|
||||
</p>
|
||||
|
||||
<p class="bigger">
|
||||
<a href="/cyberpet1/">See Norbessa</a>
|
||||
<br><br>
|
||||
</p>
|
||||
<p class="bigger">
|
||||
<a href="/cyberpet2/">Meet Aodh</a>
|
||||
<br /><br />
|
||||
</p>
|
||||
|
||||
<p class="bigger">
|
||||
<a href="/cyberpet2/">Meet Aodh</a>
|
||||
<br><br>
|
||||
</p>
|
||||
|
||||
<p class="bigger">
|
||||
<a href="/cyberpet3/">Meet Silvio</a>
|
||||
<br><br>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
<p class="bigger">
|
||||
<a href="/cyberpet3/">Meet Silvio</a>
|
||||
<br /><br />
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,41 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cyberpets</title>
|
||||
<link rel="stylesheet" href="/carolyns_creations/style.css">
|
||||
|
||||
<!-- archive menu -->
|
||||
<script src="/menu.js" type="module"></script>
|
||||
|
||||
<!-- polyfills -->
|
||||
<script src="/polyfills.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center">
|
||||
<br><br>
|
||||
|
||||
<p class="bigger purple">
|
||||
<b>I now have three cyberpets :-)</b><br>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
<p class="bigger">
|
||||
<a href="/carolyns_creations/cyberpet1/">See Norbessa</a>
|
||||
<br><br>
|
||||
</p>
|
||||
|
||||
<p class="bigger">
|
||||
<a href="/carolyns_creations/cyberpet2/">Meet Aodh</a>
|
||||
<br><br>
|
||||
</p>
|
||||
|
||||
<p class="bigger">
|
||||
<a href="/carolyns_creations/cyberpet3/">Meet Silvio</a>
|
||||
<br><br>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|