Add TDKHome files
Add TDKHome files
46
TDKHome/3ds.html
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
<script>
|
||||
if (navigator.userAgent.match(/Nintendo 3DS/i)){
|
||||
if (confirm("You are currently using a 3DS Would you like to go to 3DS Homepage instead?")){
|
||||
window.location="http://3ds.dsihomepage.x10.mx/";
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<html>
|
||||
<head>
|
||||
<title>3DS Stuff</title>
|
||||
<meta name="viewport" content="width=240">
|
||||
<style>
|
||||
body { font-size:10px; }
|
||||
div { border:1px solid gray; background:lightgray; font-size:16px; }
|
||||
a { text-decoration:none; }
|
||||
</style>
|
||||
<script>
|
||||
function mii(){
|
||||
document.getElementById('body').innerHTML='<style>body { margin:0px; }</style><iframe width=240 height=352 frameborder=0 border=0 src="http://3ds.dsihomepage.x10.mx/mii/all.php"></iframe><script>document.body.scrollTop=176;<\/script>';
|
||||
}
|
||||
function friend(){
|
||||
document.getElementById('body').innerHTML='<style>body { margin:0px; }</style><iframe width=240 height=176 frameborder=0 border=0 src="/friends/createonline.php"></iframe>';
|
||||
}
|
||||
function sysupdate(){
|
||||
document.getElementById('body').innerHTML='<font size=2>Please preform a system update when you get your unit, even right this very second there is an update that comes with a free video. Comming in late May, in a system update, is the WEB BROWSER, system transfer, DSiWare, and eShop.</font>';
|
||||
}
|
||||
function specifications(){
|
||||
document.getElementById('body').innerHTML='<style>body { margin:0px; }</style><iframe width=240 height=352 frameborder=0 border=0 src="/more/3ds.html"></iframe><script>document.body.scrollTop=176;<\/script>';
|
||||
}
|
||||
function homepage(){
|
||||
window.location="http://3ds.dsihomepage.x10.mx/";
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body id=body>
|
||||
<div><center><a href="javascript:mii();">Mii codes</a></center></div>
|
||||
<br>
|
||||
<div><center><a href="javascript:friend();">Friend codes</a></center></div>
|
||||
<br>
|
||||
<div><center><a href="javascript:sysupdate();">System update</a></center></div>
|
||||
<br>
|
||||
<div><center><a href="javascript:specifications();">Specifications</a></center></div>
|
||||
<br>
|
||||
<div><center><a href="javascript:homepage();">3DS Homepage</a></center></div>
|
||||
</body>
|
||||
</html>
|
||||
16
TDKHome/README.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# TDKHome
|
||||
<p><img align="center" src="https://avatars.githubusercontent.com/u/130017968?s=200&v=4" alt="SDKPaint" /></p>
|
||||
|
||||
|
||||
Continuing the legacy of the SDKPaint community.
|
||||
|
||||
To-do:
|
||||
- Get started. [✔️]
|
||||
- Re-write assets. [95%]
|
||||
- Fix up assets. [✔️]
|
||||
- Backend development. [Not Needed ATM.]
|
||||
- Open testing phase. [✔️]
|
||||
|
||||
[](https://discord.gg/VhfM3UncBB)<br>
|
||||
https://guilded.gg/TDK<br>
|
||||
https://sdkpaint.github.io/TDKHome/
|
||||
9
TDKHome/TDKCade/BlockBreaker/credits.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found</h1>
|
||||
<p>The requested URL was not found on this server.</p>
|
||||
<p>Additionally, a 404 Not Found
|
||||
error was encountered while trying to use an ErrorDocument to handle the request.</p>
|
||||
</body></html>
|
||||
834
TDKHome/TDKCade/BlockBreaker/game.html
Normal file
|
|
@ -0,0 +1,834 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/BlockBreaker/game.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:30:05 GMT -->
|
||||
<head>
|
||||
<title>Defend Our Home (D.O.H.)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=240" />
|
||||
<script src="../js/json2.js"></script>
|
||||
<script src="../js/highscores.js"></script>
|
||||
|
||||
<script src="../js/sprites.js"></script>
|
||||
<script>
|
||||
var ANGLES = [[-3, -1], [-2, -2], [-1, -3], [1, -3], [2, -2], [3, -1]];
|
||||
var time = 0;
|
||||
var timer = 0;
|
||||
var total = 0;
|
||||
var destroyed = 0;
|
||||
var pills = [];
|
||||
var hits = [];
|
||||
var damaged = [];
|
||||
|
||||
var dud;
|
||||
|
||||
var score = 0;
|
||||
var level = 0;
|
||||
var lastLife = 0;
|
||||
|
||||
var balls = [{
|
||||
x: 99,
|
||||
y: 157,
|
||||
stuck: true,
|
||||
dirx: 2,
|
||||
diry: -2,
|
||||
speed: 4
|
||||
}];
|
||||
|
||||
var paddle = {
|
||||
x: 89,
|
||||
y: 160,
|
||||
width: 21,
|
||||
height: 5,
|
||||
lives: 3,
|
||||
ammo: 0,
|
||||
type: 0,
|
||||
render: true
|
||||
};
|
||||
|
||||
var shots = [];
|
||||
|
||||
var blocks;
|
||||
var blocksx = 15;
|
||||
var blocksy = 30;
|
||||
|
||||
var colors = ["green", "yellow", "lilac", "orange", "red", "cyan", "brown", "purple", "gray", "gold"];
|
||||
|
||||
var sprites = [];
|
||||
var list = ["bg", "paddle1", "paddle2", "paddle3", "ball", "b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "b10", "hit", "pr1", "pr2", "pr3", "pr4", "pr5", "pr6", "pr7", "pp1", "pp2", "pp3", "pp4", "pp5", "pp6", "pp7", "pb1", "pb2", "pb3", "pb4", "pb5", "pb6", "pb7", "py1", "py2", "py3", "py4", "py5", "py6", "py7", "pg1", "pg2", "pg3", "pg4", "pg5", "pg6", "pg7", "pc1", "pc2", "pc3", "pc4", "pc5", "pc6", "pc7", "shot", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
|
||||
var canvas;
|
||||
var ctx;
|
||||
|
||||
var background;
|
||||
var ctx2;
|
||||
var dirty = new DirtyRectangleManager();
|
||||
|
||||
var hiscores = new HighScores("doh");
|
||||
|
||||
var x = 0;
|
||||
var y = 0;
|
||||
|
||||
function init()
|
||||
{
|
||||
var data;
|
||||
|
||||
background = document.createElement("canvas");
|
||||
background.width = sprites[0].width;
|
||||
background.height = sprites[0].height;
|
||||
|
||||
renderBG();
|
||||
|
||||
ctx2 = background.getContext("2d");
|
||||
ctx2.fillStyle = "white";
|
||||
ctx2.fillRect(0, 0, 240, 176);
|
||||
|
||||
data = ctx.getImageData(0, 0, 240, 176);
|
||||
ctx2.putImageData(data, 0, 0);
|
||||
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
|
||||
nextLevel();
|
||||
|
||||
document.getElementById("loading").parentNode.removeChild(document.getElementById("loading"));
|
||||
}
|
||||
|
||||
function nextLevel()
|
||||
{
|
||||
//Delete shots
|
||||
shots.length = 0;
|
||||
|
||||
//Delete pills
|
||||
pills.length = 0;
|
||||
|
||||
//Clear areas to clean up
|
||||
dirty.clear();
|
||||
damaged.length = 0;
|
||||
|
||||
//Delete extra balls
|
||||
while(balls.length > 1) balls.pop();
|
||||
|
||||
//Stick the first one
|
||||
balls[0].stuck = true;
|
||||
balls[0].y = 157;
|
||||
balls[0].x = balls[0].x = paddle.x + Math.floor(paddle.width/2);
|
||||
balls[0].dirx = 2;
|
||||
balls[0].diry = -2;
|
||||
balls[0].speed = 4;
|
||||
|
||||
//Reset paddle
|
||||
paddle.ammo = 0;
|
||||
paddle.y = 160;
|
||||
paddle.width = 21;
|
||||
paddle.height = 5;
|
||||
paddle.type = 0;
|
||||
|
||||
renderBG();
|
||||
paddle.render = true;
|
||||
|
||||
loadLevel((level%10)+1);
|
||||
level++;
|
||||
|
||||
renderScore();
|
||||
renderLevel();
|
||||
renderLives();
|
||||
}
|
||||
|
||||
function lifeLost()
|
||||
{
|
||||
//for(var i=0; i<pills.length; i++) dirty.add({x: pills[i].x, y: pills[i].y, width: 11, height: 5});
|
||||
|
||||
pills.length = 0;
|
||||
balls = [{
|
||||
x: paddle.x + Math.floor(paddle.width/2),
|
||||
y: 157,
|
||||
stuck: true,
|
||||
dirx: 2,
|
||||
diry: -2,
|
||||
speed: 4
|
||||
}];
|
||||
|
||||
pillCaught(-1);
|
||||
paddle.lives--;
|
||||
renderLives();
|
||||
}
|
||||
|
||||
function submitHighscore()
|
||||
{
|
||||
if(!window.highscoreDIV)
|
||||
{
|
||||
window.highscoreDIV = document.createElement("div");
|
||||
window.highscoreDIV.className = "highscore";
|
||||
|
||||
if(!hiscores.isScoreHigher(score))
|
||||
{
|
||||
highscoreDIV.style.color = "white";
|
||||
highscoreDIV.style.lineHeight = "176px";
|
||||
highscoreDIV.appendChild(document.createTextNode("Game Over"));
|
||||
|
||||
setTimeout("window.location = 'index.html'", 5000);
|
||||
}
|
||||
else
|
||||
{
|
||||
highscoreDIV.style.backgroundColor = "white";
|
||||
|
||||
var div = document.createElement("div");
|
||||
div.style.lineHeight = "50px";
|
||||
div.appendChild(document.createTextNode("New High Score"))
|
||||
highscoreDIV.appendChild(div);
|
||||
|
||||
div = document.createElement("div");
|
||||
div.style.lineHeight = "25px";
|
||||
div.appendChild(document.createTextNode(score+" points"))
|
||||
highscoreDIV.appendChild(div);
|
||||
|
||||
var name = document.createElement("input");
|
||||
name.style.width = "140px";
|
||||
name.maxlength = 16;
|
||||
name.style.margin = "10px";
|
||||
if(hiscores.getCachedName()) name.value = hiscores.getCachedName().substring(0, 16);
|
||||
|
||||
div = document.createElement("div");
|
||||
div.appendChild(name)
|
||||
highscoreDIV.appendChild(div);
|
||||
|
||||
var button = document.createElement("button");
|
||||
|
||||
div = document.createElement("div");
|
||||
button.appendChild(document.createTextNode("Submit"));
|
||||
button.style.margin = "10px";
|
||||
div.appendChild(button)
|
||||
highscoreDIV.appendChild(div);
|
||||
|
||||
button.onclick = function() {
|
||||
var high = new HighScore(name.value, score);
|
||||
|
||||
high.level = level;
|
||||
high.playTime = time;
|
||||
|
||||
hiscores.submitScore(high);
|
||||
|
||||
window.location = "indexe906.html?showScores";
|
||||
};
|
||||
}
|
||||
|
||||
document.body.appendChild(highscoreDIV);
|
||||
}
|
||||
}
|
||||
|
||||
function loadLevel(level)
|
||||
{
|
||||
var data;
|
||||
var screen = document.getElementById("bottomscreen");
|
||||
var request = new XMLHttpRequest();
|
||||
|
||||
request.open("GET.html", "l"+level+".json", false);
|
||||
request.send(null);
|
||||
|
||||
if(request.status != 200) alert("Error: Unable to load level "+level);
|
||||
|
||||
data = eval("("+request.responseText+")");
|
||||
|
||||
total = 0;
|
||||
destroyed = 0;
|
||||
blocksx = data.blocksx;
|
||||
blocksy = data.blocksy;
|
||||
blocks = [];
|
||||
|
||||
for(var y=0; y<data.blocks.length; y++)
|
||||
{
|
||||
blocks[y] = [];
|
||||
|
||||
for(var x=0; x<data.blocks[y].length; x++)
|
||||
{
|
||||
if(data.blocks[y].charAt(x) == " ")
|
||||
{
|
||||
blocks[y][x] = null;
|
||||
}
|
||||
else
|
||||
{
|
||||
blocks[y][x] = {x: (x * 15 + blocksx), y: (y * 7 + blocksy), gridx: x, gridy: y};
|
||||
blocks[y][x].type = Number(data.blocks[y].charAt(x));
|
||||
blocks[y][x].life = (blocks[y][x].type > 7) ? ((blocks[y][x].type == 8) ? 2 : 99) : 1;
|
||||
|
||||
sprites[5+blocks[y][x].type].render(blocks[y][x].x, blocks[y][x].y);
|
||||
|
||||
if((blocks[y][x].type < 9)) total++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function load(index)
|
||||
{
|
||||
sprites[index] = new Sprite("images/"+list[index]+".img.b64", canvas);
|
||||
}
|
||||
|
||||
function render()
|
||||
{
|
||||
dirty.render();
|
||||
|
||||
while(hits.length > 0)
|
||||
{
|
||||
var hit = hits.pop();
|
||||
sprites[5+hit.type].render(hit.x, hit.y);
|
||||
}
|
||||
|
||||
while(damaged.length > 0)
|
||||
{
|
||||
var dmg = damaged.pop();
|
||||
sprites[5+dmg.type].render(dmg.x, dmg.y);
|
||||
}
|
||||
|
||||
for(var i=0; i<balls.length; i++)
|
||||
{
|
||||
if(balls[i].y >= 200)
|
||||
{
|
||||
if(balls.length > 1)
|
||||
{
|
||||
balls.splice(i, 1);
|
||||
i--;
|
||||
continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
//paddle.lives--;
|
||||
//renderLives();
|
||||
lifeLost();
|
||||
}
|
||||
}
|
||||
|
||||
renderBall(balls[i]);
|
||||
}
|
||||
|
||||
renderPills();
|
||||
renderShots();
|
||||
|
||||
sprites[paddle.type+1].render(paddle.x, paddle.y);
|
||||
if(paddle.render) paddle.render = false;
|
||||
|
||||
if(destroyed >= total)
|
||||
{
|
||||
nextLevel();
|
||||
}
|
||||
|
||||
time++;
|
||||
}
|
||||
|
||||
function renderScore()
|
||||
{
|
||||
var temp = score;
|
||||
var count = 0;
|
||||
var x = 229;
|
||||
|
||||
if(score-lastLife >= 250)
|
||||
{
|
||||
lastLife += 250;
|
||||
paddle.lives++;
|
||||
renderLives();
|
||||
}
|
||||
|
||||
while(temp > 0 && count < 5)
|
||||
{
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(x, 28, 8, 16);
|
||||
|
||||
sprites[59 + (temp%10)].render(x, 28);
|
||||
|
||||
count++;
|
||||
x -= 9;
|
||||
temp = Math.floor(temp / 10);
|
||||
}
|
||||
}
|
||||
|
||||
function renderLevel()
|
||||
{
|
||||
var temp = level;
|
||||
var count = 0;
|
||||
var x = 229;
|
||||
|
||||
while(temp > 0 && count < 5)
|
||||
{
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(x, 73, 8, 16);
|
||||
|
||||
sprites[59 + (temp%10)].render(x, 73);
|
||||
|
||||
count++;
|
||||
x -= 9;
|
||||
temp = Math.floor(temp / 10);
|
||||
}
|
||||
}
|
||||
|
||||
function renderLives()
|
||||
{
|
||||
var temp = paddle.lives;
|
||||
var count = 0;
|
||||
var x = 229;
|
||||
|
||||
while(temp > 0 && count < 5)
|
||||
{
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(x, 118, 8, 16);
|
||||
|
||||
sprites[59 + (temp%10)].render(x, 118);
|
||||
|
||||
count++;
|
||||
x -= 9;
|
||||
temp = Math.floor(temp / 10);
|
||||
}
|
||||
}
|
||||
|
||||
function renderBall(ball)
|
||||
{
|
||||
var gridx;
|
||||
var gridy;
|
||||
var block;
|
||||
|
||||
if(timer < time) ball.speed = 4;
|
||||
|
||||
if(!ball.stuck)
|
||||
{
|
||||
for(var i=0; i<ball.speed; i++)
|
||||
{
|
||||
ball.x += ball.dirx;
|
||||
ball.y += ball.diry;
|
||||
block = null;
|
||||
|
||||
if(ball.x >= 177 || ball.x <= 15)
|
||||
{
|
||||
if(ball.x >= 177) ball.x -= (ball.x - 177);
|
||||
else ball.x += (15 - ball.x);
|
||||
|
||||
//ball.x -= ball.dirx;
|
||||
ball.dirx = -ball.dirx;
|
||||
}
|
||||
|
||||
if(ball.y <= 8)
|
||||
{
|
||||
ball.y += (8 - ball.y); //ball.diry;
|
||||
ball.diry = -ball.diry;
|
||||
}
|
||||
|
||||
if((ball.y >= 157 && ball.y < 165) && (paddle.x < ball.x+3 && paddle.x > ball.x-paddle.width))
|
||||
{
|
||||
var dist = Math.floor((ball.x - paddle.x) / (paddle.width / ANGLES.length));
|
||||
|
||||
if(dist < 0) dist = 0;
|
||||
if(dist > 5) dist = 5;
|
||||
|
||||
ball.dirx = ANGLES[dist][0];
|
||||
ball.diry = ANGLES[dist][1];
|
||||
}
|
||||
|
||||
if(ball.y >= blocksy && ball.y <= blocksy + (blocks.length * 7)-3)
|
||||
{
|
||||
var testx = (ball.dirx > 0) ? testDirection(ball, 4, 2) : testDirection(ball, -1, 2);
|
||||
var testy = (ball.diry > 0) ? testDirection(ball, 2, 4) : testDirection(ball, 2, -1);
|
||||
var block = (ball.dirx > ball.diry) ? (testx || testy) : (testy || testx);
|
||||
|
||||
|
||||
if(block)
|
||||
{
|
||||
if(testx == testy)
|
||||
{
|
||||
var altx = (ball.dirx < 0) ? testDirection(ball, 4, 2) : testDirection(ball, -1, 2);
|
||||
var alty = (ball.diry < 0) ? testDirection(ball, 2, 4) : testDirection(ball, 2, -1);
|
||||
|
||||
if(!altx && alty) ball.dirx = -ball.dirx;
|
||||
else if(altx && !alty) ball.diry = -ball.diry;
|
||||
else
|
||||
{
|
||||
ball.dirx = -ball.dirx;
|
||||
ball.diry = -ball.diry;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(block == testy) ball.diry = -ball.diry;
|
||||
if(block == testx) ball.dirx = -ball.dirx;
|
||||
}
|
||||
|
||||
block.life--;
|
||||
|
||||
if(!block.life && Math.floor(Math.random() * 1000)%4 == 0)
|
||||
{
|
||||
var pill = {
|
||||
x: block.x + 1,
|
||||
y: block.y + 2,
|
||||
frame: 0,
|
||||
type: Math.floor(Math.random() * 6000) % 6
|
||||
};
|
||||
|
||||
while((destroyed < total/2 || level%10 == 0) && pill.type == 4) pill.type = Math.floor(Math.random() * 6000) % 6;
|
||||
|
||||
pills.push(pill);
|
||||
}
|
||||
|
||||
if(block.life)
|
||||
{
|
||||
sprites[15].render(block.x, block.y);
|
||||
hits.push(block);
|
||||
}
|
||||
else
|
||||
{
|
||||
destroyed++;
|
||||
|
||||
score += block.type + 1;
|
||||
renderScore();
|
||||
|
||||
dirty.add({x: block.x, y: block.y, width: 15, height: 7});
|
||||
blocks[block.gridy][block.gridx] = null;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
else if(gridy < blocks.length)
|
||||
{
|
||||
dirty.add({x: gridx * 15 + blocksx, y: gridy * 7 + blocksy, width: 15, height: 7});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sprites[4].render(ball.x, ball.y);
|
||||
dirty.add({x: ball.x, y: ball.y, width: 3, height: 3});
|
||||
}
|
||||
|
||||
function testDirection(ball, offx, offy)
|
||||
{
|
||||
gridx = Math.floor((ball.x+offx-blocksx)/15);
|
||||
gridy = Math.floor((ball.y+offy-blocksy)/7);
|
||||
|
||||
if(gridy < blocks.length && blocks[gridy] && (block = blocks[gridy][gridx]))
|
||||
{
|
||||
return block;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
function renderBG()
|
||||
{
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(0, 0, 240, 176);
|
||||
|
||||
sprites[0].render(0, 0);
|
||||
}
|
||||
|
||||
function renderPills()
|
||||
{
|
||||
var pill;
|
||||
|
||||
for(var i=0; i<pills.length; i++)
|
||||
{
|
||||
pill = pills[i];
|
||||
|
||||
pill.frame = (pill.frame+1)%7;
|
||||
pill.y += 3;
|
||||
|
||||
if(pill.y >= 170)
|
||||
{
|
||||
pills.splice(i, 1);
|
||||
i--;
|
||||
}
|
||||
else if(pill.y > 155 && (paddle.x < pill.x+11 && paddle.x > pill.x-paddle.width+1))
|
||||
{
|
||||
pills.splice(i, 1);
|
||||
i--;
|
||||
|
||||
pillCaught(pill);
|
||||
}
|
||||
else
|
||||
{
|
||||
sprites[pill.type*7+pill.frame+16].render(pill.x, pill.y);
|
||||
}
|
||||
|
||||
dirty.add({x: pill.x, y: pill.y, width: 11, height: 5});
|
||||
|
||||
if(pill.y > blocksy)
|
||||
{
|
||||
var gridx = Math.floor((pill.x+1-blocksx)/15);
|
||||
var gridy = Math.floor((pill.y+1-blocksy)/7);
|
||||
|
||||
if(blocks[gridy] && blocks[gridy][gridx]) damaged.push(blocks[gridy][gridx]);
|
||||
if(blocks[gridy+1] && blocks[gridy+1][gridx]) damaged.push(blocks[gridy+1][gridx]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function pillCaught(pill)
|
||||
{
|
||||
timer = 0;
|
||||
|
||||
paddle.render = true;
|
||||
|
||||
if(pill.type != 2 && pill.type != 0)
|
||||
{
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
|
||||
paddle.ammo = 0;
|
||||
paddle.width = 21;
|
||||
paddle.height = 5;
|
||||
paddle.x += Math.floor((paddle.width - 21)/2);
|
||||
paddle.y = 160;
|
||||
paddle.type = 0;
|
||||
}
|
||||
|
||||
if(pill.type == 2)
|
||||
{
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
|
||||
paddle.ammo = 0;
|
||||
paddle.width = 27;
|
||||
paddle.height = 5;
|
||||
paddle.x -= Math.floor((27 - paddle.width)/2);
|
||||
paddle.y = 160;
|
||||
paddle.type = 2;
|
||||
}
|
||||
else if(pill.type == 0)
|
||||
{
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
|
||||
paddle.ammo += 20;
|
||||
paddle.width = 22;
|
||||
paddle.height = 9;
|
||||
paddle.x -= Math.floor((22 - paddle.width)/2);
|
||||
paddle.y = 156;
|
||||
paddle.type = 1;
|
||||
}
|
||||
else if(pill.type == 1)
|
||||
{
|
||||
for(var i=0; i<balls.length; i++) balls[i].speed = 2;
|
||||
timer = time + 450;
|
||||
}
|
||||
else if(pill.type == 3)
|
||||
{
|
||||
score += 25;
|
||||
renderScore();
|
||||
}
|
||||
else if(pill.type == 4)
|
||||
{
|
||||
nextLevel();
|
||||
return;
|
||||
}
|
||||
else if(pill.type == 5)
|
||||
{
|
||||
multiball();
|
||||
}
|
||||
}
|
||||
|
||||
function renderShots()
|
||||
{
|
||||
var gridx;
|
||||
var gridy;
|
||||
var gridHeight = blocksy + (blocks.length * 7)-2
|
||||
var block;
|
||||
var shot;
|
||||
|
||||
for(var i=0; i<shots.length; i++)
|
||||
{
|
||||
shot = shots[i];
|
||||
|
||||
for(var j=0; j<3; j++)
|
||||
{
|
||||
shots[i].y -= 4;
|
||||
|
||||
if(shots[i].y >= blocksy && shots[i].y < gridHeight)
|
||||
{
|
||||
gridx = Math.floor((shot.x+1-blocksx)/15);
|
||||
gridy = Math.floor((shot.y-blocksy)/7);
|
||||
|
||||
if(gridy < blocks.length && (block = blocks[gridy][gridx]) && block.type < 9)
|
||||
{
|
||||
destroyed++;
|
||||
dirty.add({x: block.x, y: block.y, width: 15, height: 7});
|
||||
//block.div.parentNode.removeChild(block.div);
|
||||
blocks[gridy][gridx] = null;
|
||||
|
||||
//shots[i].sprite.parentNode.removeChild(shots[i].sprite);
|
||||
dirty.add({x: shot.x, y: shot.y, width: 3, height: 5});
|
||||
shots.splice(i, 1);
|
||||
i--;
|
||||
|
||||
if(destroyed >= total)
|
||||
{
|
||||
nextLevel();
|
||||
return;
|
||||
}
|
||||
|
||||
j=4;
|
||||
}
|
||||
else if(block)
|
||||
{
|
||||
shots.splice(i, 1);
|
||||
i--;
|
||||
j=4;
|
||||
|
||||
damaged.push(block);
|
||||
}
|
||||
else if(gridy < blocks.length)
|
||||
{
|
||||
dirty.add({x: gridx * 15 + blocksx, y: gridy * 7 + blocksy, width: 15, height: 7});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sprites[58].render(shot.x, shot.y);
|
||||
dirty.add({x: shot.x, y: shot.y, width: 3, height: 5});
|
||||
|
||||
if(shot.y < 15)
|
||||
{
|
||||
shots.splice(i, 1);
|
||||
i--;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createShot()
|
||||
{
|
||||
var shot1 = { x: paddle.x, y: 152 };
|
||||
var shot2 = { x: paddle.x+paddle.width-3, y: 152 };
|
||||
|
||||
shots.push(shot1);
|
||||
shots.push(shot2);
|
||||
}
|
||||
|
||||
function multiball()
|
||||
{
|
||||
var start = (balls[0].x < 0) ? 0 : 3;
|
||||
var last = 0;
|
||||
var ball;
|
||||
|
||||
while(balls.length < 3)
|
||||
{
|
||||
for(var i=0; i<balls.length; i++)
|
||||
{
|
||||
if(balls[i].dirx == ANGLES[start][0])
|
||||
{
|
||||
start = (start+1)%ANGLES.length;
|
||||
i = last;
|
||||
}
|
||||
}
|
||||
|
||||
ball = {
|
||||
x: balls[0].x,
|
||||
y: balls[0].y,
|
||||
stuck: false,
|
||||
dirx: ANGLES[start][0],
|
||||
diry: ANGLES[start][1],
|
||||
speed: 4
|
||||
};
|
||||
|
||||
last = start;
|
||||
|
||||
if(balls[0].diry > 0) ball.diry = -ball.diry;
|
||||
|
||||
balls.push(ball);
|
||||
start++;
|
||||
}
|
||||
}
|
||||
|
||||
function run()
|
||||
{
|
||||
if(sprites.length < list.length)
|
||||
{
|
||||
canvas = document.getElementById("canvas");
|
||||
ctx = canvas.getContext("2d");
|
||||
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(0, 0, 240, 176);
|
||||
|
||||
load(sprites.length);
|
||||
|
||||
if(sprites.length == list.length && !background) init();
|
||||
}
|
||||
else if(paddle.lives < 1)
|
||||
{
|
||||
submitHighscore();
|
||||
}
|
||||
else
|
||||
{
|
||||
render();
|
||||
}
|
||||
}
|
||||
|
||||
function DirtyRectangleManager()
|
||||
{
|
||||
var stack = [];
|
||||
|
||||
this.add = function(rect) {
|
||||
stack.push(rect);
|
||||
};
|
||||
|
||||
this.render = function() {
|
||||
var rect;
|
||||
|
||||
while(stack.length > 0)
|
||||
{
|
||||
rect = stack.pop();
|
||||
|
||||
ctx.fillRect(rect.x, rect.y, rect.width, rect.height);
|
||||
ctx.putImageData(ctx2.getImageData(rect.x, rect.y, rect.width, rect.height), rect.x, rect.y);
|
||||
}
|
||||
};
|
||||
|
||||
this.clear = function() {
|
||||
stack.length = 0
|
||||
};
|
||||
}
|
||||
|
||||
function onMouseMove(evt)
|
||||
{
|
||||
if(!paddle.render)
|
||||
{
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
paddle.render = true;
|
||||
}
|
||||
|
||||
paddle.x = evt.clientX - 14;
|
||||
|
||||
if(paddle.x < 15) paddle.x = 15;
|
||||
if(paddle.x+paddle.width > 180) paddle.x = 180-paddle.width;
|
||||
|
||||
if(balls[0].stuck) balls[0].x = paddle.x + Math.floor(paddle.width/2);
|
||||
|
||||
evt.preventDefault();
|
||||
evt.cancelBubble = true;
|
||||
}
|
||||
|
||||
function onKeyPress(evt)
|
||||
{
|
||||
if(balls[0].stuck) balls[0].stuck = false;
|
||||
|
||||
if(paddle.ammo > 0)
|
||||
{
|
||||
createShot();
|
||||
paddle.ammo -= 2;
|
||||
|
||||
if(paddle.ammo <= 0) pillCaught({type: -1});
|
||||
}
|
||||
|
||||
evt.preventDefault();
|
||||
evt.cancelBubble = true;
|
||||
}
|
||||
|
||||
document.addEventListener("mousemove", onMouseMove, false);
|
||||
document.addEventListener("keydown", onKeyPress, false);
|
||||
document.addEventListener("click", onKeyPress, false);
|
||||
</script>
|
||||
<style>
|
||||
body { margin: 0px; }
|
||||
#loading { position: absolute; left: 112px; top: 80px; }
|
||||
.highscore { position: absolute; left: 0px; top: 0px; width: 240px; height: 176px; text-align: center; }
|
||||
</style>
|
||||
</head>
|
||||
<body onload="setInterval(run, 60);">
|
||||
<div id="bottomscreen">
|
||||
<canvas id="canvas" width="240" height="176"></canvas>
|
||||
|
||||
</div>
|
||||
<img id="loading" src="images/loading.gif">
|
||||
</body>
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/BlockBreaker/game.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:30:06 GMT -->
|
||||
</html>
|
||||
BIN
TDKHome/TDKCade/BlockBreaker/images/b1.png
Normal file
|
After Width: | Height: | Size: 140 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/b10.png
Normal file
|
After Width: | Height: | Size: 141 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/b3.png
Normal file
|
After Width: | Height: | Size: 137 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/b4.png
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/b8.png
Normal file
|
After Width: | Height: | Size: 141 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/loading.gif
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
TDKHome/TDKCade/BlockBreaker/images/logo.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
TDKHome/TDKCade/BlockBreaker/images/paddle1.png
Normal file
|
After Width: | Height: | Size: 281 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/paddle2.png
Normal file
|
After Width: | Height: | Size: 328 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/pb4.png
Normal file
|
After Width: | Height: | Size: 172 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/pc5.png
Normal file
|
After Width: | Height: | Size: 158 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/pg3.png
Normal file
|
After Width: | Height: | Size: 157 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/pp2.png
Normal file
|
After Width: | Height: | Size: 169 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/pr1.png
Normal file
|
After Width: | Height: | Size: 148 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/py6.png
Normal file
|
After Width: | Height: | Size: 155 B |
BIN
TDKHome/TDKCade/BlockBreaker/images/shot.png
Normal file
|
After Width: | Height: | Size: 135 B |
108
TDKHome/TDKCade/BlockBreaker/index.html
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/BlockBreaker/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:29:52 GMT -->
|
||||
<head>
|
||||
<meta name="viewport" content="width=240">
|
||||
<title>Block Breaker 2</title>
|
||||
<script src="../js/json2.js"></script>
|
||||
<script src="../js/highscores.js"></script>
|
||||
<script>
|
||||
var hiscores = new HighScores("blockbreaker");
|
||||
|
||||
function showHighScores()
|
||||
{
|
||||
var popup = document.getElementById("popup");
|
||||
var scores = hiscores.getScores();
|
||||
var info = document.getElementById("infoarea");
|
||||
var table;
|
||||
var row;
|
||||
var cell;
|
||||
|
||||
clearElement(info);
|
||||
|
||||
if(scores.length < 1)
|
||||
{
|
||||
info.appendChild(document.createTextNode("No scores are currently available."));
|
||||
}
|
||||
|
||||
table = document.createElement("table");
|
||||
table.border = "0";
|
||||
table.cellSpacing = "0";
|
||||
table.cellPadding = "0";
|
||||
table.style.width = "190";
|
||||
table.style.fontSize = "12px";
|
||||
table.style.color = "white";
|
||||
table.style.fontSize = "8pt";
|
||||
|
||||
|
||||
for(var i=0; i<scores.length && i<20; i++)
|
||||
{
|
||||
row = table.insertRow(-1);
|
||||
cell = row.insertCell(-1);
|
||||
cell.appendChild(document.createTextNode((i+1)+". "));
|
||||
cell = row.insertCell(-1);
|
||||
cell.appendChild(document.createTextNode(scores[i].name));
|
||||
cell = row.insertCell(-1);
|
||||
cell.align = "right";
|
||||
cell.style.width = "60px";
|
||||
cell.appendChild(document.createTextNode(scores[i].score));
|
||||
}
|
||||
|
||||
info.appendChild(table);
|
||||
|
||||
popup.style.display = "block";
|
||||
}
|
||||
|
||||
function hidePopup()
|
||||
{
|
||||
var popup = document.getElementById("popup");
|
||||
|
||||
popup.style.display = "none";
|
||||
}
|
||||
|
||||
function clearElement(element)
|
||||
{
|
||||
while(element.hasChildNodes()) element.removeChild(element.childNodes[0]);
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
body { margin: 0px; background-color: black; }
|
||||
#topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; color: white; font-family: sans-serif; font-size: 14pt; }
|
||||
#bottomscreen div { margin: 6px; }
|
||||
#bottomscreen div a { text-decoration: none; color: yellow; }
|
||||
#popup { position: absolute; left: 18px; top: 20px; width: 200px; height: 312px; border: 4px solid #FFFFAA; background-color: #000044; display: none; }
|
||||
#infoarea { margin: 5px; width: 190px; height: 278px; overflow: hidden; font-size: 8px; font-family: sans-serif; color: white; padding-top: 5px; }
|
||||
#buttonarea { margin: 5px; width: 190px; height: 14px; background-color: #222288; color: #DDDDDD; }
|
||||
#dismiss { float: left; text-align: center; width: 190px; font: 12px sans-serif; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="topscreen"><img src="images/logo.png"></div>
|
||||
<div id="bottomscreen" align="center">
|
||||
|
||||
<div><a href="game.html">Start Game</a></div>
|
||||
<div><a href="#" onclick="showHighScores(); return false;">High Scores</a></div>
|
||||
|
||||
<div><a href="instruct.html">Instructions</a></div>
|
||||
<div><a href="story.html">Story</a></div>
|
||||
<div><a href="credits.html">Credits</a></div>
|
||||
<div><a href="../index2.html">Exit</a></div>
|
||||
</div>
|
||||
<div id="popup">
|
||||
<div id="infoarea"></div>
|
||||
|
||||
<div id="buttonarea" onclick="hidePopup();">
|
||||
<div id="dismiss">Ok</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
document.body.scrollTop = 176;
|
||||
|
||||
if(window.location.toString().indexOf("?showScores") > 0) showHighScores();
|
||||
</script>
|
||||
</body>
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/BlockBreaker/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:29:54 GMT -->
|
||||
</html>
|
||||
66
TDKHome/TDKCade/BlockBreaker/instruct.html
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/BlockBreaker/instruct.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:30:06 GMT -->
|
||||
<head>
|
||||
<meta name="viewport" content="width=240">
|
||||
<title>Block Breaker 2</title>
|
||||
<style>
|
||||
body { margin: 0px; background-color: black; }
|
||||
#topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; color: white; font-family: sans-serif; font-size: 8pt; }
|
||||
.link { margin: 7px; text-align: justify; text-align: right; position: absolute; left: 100px; top: 325px; }
|
||||
.link a { text-decoration: none; color: yellow; }
|
||||
#powerups { position: absolute; left: 15px; top: 191px; }
|
||||
#getpowerups { position: absolute; left: 10px; top: 291px; width: 100px; color: red; }
|
||||
#shoottext { position: absolute; left: 115px; top: 271px; }
|
||||
#shootpaddle { position: absolute; left: 200px; top: 311px; }
|
||||
#paddle { position: absolute; left: 180px; top: 250px; }
|
||||
#paddletext { position: absolute; left: 115px; top: 225px; color: green; }
|
||||
#goldtext { position: absolute; left: 150px; top: 175px; color: gold; }
|
||||
#shot1 { position: absolute; left: 200px; top: 296px; }
|
||||
#shot2 { position: absolute; left: 218px; top: 296px; }
|
||||
#block1 { position: absolute; left: 195px; top: 266px; }
|
||||
#block2 { position: absolute; left: 145px; top: 205px; }
|
||||
.title { font-size: 12pt; color: yellow; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="topscreen"><img src="images/logo.png"></div>
|
||||
|
||||
<div id="bottomscreen">
|
||||
<div id="powerups">
|
||||
<div class="title">Power Ups</div>
|
||||
<div><img src="images/pr1.png"> Shoot Bricks</div>
|
||||
<div><img src="images/pp2.png"> Slows Ball</div>
|
||||
<div><img src="images/pg3.png"> Skips Level</div>
|
||||
|
||||
<div><img src="images/pb4.png"> Larger Paddle</div>
|
||||
<div><img src="images/pc5.png"> Multiball</div>
|
||||
<div><img src="images/py6.png"> 25 Points</div>
|
||||
</div>
|
||||
<div id="getpowerups">Obtain power ups by smashing bricks!</div>
|
||||
|
||||
<img id="shootpaddle" src="images/paddle2.png">
|
||||
<img id="shot1" src="images/shot.png">
|
||||
<img id="shot2" src="images/shot.png">
|
||||
<div id="block1">
|
||||
<img src="images/b4.png"><img src="images/b4.png"><br>
|
||||
<img src="images/b8.png"><img src="images/b8.png">
|
||||
</div>
|
||||
<div id="shoottext">Use shooting<br>power up to<br>destroy bricks!<br>(UP on DPad)</div>
|
||||
|
||||
<img id="paddle" src="images/paddle1.png">
|
||||
<div id="block2">
|
||||
<img src="images/b10.png"><img src="images/b1.png"><img src="images/b1.png"><img src="images/b10.png"><br>
|
||||
<img src="images/b10.png"><img src="images/b3.png"><img src="images/b3.png"><img src="images/b10.png">
|
||||
</div>
|
||||
<div id="paddletext">Use the stylus<br>to control<br>the paddle.</div>
|
||||
<div id="goldtext">Gold blocks are invulnerable.</div>
|
||||
|
||||
<div class="link"><a href="index.html">MENU</a></div>
|
||||
</div>
|
||||
<script>document.body.scrollTop = 176;</script>
|
||||
</body>
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/BlockBreaker/instruct.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:30:10 GMT -->
|
||||
</html>
|
||||
9
TDKHome/TDKCade/BlockBreaker/story.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found</h1>
|
||||
<p>The requested URL was not found on this server.</p>
|
||||
<p>Additionally, a 404 Not Found
|
||||
error was encountered while trying to use an ErrorDocument to handle the request.</p>
|
||||
</body></html>
|
||||
378
TDKHome/TDKCade/Cavezor/index.html
Normal file
|
|
@ -0,0 +1,378 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=240">
|
||||
<style>
|
||||
body { margin: 0px; }
|
||||
#topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; position: relative; }
|
||||
#playfield { width: 240px; height: 176px; }
|
||||
#player { top: 0px; left: 24px; width: 4px; height: 4px; position: absolute; background: red; }
|
||||
#title { text-align: center; margin-top: 10px; font-size: 26pt; }
|
||||
#scoreContainer { font: 24pt sans-serif; position: absolute; text-align: center; top: 85px; width: 240px; }
|
||||
#instructions { position: absolute; bottom: 0px; font-style: italic; text-align: center; width: 240px; font-size: 8pt; }
|
||||
.small { font-size: 8pt; color: #AAAAAA; margin-top: 8px; }
|
||||
.button { border-radius: 15px; background: white; border: 2px solid black; color: black; text-align: center; width: 60px; padding: 5px; position: absolute; top: 130px; }
|
||||
#scoresButton { left: 30px; }
|
||||
#startButton { right: 30px; }
|
||||
|
||||
#popup { position: absolute; left: 18px; top: 16px; width: 200px; height: 312px; border: 4px solid #777777; background-color: #DDDDDD; display: none; z-index: 50; }
|
||||
#infoarea { margin: 5px; width: 190px; height: 278px; overflow: hidden; font-size: 8px; font-family: sans-serif; color: black; }
|
||||
#buttonarea { margin: 5px; width: 190px; height: 18px; line-height: 18px; background-color: #F2AEEA; color: #DDDDDD; }
|
||||
#hiscores { float: left; text-align: center; width: 190px; height: 18px; font: 12px sans-serif; }
|
||||
.selected { background-color: #AA0000; color: white; font-weight: bold; }
|
||||
</style>
|
||||
<script src="../js/json2.js"></script>
|
||||
<script src="../js/highscores.js"></script>
|
||||
<script>
|
||||
var hiscores = new HighScores("cavezor");
|
||||
|
||||
var SCALE = 4;
|
||||
var WIDTH = 240/SCALE;
|
||||
var HEIGHT = 176/SCALE;
|
||||
var GRAVITY = 0.12;
|
||||
var THRUST = 0.4;
|
||||
|
||||
var slivers = [];
|
||||
var heights = [];
|
||||
var canvas;
|
||||
var height;
|
||||
var offset;
|
||||
var score;
|
||||
|
||||
var x = 6;
|
||||
var y = Math.floor(HEIGHT / 2);
|
||||
var accel = 0.0;
|
||||
var thrust = false;
|
||||
var gameEnded = true;
|
||||
var interval;
|
||||
|
||||
var scoreDIV;
|
||||
|
||||
function init()
|
||||
{
|
||||
scoreDIV = document.getElementById("score");
|
||||
canvas = document.getElementById("playfield");
|
||||
height = 16;
|
||||
offset = 0;
|
||||
score = 0;
|
||||
|
||||
for(var i=0; i<WIDTH; i++)
|
||||
{
|
||||
slivers[i] = (HEIGHT - height)/2;
|
||||
heights[i] = height;
|
||||
}
|
||||
|
||||
drawField(canvas.getContext('2d'));
|
||||
|
||||
document.getElementById("scoresButton").onclick = function(event) {
|
||||
showHidePopup();
|
||||
};
|
||||
|
||||
document.getElementById("startButton").onclick = function() {
|
||||
|
||||
if(!gameEnded) return;
|
||||
|
||||
offset = 0;
|
||||
score = 0;
|
||||
height = 16;
|
||||
y = Math.floor(HEIGHT / 2);
|
||||
accel = 0.0;
|
||||
gameEnded = false;
|
||||
|
||||
for(var i=0; i<WIDTH; i++)
|
||||
{
|
||||
slivers[i] = (HEIGHT - height)/2;
|
||||
heights[i] = height;
|
||||
}
|
||||
|
||||
interval = setInterval(update, 1000/10);
|
||||
document.getElementById("buttons").style.display = "none";
|
||||
};
|
||||
|
||||
document.addEventListener("keydown", function(event) {
|
||||
if(event.keyCode == 13) thrust = true;
|
||||
}, false);
|
||||
|
||||
document.addEventListener("keyup", function(event) {
|
||||
if(event.keyCode == 13) thrust = false;
|
||||
}, false);
|
||||
|
||||
document.body.scrollTop = 176;
|
||||
}
|
||||
|
||||
function drawField(context)
|
||||
{
|
||||
var pos;
|
||||
|
||||
context.fillStyle = "#999999";
|
||||
context.fillRect(0, 0, WIDTH, HEIGHT);
|
||||
context.fillStyle = "black";
|
||||
|
||||
for(var i=0; i<WIDTH; i++)
|
||||
{
|
||||
pos = slivers[(i+offset) % WIDTH];
|
||||
context.fillRect(i, pos, 1, heights[(i+offset) % WIDTH]);
|
||||
}
|
||||
|
||||
document.getElementById("player").style.top = Math.floor(y * SCALE) + "px";
|
||||
}
|
||||
|
||||
function update()
|
||||
{
|
||||
var amount = Math.floor(Math.random() * 1000) % 5 - 2;
|
||||
var testy;
|
||||
|
||||
amount = amount + slivers[(offset + WIDTH - 1) % WIDTH];
|
||||
|
||||
if(amount < 1) amount = 1;
|
||||
if(amount > HEIGHT-height-1) amount = HEIGHT-height-1;
|
||||
|
||||
if(!gameEnded)
|
||||
{
|
||||
offset = (offset + 1) % WIDTH;
|
||||
slivers[(offset + WIDTH - 1) % WIDTH] = amount;
|
||||
heights[(offset + WIDTH - 1) % WIDTH] = height;
|
||||
score++;
|
||||
}
|
||||
|
||||
if(offset == 0) height--;
|
||||
if(height < 4) height = 4;
|
||||
|
||||
drawField(canvas.getContext('2d'));
|
||||
scoreDIV.removeChild(scoreDIV.childNodes[0]);
|
||||
scoreDIV.appendChild(document.createTextNode(score));
|
||||
|
||||
testy = Math.floor(y);
|
||||
|
||||
if(testy < slivers[(offset + x) % WIDTH] ||
|
||||
testy >= slivers[(offset + x) % WIDTH] + heights[(offset + x) % WIDTH] - 1)
|
||||
{
|
||||
gameover();
|
||||
}
|
||||
|
||||
if(thrust) accel -= THRUST;
|
||||
else accel += GRAVITY;
|
||||
|
||||
y += accel;
|
||||
}
|
||||
|
||||
function gameover()
|
||||
{
|
||||
var explodeTimer = 0;
|
||||
var savedy = y;
|
||||
|
||||
gameEnded = true;
|
||||
clearInterval(interval);
|
||||
|
||||
document.getElementById("player").style.top = Math.floor(y * SCALE) + "px";
|
||||
|
||||
function explode()
|
||||
{
|
||||
var context = canvas.getContext('2d');
|
||||
|
||||
y = savedy;
|
||||
drawField(context);
|
||||
|
||||
if(explodeTimer % 2 == 0)
|
||||
{
|
||||
context.globalAlpha = 0.5;
|
||||
context.fillStyle = "yellow";
|
||||
context.fillRect(0, 0, WIDTH, HEIGHT);
|
||||
context.globalAlpha = 1.0;
|
||||
}
|
||||
else if(explodeTimer < 9)
|
||||
{
|
||||
context.globalAlpha = 0.7;
|
||||
context.fillStyle = "red";
|
||||
context.fillRect(0, 0, WIDTH, HEIGHT);
|
||||
context.globalAlpha = 1.0;
|
||||
}
|
||||
|
||||
if(++explodeTimer < 10)
|
||||
{
|
||||
setTimeout(explode, 100);
|
||||
}
|
||||
else
|
||||
{
|
||||
document.getElementById("buttons").style.display = "block";
|
||||
|
||||
setTimeout(function() {
|
||||
if(hiscores.isScoreHigher(score)) showScoreSubmit();
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
|
||||
explode();
|
||||
}
|
||||
|
||||
function showHighScores()
|
||||
{
|
||||
var scores = hiscores.getScores();
|
||||
var info = document.getElementById("infoarea");
|
||||
var table;
|
||||
var row;
|
||||
var cell;
|
||||
|
||||
clearElement(info);
|
||||
|
||||
document.getElementById("hiscores").className = "selected";
|
||||
document.getElementById("instructions").className = "";
|
||||
|
||||
if(scores.length < 1)
|
||||
{
|
||||
info.appendChild(document.createTextNode("No scores are currently available."));
|
||||
return;
|
||||
}
|
||||
|
||||
table = document.createElement("table");
|
||||
table.cellSpacing = "0";
|
||||
table.cellPadding = "0";
|
||||
table.border = "0";
|
||||
table.style.width = "190px";
|
||||
table.style.fontSize = "8pt";
|
||||
table.style.color = "black";
|
||||
|
||||
|
||||
for(var i=0; i<scores.length && i<20; i++)
|
||||
{
|
||||
row = table.insertRow(-1);
|
||||
cell = row.insertCell(-1);
|
||||
cell.appendChild(document.createTextNode((i+1)+". "));
|
||||
cell = row.insertCell(-1);
|
||||
cell.appendChild(document.createTextNode(scores[i].name));
|
||||
cell = row.insertCell(-1);
|
||||
cell.align = "right";
|
||||
cell.appendChild(document.createTextNode(scores[i].score));
|
||||
}
|
||||
|
||||
info.appendChild(table);
|
||||
}
|
||||
|
||||
function clearElement(element)
|
||||
{
|
||||
while(element.hasChildNodes()) element.removeChild(element.childNodes[0]);
|
||||
}
|
||||
|
||||
function showHidePopup()
|
||||
{
|
||||
var popup = document.getElementById("popup");
|
||||
|
||||
if(popup.style.display == "block")
|
||||
{
|
||||
popup.style.display = "none";
|
||||
clearElement(document.getElementById("infoarea"));
|
||||
}
|
||||
else
|
||||
{
|
||||
popup.style.display = "block";
|
||||
showHighScores();
|
||||
}
|
||||
}
|
||||
|
||||
function showScoreSubmit()
|
||||
{
|
||||
var info = document.getElementById("infoarea");
|
||||
var line;
|
||||
var input;
|
||||
|
||||
clearElement(info);
|
||||
|
||||
line = document.createElement("div");
|
||||
line.align = "center";
|
||||
line.style.fontSize = "16px";
|
||||
line.style.color = "black";
|
||||
line.style.fontWeight = "bold";
|
||||
line.appendChild(document.createTextNode("A new high score!"));
|
||||
info.appendChild(line);
|
||||
|
||||
line = document.createElement("div");
|
||||
line.align = "center";
|
||||
line.style.fontSize = "20px";
|
||||
line.style.color = "red";
|
||||
line.style.fontWeight = "bold";
|
||||
line.style.marginTop = "20px";
|
||||
line.style.marginBottom = "20px";
|
||||
line.appendChild(document.createTextNode(score));
|
||||
info.appendChild(line);
|
||||
|
||||
line = document.createElement("div");
|
||||
line.align = "center";
|
||||
line.style.fontSize = "16px";
|
||||
line.style.color = "black";
|
||||
line.style.fontWeight = "bold";
|
||||
line.style.marginBottom = "75px";
|
||||
line.appendChild(document.createTextNode("Enter your name below to submit your score."));
|
||||
info.appendChild(line);
|
||||
|
||||
line = document.createElement("div");
|
||||
input = document.createElement("input");
|
||||
line.align = "center";
|
||||
line.style.fontSize = "16px";
|
||||
line.style.color = "black";
|
||||
line.style.fontWeight = "bold";
|
||||
line.style.marginBottom = "10px";
|
||||
input.style.width = "120px";
|
||||
input.id = "user";
|
||||
input.maxLength = "16";
|
||||
|
||||
if(hiscores.getCachedName()) input.value = hiscores.getCachedName().substring(0, 16);
|
||||
|
||||
line.appendChild(input);
|
||||
info.appendChild(line);
|
||||
|
||||
line = document.createElement("div");
|
||||
input = document.createElement("button");
|
||||
line.align = "center";
|
||||
line.style.fontSize = "16px";
|
||||
line.style.color = "black";
|
||||
line.style.fontWeight = "bold";
|
||||
input.onclick = submitScore;
|
||||
input.appendChild(document.createTextNode("Submit"));
|
||||
line.appendChild(input);
|
||||
info.appendChild(line);
|
||||
|
||||
document.getElementById("popup").style.display = "block";
|
||||
}
|
||||
|
||||
function submitScore()
|
||||
{
|
||||
var user = document.getElementById("user").value;
|
||||
var high = new HighScore(user, score);
|
||||
|
||||
if(user.length < 1) return;
|
||||
|
||||
high.offset = offset;
|
||||
|
||||
hiscores.submitScore(high);
|
||||
|
||||
showHighScores();
|
||||
}
|
||||
|
||||
setTimeout(init, 50);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="topscreen">
|
||||
<div id="title">
|
||||
<div>C A V E Z O R</div>
|
||||
<div class="small">Based on software<br>by Johannes Wärn</div>
|
||||
</div>
|
||||
<div id="scoreContainer">Score: <span id="score">0</span></div>
|
||||
<div id="instructions">Press A to thrust upward</div>
|
||||
</div>
|
||||
<div id="bottomscreen">
|
||||
<canvas id="playfield" width="60" height="44"></canvas>
|
||||
<div id="player"></div>
|
||||
<div id="buttons">
|
||||
<div id="scoresButton" class="button">Scores</div>
|
||||
<div id="startButton" class="button">Start</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="popup">
|
||||
<div id="infoarea"></div>
|
||||
<div id="buttonarea">
|
||||
<div id="hiscores" class="selected" onclick="showHidePopup(); return false;">OK</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
TDKHome/TDKCade/Checkers/images/black.gif
Normal file
|
After Width: | Height: | Size: 905 B |
BIN
TDKHome/TDKCade/Checkers/images/gray.gif
Normal file
|
After Width: | Height: | Size: 905 B |
BIN
TDKHome/TDKCade/Checkers/images/me1.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
TDKHome/TDKCade/Checkers/images/me1k.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
TDKHome/TDKCade/Checkers/images/me2.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
TDKHome/TDKCade/Checkers/images/me2k.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
9
TDKHome/TDKCade/Checkers/images/plating.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found</h1>
|
||||
<p>The requested URL was not found on this server.</p>
|
||||
<p>Additionally, a 404 Not Found
|
||||
error was encountered while trying to use an ErrorDocument to handle the request.</p>
|
||||
</body></html>
|
||||
BIN
TDKHome/TDKCade/Checkers/images/you1.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
TDKHome/TDKCade/Checkers/images/you1k.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
TDKHome/TDKCade/Checkers/images/you2.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
TDKHome/TDKCade/Checkers/images/you2k.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
469
TDKHome/TDKCade/Checkers/index.html
Normal file
|
|
@ -0,0 +1,469 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/Checkers/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:30:00 GMT -->
|
||||
<head>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/xml; charset=ISO-8859-1" />
|
||||
<meta name="viewport" content="width=240">
|
||||
<title>Checkers</title>
|
||||
|
||||
<style type="text/css">
|
||||
BODY {
|
||||
background: url("images/plating.html");
|
||||
color: #002;
|
||||
font-size: 8px;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<script language="JavaScript1.1">
|
||||
<!--
|
||||
version = 1.1;
|
||||
// -->
|
||||
</script>
|
||||
<script language="JavaScript">
|
||||
<!--
|
||||
if (version == null)
|
||||
document.write("Your browser doesn't have JavaScript 1.1 capabilities. "
|
||||
+ "This checkers game script only works on Netscape 3+ and MSIE 4+.");
|
||||
// -->
|
||||
</script>
|
||||
<script language="JavaScript1.1">
|
||||
<!--
|
||||
// Checkers Game
|
||||
|
||||
// black.gif
|
||||
// gray.gif
|
||||
// you1.gif -- normal piece (player/red)
|
||||
// you2.gif -- highlighted piece
|
||||
// you1k.gif -- kinged normal piece
|
||||
// you2k.gif -- kinged highlighted piece
|
||||
// me1.gif -- normal piece (computer/black)
|
||||
// me2.gif -- highlighted piece
|
||||
// me1k.gif -- kinged normal piece
|
||||
// me2k.gif -- kinged highlighted piece
|
||||
|
||||
function preload() {
|
||||
this.length = preload.arguments.length;
|
||||
for (var i = 0; i < this.length; i++) {
|
||||
this[i] = new Image();
|
||||
this[i].src = preload.arguments[i];
|
||||
}
|
||||
}
|
||||
var pics = new preload("images/black.gif","images/gray.gif",
|
||||
"images/you1.gif","images/you2.gif","images/you1k.gif","images/you2k.gif",
|
||||
"images/me1.gif","images/me2.gif","images/me1k.gif","images/me2k.gif");
|
||||
|
||||
var black = -1; // computer is black
|
||||
var red = 1; // visitor is red
|
||||
var square_dim = 35;
|
||||
var piece_toggled = false;
|
||||
var my_turn = false;
|
||||
var double_jump = false;
|
||||
var comp_move = false;
|
||||
var game_is_over = false;
|
||||
var safe_from = safe_to = null;
|
||||
var toggler = null;
|
||||
var togglers = 0;
|
||||
|
||||
function Board() {
|
||||
board = new Array();
|
||||
for (var i=0;i<8; i++) {
|
||||
board[i] = new Array();
|
||||
for (var j=0;j<8;j++)
|
||||
board[i][j] = Board.arguments[8*j+i];
|
||||
}
|
||||
board[-2] = new Array(); // prevents errors
|
||||
board[-1] = new Array(); // prevents errors
|
||||
board[8] = new Array(); // prevents errors
|
||||
board[9] = new Array(); // prevents errors
|
||||
}
|
||||
var board;
|
||||
Board(1,0,1,0,1,0,1,0,
|
||||
0,1,0,1,0,1,0,1,
|
||||
1,0,1,0,1,0,1,0,
|
||||
0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,
|
||||
0,-1,0,-1,0,-1,0,-1,
|
||||
-1,0,-1,0,-1,0,-1,0,
|
||||
0,-1,0,-1,0,-1,0,-1);
|
||||
|
||||
function message(str) {
|
||||
if (!game_is_over)
|
||||
document.disp.message.value = str;
|
||||
}
|
||||
function moveable_space(i,j) {
|
||||
// calculates whether it is a gray (moveable)
|
||||
// or black (non-moveable) space
|
||||
return (((i%2)+j)%2 == 0);
|
||||
}
|
||||
function Coord(x,y) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
}
|
||||
function coord(x,y) {
|
||||
c = new Coord(x,y);
|
||||
return c;
|
||||
}
|
||||
|
||||
document.write("<table border=0 cellspacing=0 cellpadding=0 width="+(square_dim*8+8)
|
||||
+"<tr><td><img src='images/black.gif' width="+(square_dim*8+8)
|
||||
+" height=4><br></td></tr>");
|
||||
for(var j=0;j<8;j++) {
|
||||
document.write("<tr><td><img src='images/black.gif' width=4 height="+square_dim+">");
|
||||
for(var i=0;i<8;i++) {
|
||||
if (moveable_space(i,j))
|
||||
document.write("<a href='javascript:clicked("+i+","+j+")'>");
|
||||
document.write("<img src='");
|
||||
if (board[i][j]==1) document.write("images/you1.gif");
|
||||
else if (board[i][j]==-1) document.write("images/me1.gif");
|
||||
else if (moveable_space(i,j)) document.write("images/gray.gif");
|
||||
else document.write("images/black.gif");
|
||||
document.write("' width="+square_dim+" height="+square_dim
|
||||
+" name='space"+i+""+j+"' border=0>");
|
||||
if (moveable_space(i,j)) document.write("</a>");
|
||||
}
|
||||
document.write("<img src='images/black.gif' width=4 height="+square_dim+"></td></tr>");
|
||||
}
|
||||
document.write("<tr><td><img src='images/black.gif' width="+(square_dim*8+8)
|
||||
+" height=4><br></td></tr></table><br>"
|
||||
+"<form name='disp'><textarea name='message' wrap=virtual rows=2 cols=40></textarea><br><input "
|
||||
+"type=button value=\"Start the Game Over\" onClick=\"location.href+=''\"></form>");
|
||||
|
||||
function clicked(i,j) {
|
||||
if (my_turn) {
|
||||
if (integ(board[i][j])==1) toggle(i,j);
|
||||
else if (piece_toggled) move(selected,coord(i,j));
|
||||
else message("First click one of your red pieces, then click where you want to move it");
|
||||
} else {
|
||||
message("It's not your turn yet. Hang on a sec!");
|
||||
}
|
||||
}
|
||||
function toggle(x,y) {
|
||||
if (my_turn) {
|
||||
if (piece_toggled)
|
||||
draw(selected.x,selected.y,"images/you1"+((board[selected.x][selected.y]==1.1)?"k":"")+".gif");
|
||||
if (piece_toggled && (selected.x == x) && (selected.y == y)) {
|
||||
piece_toggled = false;
|
||||
if (double_jump) { my_turn = double_jump = false; computer(); }
|
||||
} else {
|
||||
piece_toggled = true;
|
||||
draw(x,y,"images/you2"+((board[x][y]==1.1)?"k":"")+".gif");
|
||||
}
|
||||
selected = coord(x,y);
|
||||
} else {
|
||||
if ((piece_toggled) && (integ(board[selected_c.x][selected_c.y])==-1))
|
||||
draw(selected_c.x,selected_c.y,"images/me1"+((board[selected_c.x][selected_c.y]==-1.1)?"k":"")+".gif");
|
||||
if (piece_toggled && (selected_c.x == x) && (selected_c.y == y)) {
|
||||
piece_toggled = false;
|
||||
} else {
|
||||
piece_toggled = true;
|
||||
draw(x,y,"images/me2"+((board[x][y]==-1.1)?"k":"")+".gif");
|
||||
}
|
||||
selected_c = coord(x,y);
|
||||
}
|
||||
}
|
||||
function draw(x,y,name) {
|
||||
document.images["space"+x+""+y].src = name;
|
||||
}
|
||||
function integ(num) {
|
||||
if (num != null)
|
||||
return Math.round(num);
|
||||
else
|
||||
return null;
|
||||
}
|
||||
function abs(num) {
|
||||
return Math.abs(num);
|
||||
}
|
||||
function sign(num) {
|
||||
if (num < 0) return -1;
|
||||
else return 1;
|
||||
}
|
||||
function concatenate(arr1,arr2) {
|
||||
// function tacks the second array onto the end of the first and returns result
|
||||
for(var i=0;i<arr2.length;i++)
|
||||
arr1[arr1.length+i] = arr2[i];
|
||||
return arr1;
|
||||
}
|
||||
function legal_move(from,to) {
|
||||
if ((to.x < 0) || (to.y < 0) || (to.x > 7) || (to.y > 7)) return false;
|
||||
piece = board[from.x][from.y];
|
||||
distance = coord(to.x-from.x,to.y-from.y);
|
||||
if ((distance.x == 0) || (distance.y == 0)) {
|
||||
message("You may only move diagonally.");
|
||||
return false;
|
||||
}
|
||||
if (abs(distance.x) != abs(distance.y)) {
|
||||
message("Invalid move.");
|
||||
return false;
|
||||
}
|
||||
if (abs(distance.x) > 2) {
|
||||
message("Invalid move.");
|
||||
return false;
|
||||
}
|
||||
if ((abs(distance.x) == 1) && double_jump) {
|
||||
return false;
|
||||
}
|
||||
if ((board[to.x][to.y] != 0) || (piece == 0)) {
|
||||
return false;
|
||||
}
|
||||
if ((abs(distance.x) == 2)
|
||||
&& (integ(piece) != -integ(board[from.x+sign(distance.x)][from.y+sign(distance.y)]))) {
|
||||
return false;
|
||||
}
|
||||
if ((integ(piece) == piece) && (sign(piece) != sign(distance.y))) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
function move(from,to) {
|
||||
my_turn = true;
|
||||
if (legal_move(from,to)) {
|
||||
piece = board[from.x][from.y];
|
||||
distance = coord(to.x-from.x,to.y-from.y);
|
||||
if ((abs(distance.x) == 1) && (board[to.x][to.y] == 0)) {
|
||||
swap(from,to);
|
||||
} else if ((abs(distance.x) == 2)
|
||||
&& (integ(piece) != integ(board[from.x+sign(distance.x)][from.y+sign(distance.y)]))) {
|
||||
double_jump = false;
|
||||
swap(from,to);
|
||||
remove(from.x+sign(distance.x),from.y+sign(distance.y));
|
||||
if ((legal_move(to,coord(to.x+2,to.y+2)))
|
||||
|| (legal_move(to,coord(to.x+2,to.y-2)))
|
||||
|| (legal_move(to,coord(to.x-2,to.y-2)))
|
||||
|| (legal_move(to,coord(to.x-2,to.y+2)))) {
|
||||
double_jump = true;
|
||||
message("You may complete the double jump or click on your piece to stay still.");
|
||||
}
|
||||
}
|
||||
if ((board[to.x][to.y] == 1) && (to.y == 7)) king_me(to.x,to.y);
|
||||
selected = to;
|
||||
if (game_over() && !double_jump) {
|
||||
setTimeout("toggle("+to.x+","+to.y+");my_turn = double_jump = false;computer();",1000);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function king_me(x,y) {
|
||||
if (board[x][y] == 1) {
|
||||
board[x][y] = 1.1; // king you
|
||||
draw(x,y,"images/you2k.gif");
|
||||
} else if (board[x][y] == -1) {
|
||||
board[x][y] = -1.1; // king me
|
||||
draw(x,y,"images/me2k.gif");
|
||||
}
|
||||
}
|
||||
|
||||
function swap(from,to) {
|
||||
if (my_turn || comp_move) {
|
||||
dummy_src = document.images["space"+to.x+""+to.y].src;
|
||||
document.images["space"+to.x+""+to.y].src = document.images["space"+from.x+""+from.y].src;
|
||||
document.images["space"+from.x+""+from.y].src = dummy_src;
|
||||
}
|
||||
dummy_num = board[from.x][from.y];
|
||||
board[from.x][from.y] = board[to.x][to.y];
|
||||
board[to.x][to.y] = dummy_num;
|
||||
}
|
||||
function remove(x,y) {
|
||||
if (my_turn || comp_move)
|
||||
draw(x,y,"images/gray.gif");
|
||||
board[x][y] = 0;
|
||||
}
|
||||
function Result(val) {
|
||||
this.high = val;
|
||||
this.dir = new Array();
|
||||
}
|
||||
function move_comp(from,to) {
|
||||
toggle(from.x,from.y);
|
||||
comp_move = true;
|
||||
swap(from,to);
|
||||
if (abs(from.x-to.x) == 2) {
|
||||
remove(from.x+sign(to.x-from.x),from.y+sign(to.y-from.y));
|
||||
}
|
||||
if ((board[to.x][to.y] == -1) && (to.y == 0)) king_me(to.x,to.y);
|
||||
setTimeout("selected_c = coord("+to.x+","+to.y+");piece_toggled = true;",900);
|
||||
setTimeout("bak=my_turn;my_turn=false;toggle("+to.x+","+to.y+");my_turn=bak;",1000);
|
||||
if (game_over()) {
|
||||
setTimeout("comp_move = false;my_turn = true;togglers=0;",600);
|
||||
message("Ok. It's your turn. You may make your move.");
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function game_over() { // make sure game is not over (return false if game is over)
|
||||
comp = you = false;
|
||||
for(var i=0;i<8;i++) {
|
||||
for(var j=0;j<8;j++) {
|
||||
if(integ(board[i][j]) == -1) comp = true;
|
||||
if(integ(board[i][j]) == 1) you = true;
|
||||
}
|
||||
}
|
||||
if (!comp) message("You beat me!");
|
||||
if (!you) message("Gotcha! Game over.");
|
||||
game_is_over = (!comp || !you)
|
||||
return (!game_is_over);
|
||||
}
|
||||
|
||||
// the higher the jump_priority, the more often the computer will take the jump over the safe move
|
||||
var jump_priority = 10;
|
||||
|
||||
function computer() {
|
||||
// step one - prevent any jumps
|
||||
for(var j=0;j<8;j++) {
|
||||
for(var i=0;i<8;i++) {
|
||||
if (integ(board[i][j]) == 1) {
|
||||
if ((legal_move(coord(i,j),coord(i+2,j+2))) && (prevent(coord(i+2,j+2),coord(i+1,j+1)))) {
|
||||
return true;
|
||||
} if ((legal_move(coord(i,j),coord(i-2,j+2))) && (prevent(coord(i-2,j+2),coord(i-1,j+1)))) {
|
||||
return true;
|
||||
}
|
||||
} if (board[i][j] == 1.1) {
|
||||
if ((legal_move(coord(i,j),coord(i-2,j-2))) && (prevent(coord(i-2,j-2),coord(i-1,j-1)))) {
|
||||
return true;
|
||||
} if ((legal_move(coord(i,j),coord(i+2,j-2))) && (prevent(coord(i+2,j-2),coord(i+1,j-1)))) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// step two - if step one not taken, look for jumps
|
||||
for(var j=7;j>=0;j--) {
|
||||
for(var i=0;i<8;i++) {
|
||||
if (jump(i,j))
|
||||
return true;
|
||||
}
|
||||
}
|
||||
safe_from = null;
|
||||
// step three - if step two not taken, look for safe single space moves
|
||||
for(var j=0;j<8;j++) {
|
||||
for(var i=0;i<8;i++) {
|
||||
if (single(i,j))
|
||||
return true;
|
||||
}
|
||||
}
|
||||
// if no safe moves, just take whatever you can get
|
||||
if (safe_from != null) {
|
||||
move_comp(safe_from,safe_to);
|
||||
} else {
|
||||
message("You beat me!!");
|
||||
game_is_over = true;
|
||||
}
|
||||
safe_from = safe_to = null;
|
||||
return false;
|
||||
}
|
||||
function jump(i,j) {
|
||||
if (board[i][j] == -1.1) {
|
||||
if (legal_move(coord(i,j),coord(i+2,j+2))) {
|
||||
move_comp(coord(i,j),coord(i+2,j+2));
|
||||
setTimeout("jump("+(i+2)+","+(j+2)+");",500);
|
||||
return true;
|
||||
} if (legal_move(coord(i,j),coord(i-2,j+2))) {
|
||||
move_comp(coord(i,j),coord(i-2,j+2));
|
||||
setTimeout("jump("+(i-2)+","+(j+2)+");",500);
|
||||
return true;
|
||||
}
|
||||
} if (integ(board[i][j]) == -1) {
|
||||
if (legal_move(coord(i,j),coord(i-2,j-2))) {
|
||||
move_comp(coord(i,j),coord(i-2,j-2));
|
||||
setTimeout("jump("+(i-2)+","+(j-2)+");",500);
|
||||
return true;
|
||||
} if (legal_move(coord(i,j),coord(i+2,j-2))) {
|
||||
move_comp(coord(i,j),coord(i+2,j-2));
|
||||
setTimeout("jump("+(i+2)+","+(j-2)+");",500);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
function single(i,j) {
|
||||
if (board[i][j] == -1.1) {
|
||||
if (legal_move(coord(i,j),coord(i+1,j+1))) {
|
||||
safe_from = coord(i,j);
|
||||
safe_to = coord(i+1,j+1);
|
||||
if (wise(coord(i,j),coord(i+1,j+1))) {
|
||||
move_comp(coord(i,j),coord(i+1,j+1));
|
||||
return true;
|
||||
}
|
||||
} if (legal_move(coord(i,j),coord(i-1,j+1))) {
|
||||
safe_from = coord(i,j);
|
||||
safe_to = coord(i-1,j+1);
|
||||
if (wise(coord(i,j),coord(i-1,j+1))) {
|
||||
move_comp(coord(i,j),coord(i-1,j+1));
|
||||
return true;
|
||||
}
|
||||
}
|
||||
} if (integ(board[i][j]) == -1) {
|
||||
if (legal_move(coord(i,j),coord(i+1,j-1))) {
|
||||
safe_from = coord(i,j);
|
||||
safe_to = coord(i+1,j-1);
|
||||
if (wise(coord(i,j),coord(i+1,j-1))) {
|
||||
move_comp(coord(i,j),coord(i+1,j-1));
|
||||
return true;
|
||||
}
|
||||
} if (legal_move(coord(i,j),coord(i-1,j-1))) {
|
||||
safe_from = coord(i,j);
|
||||
safe_to = coord(i-1,j-1);
|
||||
if (wise(coord(i,j),coord(i-1,j-1))) {
|
||||
move_comp(coord(i,j),coord(i-1,j-1));
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
function possibilities(x,y) {
|
||||
if (!jump(x,y))
|
||||
if (!single(x,y))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
function prevent(end,s) {
|
||||
i = end.x;
|
||||
j = end.y;
|
||||
if (!possibilities(s.x,s.y))
|
||||
return true;
|
||||
else if ((integ(board[i-1][j+1])==-1) && (legal_move(coord(i-1,j+1),coord(i,j)))) {
|
||||
return move_comp(coord(i-1,j+1),coord(i,j));
|
||||
} else if ((integ(board[i+1][j+1])==-1) && (legal_move(coord(i+1,j+1),coord(i,j)))) {
|
||||
return move_comp(coord(i+1,j+1),coord(i,j));
|
||||
} else if ((board[i-1][j-1]==-1.1) && (legal_move(coord(i-1,j-1),coord(i,j)))) {
|
||||
return move_comp(coord(i-1,j-1),coord(i,j));
|
||||
} else if ((board[i+1][j-1]==-1.1) && (legal_move(coord(i+1,j-1),coord(i,j)))) {
|
||||
return move_comp(coord(i+1,j-1),coord(i,j));
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function wise(from,to) {
|
||||
i = to.x;
|
||||
j = to.y;
|
||||
n = (j>0);
|
||||
s = (j<7);
|
||||
e = (i<7);
|
||||
w = (i>0);
|
||||
if (n&&e) ne = board[i+1][j-1]; else ne = null;
|
||||
if (n&&w) nw = board[i-1][j-1]; else nw = null;
|
||||
if (s&&e) se = board[i+1][j+1]; else se = null;
|
||||
if (s&&w) sw = board[i-1][j+1]; else sw = null;
|
||||
eval(((j-from.y != 1)?"s":"n")+((i-from.x != 1)?"e":"w")+"=0;");
|
||||
if ((sw==0) && (integ(ne)==1)) return false;
|
||||
if ((se==0) && (integ(nw)==1)) return false;
|
||||
if ((nw==0) && (se==1.1)) return false;
|
||||
if ((ne==0) && (sw==1.1)) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
message("You may begin! Select a piece to move.");
|
||||
my_turn = true;
|
||||
|
||||
// -->
|
||||
</script>
|
||||
</body>
|
||||
34
TDKHome/TDKCade/DOH/credits.html
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=240">
|
||||
<title>Defend Our Home (D.O.H.)</title>
|
||||
<style>
|
||||
body { margin: 0px; background-color: black; }
|
||||
#topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; color: white; font-family: sans-serif; font-size: 8pt; }
|
||||
#bottomscreen { padding: 24px; width: 192px; height: 128px; }
|
||||
#bottomscreen div { margin: 0px; text-align: justify; }
|
||||
#bottomscreen div a { text-decoration: none; color: yellow; font-size: 8pt; }
|
||||
#bottomscreen div.link { text-align: right; }
|
||||
#bottomscreen div.link a { text-decoration: none; color: yellow; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="topscreen"><img src="images/logo.png"></div>
|
||||
<div id="bottomscreen" align="center">
|
||||
<h1>Credits</h1>
|
||||
<div style="float: left; color: red;">PROGRAMMING</div>
|
||||
<div style="float: right;">Jerason Banes</div>
|
||||
<div> </div>
|
||||
<div><a href="http://www.dsicade.com/">http://www.dsicade.com</a></div>
|
||||
<div> </div>
|
||||
<div style="float: left; color: green;">ARTWORK</div>
|
||||
<div style="float: right;">Ari Feldman's SpriteLib</div>
|
||||
<div> </div>
|
||||
<div><a href="http://www.flyingyogi.com/fun/spritelib.html">http://www.flyingyogi.com/fun/spritelib.html</a></div>
|
||||
<div> </div>
|
||||
<div class="link"><a href="index.html">MENU</a></div>
|
||||
</div>
|
||||
<script>document.body.scrollTop = 176;</script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
TDKHome/TDKCade/DOH/images/b1.png
Normal file
|
After Width: | Height: | Size: 140 B |
BIN
TDKHome/TDKCade/DOH/images/b10.png
Normal file
|
After Width: | Height: | Size: 141 B |
BIN
TDKHome/TDKCade/DOH/images/b3.png
Normal file
|
After Width: | Height: | Size: 137 B |
BIN
TDKHome/TDKCade/DOH/images/b4.png
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
TDKHome/TDKCade/DOH/images/b8.png
Normal file
|
After Width: | Height: | Size: 141 B |
BIN
TDKHome/TDKCade/DOH/images/loading.gif
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
TDKHome/TDKCade/DOH/images/logo.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
TDKHome/TDKCade/DOH/images/paddle1.png
Normal file
|
After Width: | Height: | Size: 281 B |
BIN
TDKHome/TDKCade/DOH/images/paddle2.png
Normal file
|
After Width: | Height: | Size: 328 B |
BIN
TDKHome/TDKCade/DOH/images/pb4.png
Normal file
|
After Width: | Height: | Size: 172 B |
BIN
TDKHome/TDKCade/DOH/images/pc5.png
Normal file
|
After Width: | Height: | Size: 158 B |
BIN
TDKHome/TDKCade/DOH/images/pg3.png
Normal file
|
After Width: | Height: | Size: 157 B |
BIN
TDKHome/TDKCade/DOH/images/pp2.png
Normal file
|
After Width: | Height: | Size: 169 B |
BIN
TDKHome/TDKCade/DOH/images/pr1.png
Normal file
|
After Width: | Height: | Size: 148 B |
BIN
TDKHome/TDKCade/DOH/images/py6.png
Normal file
|
After Width: | Height: | Size: 155 B |
BIN
TDKHome/TDKCade/DOH/images/shot.png
Normal file
|
After Width: | Height: | Size: 135 B |
100
TDKHome/TDKCade/DOH/index.html
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=240">
|
||||
<title>Defend Our Home (D.O.H.)</title>
|
||||
<script src="/js/json2.js"></script>
|
||||
<script src="/js/highscores.js"></script>
|
||||
<script>
|
||||
var hiscores = new HighScores("doh");
|
||||
|
||||
function showHighScores()
|
||||
{
|
||||
var popup = document.getElementById("popup");
|
||||
var scores = hiscores.getScores();
|
||||
var info = document.getElementById("infoarea");
|
||||
var table;
|
||||
var row;
|
||||
var cell;
|
||||
|
||||
clearElement(info);
|
||||
|
||||
if(scores.length < 1)
|
||||
{
|
||||
info.appendChild(document.createTextNode("No scores are currently available."));
|
||||
}
|
||||
|
||||
table = document.createElement("table");
|
||||
table.border = "0";
|
||||
table.cellSpacing = "0";
|
||||
table.cellPadding = "0";
|
||||
table.style.width = "190";
|
||||
table.style.fontSize = "12px";
|
||||
table.style.color = "white";
|
||||
table.style.fontSize = "8pt";
|
||||
|
||||
|
||||
for(var i=0; i<scores.length && i<20; i++)
|
||||
{
|
||||
row = table.insertRow(-1);
|
||||
cell = row.insertCell(-1);
|
||||
cell.appendChild(document.createTextNode((i+1)+". "));
|
||||
cell = row.insertCell(-1);
|
||||
cell.appendChild(document.createTextNode(scores[i].name));
|
||||
cell = row.insertCell(-1);
|
||||
cell.align = "right";
|
||||
cell.style.width = "60px";
|
||||
cell.appendChild(document.createTextNode(scores[i].score));
|
||||
}
|
||||
|
||||
info.appendChild(table);
|
||||
|
||||
popup.style.display = "block";
|
||||
}
|
||||
|
||||
function hidePopup()
|
||||
{
|
||||
var popup = document.getElementById("popup");
|
||||
|
||||
popup.style.display = "none";
|
||||
}
|
||||
|
||||
function clearElement(element)
|
||||
{
|
||||
while(element.hasChildNodes()) element.removeChild(element.childNodes[0]);
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
body { margin: 0px; background-color: black; }
|
||||
#topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; color: white; font-family: sans-serif; font-size: 14pt; }
|
||||
#bottomscreen div { margin: 6px; }
|
||||
#bottomscreen div a { text-decoration: none; color: yellow; }
|
||||
#popup { position: absolute; left: 18px; top: 20px; width: 200px; height: 312px; border: 4px solid #FFFFAA; background-color: #000044; display: none; }
|
||||
#infoarea { margin: 5px; width: 190px; height: 278px; overflow: hidden; font-size: 8px; font-family: sans-serif; color: white; padding-top: 5px; }
|
||||
#buttonarea { margin: 5px; width: 190px; height: 14px; background-color: #222288; color: #DDDDDD; }
|
||||
#dismiss { float: left; text-align: center; width: 190px; font: 12px sans-serif; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="topscreen"><img src="images/logo.png"></div>
|
||||
<div id="bottomscreen" align="center">
|
||||
<div><a href="main.html">Start Game</a></div>
|
||||
<div><a href="#" onclick="showHighScores(); return false;">High Scores</a></div>
|
||||
<div><a href="instruct.html">Instructions</a></div>
|
||||
<div><a href="story.html">Story</a></div>
|
||||
<div><a href="credits.html">Credits</a></div>
|
||||
<div><a href="https://sdkpaint.github.io/TDKCade/">Exit</a></div>
|
||||
</div>
|
||||
<div id="popup">
|
||||
<div id="infoarea"></div>
|
||||
<div id="buttonarea" onclick="hidePopup();">
|
||||
<div id="dismiss">Ok</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
document.body.scrollTop = 176;
|
||||
|
||||
if(window.location.toString().indexOf("?showScores") > 0) showHighScores();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
57
TDKHome/TDKCade/DOH/instruct.html
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=240">
|
||||
<title>Defend Our Home (D.O.H.)</title>
|
||||
<style>
|
||||
body { margin: 0px; background-color: black; }
|
||||
#topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; color: white; font-family: sans-serif; font-size: 8pt; }
|
||||
.link { margin: 7px; text-align: justify; text-align: right; position: absolute; left: 100px; top: 325px; }
|
||||
.link a { text-decoration: none; color: yellow; }
|
||||
#powerups { position: absolute; left: 15px; top: 191px; }
|
||||
#getpowerups { position: absolute; left: 10px; top: 291px; width: 100px; color: red; }
|
||||
#shoottext { position: absolute; left: 115px; top: 271px; }
|
||||
#shootpaddle { position: absolute; left: 200px; top: 311px; }
|
||||
#paddle { position: absolute; left: 180px; top: 250px; }
|
||||
#paddletext { position: absolute; left: 115px; top: 225px; color: green; }
|
||||
#goldtext { position: absolute; left: 150px; top: 175px; color: gold; }
|
||||
#shot1 { position: absolute; left: 200px; top: 296px; }
|
||||
#shot2 { position: absolute; left: 218px; top: 296px; }
|
||||
#block1 { position: absolute; left: 195px; top: 266px; }
|
||||
#block2 { position: absolute; left: 145px; top: 205px; }
|
||||
.title { font-size: 12pt; color: yellow; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="topscreen"><img src="images/logo.png"></div>
|
||||
<div id="bottomscreen">
|
||||
<div id="powerups">
|
||||
<div class="title">Power Ups</div>
|
||||
<div><img src="images/pr1.png"> Shoot Bricks</div>
|
||||
<div><img src="images/pp2.png"> Slows Ball</div>
|
||||
<div><img src="images/pg3.png"> Skips Level</div>
|
||||
<div><img src="images/pb4.png"> Larger Paddle</div>
|
||||
<div><img src="images/pc5.png"> Multiball</div>
|
||||
<div><img src="images/py6.png"> 25 Points</div>
|
||||
</div>
|
||||
<div id="getpowerups">Obtain power ups by smashing bricks!</div>
|
||||
<img id="shootpaddle" src="images/paddle2.png">
|
||||
<img id="shot1" src="images/shot.png">
|
||||
<img id="shot2" src="images/shot.png">
|
||||
<div id="block1">
|
||||
<img src="images/b4.png"><img src="images/b4.png"><br>
|
||||
<img src="images/b8.png"><img src="images/b8.png">
|
||||
</div>
|
||||
<div id="shoottext">Use shooting<br>power up to<br>destroy bricks!<br>(UP on DPad)</div>
|
||||
<img id="paddle" src="images/paddle1.png">
|
||||
<div id="block2">
|
||||
<img src="images/b10.png"><img src="images/b1.png"><img src="images/b1.png"><img src="images/b10.png"><br>
|
||||
<img src="images/b10.png"><img src="images/b3.png"><img src="images/b3.png"><img src="images/b10.png">
|
||||
</div>
|
||||
<div id="paddletext">Use the stylus<br>to control<br>the paddle.</div>
|
||||
<div id="goldtext">Gold blocks are invulnerable.</div>
|
||||
<div class="link"><a href="index.html">MENU</a></div>
|
||||
</div>
|
||||
<script>document.body.scrollTop = 176;</script>
|
||||
</body>
|
||||
</html>
|
||||
22
TDKHome/TDKCade/DOH/l4.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
blocksx: 15,
|
||||
blocksy: 15,
|
||||
blocks: [
|
||||
" 0 ",
|
||||
" 000 ",
|
||||
" 000 ",
|
||||
" 0 ",
|
||||
" 9 ",
|
||||
" 9 ",
|
||||
" 9 ",
|
||||
" 9 ",
|
||||
" 9 ",
|
||||
" 9 ",
|
||||
" 8 9 8 ",
|
||||
" 2222222 ",
|
||||
" 222222222 ",
|
||||
" 222222222 ",
|
||||
" 222222222 ",
|
||||
" 2222222 "
|
||||
]
|
||||
}
|
||||
828
TDKHome/TDKCade/DOH/main.html
Normal file
|
|
@ -0,0 +1,828 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Defend Our Home (D.O.H.)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=240" />
|
||||
<script src="/js/json2.js"></script>
|
||||
<script src="/js/highscores.js"></script>
|
||||
<script src="/js/sprites.js"></script>
|
||||
<script>
|
||||
var ANGLES = [[-3, -1], [-2, -2], [-1, -3], [1, -3], [2, -2], [3, -1]];
|
||||
var time = 0;
|
||||
var timer = 0;
|
||||
var total = 0;
|
||||
var destroyed = 0;
|
||||
var pills = [];
|
||||
var hits = [];
|
||||
var damaged = [];
|
||||
|
||||
var dud;
|
||||
|
||||
var score = 0;
|
||||
var level = 0;
|
||||
var lastLife = 0;
|
||||
|
||||
var balls = [{
|
||||
x: 99,
|
||||
y: 157,
|
||||
stuck: true,
|
||||
dirx: 2,
|
||||
diry: -2,
|
||||
speed: 4
|
||||
}];
|
||||
|
||||
var paddle = {
|
||||
x: 89,
|
||||
y: 160,
|
||||
width: 21,
|
||||
height: 5,
|
||||
lives: 3,
|
||||
ammo: 0,
|
||||
type: 0,
|
||||
render: true
|
||||
};
|
||||
|
||||
var shots = [];
|
||||
|
||||
var blocks;
|
||||
var blocksx = 15;
|
||||
var blocksy = 30;
|
||||
|
||||
var colors = ["green", "yellow", "lilac", "orange", "red", "cyan", "brown", "purple", "gray", "gold"];
|
||||
|
||||
var sprites = [];
|
||||
var list = ["bg", "paddle1", "paddle2", "paddle3", "ball", "b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "b10", "hit", "pr1", "pr2", "pr3", "pr4", "pr5", "pr6", "pr7", "pp1", "pp2", "pp3", "pp4", "pp5", "pp6", "pp7", "pb1", "pb2", "pb3", "pb4", "pb5", "pb6", "pb7", "py1", "py2", "py3", "py4", "py5", "py6", "py7", "pg1", "pg2", "pg3", "pg4", "pg5", "pg6", "pg7", "pc1", "pc2", "pc3", "pc4", "pc5", "pc6", "pc7", "shot", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
|
||||
var canvas;
|
||||
var ctx;
|
||||
|
||||
var background;
|
||||
var ctx2;
|
||||
var dirty = new DirtyRectangleManager();
|
||||
|
||||
var hiscores = new HighScores("doh");
|
||||
|
||||
var x = 0;
|
||||
var y = 0;
|
||||
|
||||
function init()
|
||||
{
|
||||
var data;
|
||||
|
||||
background = document.createElement("canvas");
|
||||
background.width = sprites[0].width;
|
||||
background.height = sprites[0].height;
|
||||
|
||||
renderBG();
|
||||
|
||||
ctx2 = background.getContext("2d");
|
||||
ctx2.fillStyle = "white";
|
||||
ctx2.fillRect(0, 0, 240, 176);
|
||||
|
||||
data = ctx.getImageData(0, 0, 240, 176);
|
||||
ctx2.putImageData(data, 0, 0);
|
||||
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
|
||||
nextLevel();
|
||||
|
||||
document.getElementById("loading").parentNode.removeChild(document.getElementById("loading"));
|
||||
}
|
||||
|
||||
function nextLevel()
|
||||
{
|
||||
//Delete shots
|
||||
shots.length = 0;
|
||||
|
||||
//Delete pills
|
||||
pills.length = 0;
|
||||
|
||||
//Clear areas to clean up
|
||||
dirty.clear();
|
||||
damaged.length = 0;
|
||||
|
||||
//Delete extra balls
|
||||
while(balls.length > 1) balls.pop();
|
||||
|
||||
//Stick the first one
|
||||
balls[0].stuck = true;
|
||||
balls[0].y = 157;
|
||||
balls[0].x = balls[0].x = paddle.x + Math.floor(paddle.width/2);
|
||||
balls[0].dirx = 2;
|
||||
balls[0].diry = -2;
|
||||
balls[0].speed = 4;
|
||||
|
||||
//Reset paddle
|
||||
paddle.ammo = 0;
|
||||
paddle.y = 160;
|
||||
paddle.width = 21;
|
||||
paddle.height = 5;
|
||||
paddle.type = 0;
|
||||
|
||||
renderBG();
|
||||
paddle.render = true;
|
||||
|
||||
loadLevel((level%10)+1);
|
||||
level++;
|
||||
|
||||
renderScore();
|
||||
renderLevel();
|
||||
renderLives();
|
||||
}
|
||||
|
||||
function lifeLost()
|
||||
{
|
||||
//for(var i=0; i<pills.length; i++) dirty.add({x: pills[i].x, y: pills[i].y, width: 11, height: 5});
|
||||
|
||||
pills.length = 0;
|
||||
balls = [{
|
||||
x: paddle.x + Math.floor(paddle.width/2),
|
||||
y: 157,
|
||||
stuck: true,
|
||||
dirx: 2,
|
||||
diry: -2,
|
||||
speed: 4
|
||||
}];
|
||||
|
||||
pillCaught(-1);
|
||||
paddle.lives--;
|
||||
renderLives();
|
||||
}
|
||||
|
||||
function submitHighscore()
|
||||
{
|
||||
if(!window.highscoreDIV)
|
||||
{
|
||||
window.highscoreDIV = document.createElement("div");
|
||||
window.highscoreDIV.className = "highscore";
|
||||
|
||||
if(!hiscores.isScoreHigher(score))
|
||||
{
|
||||
highscoreDIV.style.color = "white";
|
||||
highscoreDIV.style.lineHeight = "176px";
|
||||
highscoreDIV.appendChild(document.createTextNode("Game Over"));
|
||||
|
||||
setTimeout("window.location = 'index.html'", 5000);
|
||||
}
|
||||
else
|
||||
{
|
||||
highscoreDIV.style.backgroundColor = "white";
|
||||
|
||||
var div = document.createElement("div");
|
||||
div.style.lineHeight = "50px";
|
||||
div.appendChild(document.createTextNode("New High Score"))
|
||||
highscoreDIV.appendChild(div);
|
||||
|
||||
div = document.createElement("div");
|
||||
div.style.lineHeight = "25px";
|
||||
div.appendChild(document.createTextNode(score+" points"))
|
||||
highscoreDIV.appendChild(div);
|
||||
|
||||
var name = document.createElement("input");
|
||||
name.style.width = "140px";
|
||||
name.maxlength = 16;
|
||||
name.style.margin = "10px";
|
||||
if(hiscores.getCachedName()) name.value = hiscores.getCachedName().substring(0, 16);
|
||||
|
||||
div = document.createElement("div");
|
||||
div.appendChild(name)
|
||||
highscoreDIV.appendChild(div);
|
||||
|
||||
var button = document.createElement("button");
|
||||
|
||||
div = document.createElement("div");
|
||||
button.appendChild(document.createTextNode("Submit"));
|
||||
button.style.margin = "10px";
|
||||
div.appendChild(button)
|
||||
highscoreDIV.appendChild(div);
|
||||
|
||||
button.onclick = function() {
|
||||
var high = new HighScore(name.value, score);
|
||||
|
||||
high.level = level;
|
||||
high.playTime = time;
|
||||
|
||||
hiscores.submitScore(high);
|
||||
|
||||
window.location = "index.html?showScores";
|
||||
};
|
||||
}
|
||||
|
||||
document.body.appendChild(highscoreDIV);
|
||||
}
|
||||
}
|
||||
|
||||
function loadLevel(level)
|
||||
{
|
||||
var data;
|
||||
var screen = document.getElementById("bottomscreen");
|
||||
var request = new XMLHttpRequest();
|
||||
|
||||
request.open("GET", "l"+level+".json", false);
|
||||
request.send(null);
|
||||
|
||||
if(request.status != 200) alert("Error: Unable to load level "+level);
|
||||
|
||||
data = eval("("+request.responseText+")");
|
||||
|
||||
total = 0;
|
||||
destroyed = 0;
|
||||
blocksx = data.blocksx;
|
||||
blocksy = data.blocksy;
|
||||
blocks = [];
|
||||
|
||||
for(var y=0; y<data.blocks.length; y++)
|
||||
{
|
||||
blocks[y] = [];
|
||||
|
||||
for(var x=0; x<data.blocks[y].length; x++)
|
||||
{
|
||||
if(data.blocks[y].charAt(x) == " ")
|
||||
{
|
||||
blocks[y][x] = null;
|
||||
}
|
||||
else
|
||||
{
|
||||
blocks[y][x] = {x: (x * 15 + blocksx), y: (y * 7 + blocksy), gridx: x, gridy: y};
|
||||
blocks[y][x].type = Number(data.blocks[y].charAt(x));
|
||||
blocks[y][x].life = (blocks[y][x].type > 7) ? ((blocks[y][x].type == 8) ? 2 : 99) : 1;
|
||||
|
||||
sprites[5+blocks[y][x].type].render(blocks[y][x].x, blocks[y][x].y);
|
||||
|
||||
if((blocks[y][x].type < 9)) total++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function load(index)
|
||||
{
|
||||
sprites[index] = new Sprite("images/"+list[index]+".img.b64", canvas);
|
||||
}
|
||||
|
||||
function render()
|
||||
{
|
||||
dirty.render();
|
||||
|
||||
while(hits.length > 0)
|
||||
{
|
||||
var hit = hits.pop();
|
||||
sprites[5+hit.type].render(hit.x, hit.y);
|
||||
}
|
||||
|
||||
while(damaged.length > 0)
|
||||
{
|
||||
var dmg = damaged.pop();
|
||||
sprites[5+dmg.type].render(dmg.x, dmg.y);
|
||||
}
|
||||
|
||||
for(var i=0; i<balls.length; i++)
|
||||
{
|
||||
if(balls[i].y >= 200)
|
||||
{
|
||||
if(balls.length > 1)
|
||||
{
|
||||
balls.splice(i, 1);
|
||||
i--;
|
||||
continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
//paddle.lives--;
|
||||
//renderLives();
|
||||
lifeLost();
|
||||
}
|
||||
}
|
||||
|
||||
renderBall(balls[i]);
|
||||
}
|
||||
|
||||
renderPills();
|
||||
renderShots();
|
||||
|
||||
sprites[paddle.type+1].render(paddle.x, paddle.y);
|
||||
if(paddle.render) paddle.render = false;
|
||||
|
||||
if(destroyed >= total)
|
||||
{
|
||||
nextLevel();
|
||||
}
|
||||
|
||||
time++;
|
||||
}
|
||||
|
||||
function renderScore()
|
||||
{
|
||||
var temp = score;
|
||||
var count = 0;
|
||||
var x = 229;
|
||||
|
||||
if(score-lastLife >= 250)
|
||||
{
|
||||
lastLife += 250;
|
||||
paddle.lives++;
|
||||
renderLives();
|
||||
}
|
||||
|
||||
while(temp > 0 && count < 5)
|
||||
{
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(x, 28, 8, 16);
|
||||
|
||||
sprites[59 + (temp%10)].render(x, 28);
|
||||
|
||||
count++;
|
||||
x -= 9;
|
||||
temp = Math.floor(temp / 10);
|
||||
}
|
||||
}
|
||||
|
||||
function renderLevel()
|
||||
{
|
||||
var temp = level;
|
||||
var count = 0;
|
||||
var x = 229;
|
||||
|
||||
while(temp > 0 && count < 5)
|
||||
{
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(x, 73, 8, 16);
|
||||
|
||||
sprites[59 + (temp%10)].render(x, 73);
|
||||
|
||||
count++;
|
||||
x -= 9;
|
||||
temp = Math.floor(temp / 10);
|
||||
}
|
||||
}
|
||||
|
||||
function renderLives()
|
||||
{
|
||||
var temp = paddle.lives;
|
||||
var count = 0;
|
||||
var x = 229;
|
||||
|
||||
while(temp > 0 && count < 5)
|
||||
{
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(x, 118, 8, 16);
|
||||
|
||||
sprites[59 + (temp%10)].render(x, 118);
|
||||
|
||||
count++;
|
||||
x -= 9;
|
||||
temp = Math.floor(temp / 10);
|
||||
}
|
||||
}
|
||||
|
||||
function renderBall(ball)
|
||||
{
|
||||
var gridx;
|
||||
var gridy;
|
||||
var block;
|
||||
|
||||
if(timer < time) ball.speed = 4;
|
||||
|
||||
if(!ball.stuck)
|
||||
{
|
||||
for(var i=0; i<ball.speed; i++)
|
||||
{
|
||||
ball.x += ball.dirx;
|
||||
ball.y += ball.diry;
|
||||
block = null;
|
||||
|
||||
if(ball.x >= 177 || ball.x <= 15)
|
||||
{
|
||||
if(ball.x >= 177) ball.x -= (ball.x - 177);
|
||||
else ball.x += (15 - ball.x);
|
||||
|
||||
//ball.x -= ball.dirx;
|
||||
ball.dirx = -ball.dirx;
|
||||
}
|
||||
|
||||
if(ball.y <= 8)
|
||||
{
|
||||
ball.y += (8 - ball.y); //ball.diry;
|
||||
ball.diry = -ball.diry;
|
||||
}
|
||||
|
||||
if((ball.y >= 157 && ball.y < 165) && (paddle.x < ball.x+3 && paddle.x > ball.x-paddle.width))
|
||||
{
|
||||
var dist = Math.floor((ball.x - paddle.x) / (paddle.width / ANGLES.length));
|
||||
|
||||
if(dist < 0) dist = 0;
|
||||
if(dist > 5) dist = 5;
|
||||
|
||||
ball.dirx = ANGLES[dist][0];
|
||||
ball.diry = ANGLES[dist][1];
|
||||
}
|
||||
|
||||
if(ball.y >= blocksy && ball.y <= blocksy + (blocks.length * 7)-3)
|
||||
{
|
||||
var testx = (ball.dirx > 0) ? testDirection(ball, 4, 2) : testDirection(ball, -1, 2);
|
||||
var testy = (ball.diry > 0) ? testDirection(ball, 2, 4) : testDirection(ball, 2, -1);
|
||||
var block = (ball.dirx > ball.diry) ? (testx || testy) : (testy || testx);
|
||||
|
||||
|
||||
if(block)
|
||||
{
|
||||
if(testx == testy)
|
||||
{
|
||||
var altx = (ball.dirx < 0) ? testDirection(ball, 4, 2) : testDirection(ball, -1, 2);
|
||||
var alty = (ball.diry < 0) ? testDirection(ball, 2, 4) : testDirection(ball, 2, -1);
|
||||
|
||||
if(!altx && alty) ball.dirx = -ball.dirx;
|
||||
else if(altx && !alty) ball.diry = -ball.diry;
|
||||
else
|
||||
{
|
||||
ball.dirx = -ball.dirx;
|
||||
ball.diry = -ball.diry;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(block == testy) ball.diry = -ball.diry;
|
||||
if(block == testx) ball.dirx = -ball.dirx;
|
||||
}
|
||||
|
||||
block.life--;
|
||||
|
||||
if(!block.life && Math.floor(Math.random() * 1000)%4 == 0)
|
||||
{
|
||||
var pill = {
|
||||
x: block.x + 1,
|
||||
y: block.y + 2,
|
||||
frame: 0,
|
||||
type: Math.floor(Math.random() * 6000) % 6
|
||||
};
|
||||
|
||||
while((destroyed < total/2 || level%10 == 0) && pill.type == 4) pill.type = Math.floor(Math.random() * 6000) % 6;
|
||||
|
||||
pills.push(pill);
|
||||
}
|
||||
|
||||
if(block.life)
|
||||
{
|
||||
sprites[15].render(block.x, block.y);
|
||||
hits.push(block);
|
||||
}
|
||||
else
|
||||
{
|
||||
destroyed++;
|
||||
|
||||
score += block.type + 1;
|
||||
renderScore();
|
||||
|
||||
dirty.add({x: block.x, y: block.y, width: 15, height: 7});
|
||||
blocks[block.gridy][block.gridx] = null;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
else if(gridy < blocks.length)
|
||||
{
|
||||
dirty.add({x: gridx * 15 + blocksx, y: gridy * 7 + blocksy, width: 15, height: 7});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sprites[4].render(ball.x, ball.y);
|
||||
dirty.add({x: ball.x, y: ball.y, width: 3, height: 3});
|
||||
}
|
||||
|
||||
function testDirection(ball, offx, offy)
|
||||
{
|
||||
gridx = Math.floor((ball.x+offx-blocksx)/15);
|
||||
gridy = Math.floor((ball.y+offy-blocksy)/7);
|
||||
|
||||
if(gridy < blocks.length && blocks[gridy] && (block = blocks[gridy][gridx]))
|
||||
{
|
||||
return block;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
function renderBG()
|
||||
{
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(0, 0, 240, 176);
|
||||
|
||||
sprites[0].render(0, 0);
|
||||
}
|
||||
|
||||
function renderPills()
|
||||
{
|
||||
var pill;
|
||||
|
||||
for(var i=0; i<pills.length; i++)
|
||||
{
|
||||
pill = pills[i];
|
||||
|
||||
pill.frame = (pill.frame+1)%7;
|
||||
pill.y += 3;
|
||||
|
||||
if(pill.y >= 170)
|
||||
{
|
||||
pills.splice(i, 1);
|
||||
i--;
|
||||
}
|
||||
else if(pill.y > 155 && (paddle.x < pill.x+11 && paddle.x > pill.x-paddle.width+1))
|
||||
{
|
||||
pills.splice(i, 1);
|
||||
i--;
|
||||
|
||||
pillCaught(pill);
|
||||
}
|
||||
else
|
||||
{
|
||||
sprites[pill.type*7+pill.frame+16].render(pill.x, pill.y);
|
||||
}
|
||||
|
||||
dirty.add({x: pill.x, y: pill.y, width: 11, height: 5});
|
||||
|
||||
if(pill.y > blocksy)
|
||||
{
|
||||
var gridx = Math.floor((pill.x+1-blocksx)/15);
|
||||
var gridy = Math.floor((pill.y+1-blocksy)/7);
|
||||
|
||||
if(blocks[gridy] && blocks[gridy][gridx]) damaged.push(blocks[gridy][gridx]);
|
||||
if(blocks[gridy+1] && blocks[gridy+1][gridx]) damaged.push(blocks[gridy+1][gridx]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function pillCaught(pill)
|
||||
{
|
||||
timer = 0;
|
||||
|
||||
paddle.render = true;
|
||||
|
||||
if(pill.type != 2 && pill.type != 0)
|
||||
{
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
|
||||
paddle.ammo = 0;
|
||||
paddle.width = 21;
|
||||
paddle.height = 5;
|
||||
paddle.x += Math.floor((paddle.width - 21)/2);
|
||||
paddle.y = 160;
|
||||
paddle.type = 0;
|
||||
}
|
||||
|
||||
if(pill.type == 2)
|
||||
{
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
|
||||
paddle.ammo = 0;
|
||||
paddle.width = 27;
|
||||
paddle.height = 5;
|
||||
paddle.x -= Math.floor((27 - paddle.width)/2);
|
||||
paddle.y = 160;
|
||||
paddle.type = 2;
|
||||
}
|
||||
else if(pill.type == 0)
|
||||
{
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
|
||||
paddle.ammo += 20;
|
||||
paddle.width = 22;
|
||||
paddle.height = 9;
|
||||
paddle.x -= Math.floor((22 - paddle.width)/2);
|
||||
paddle.y = 156;
|
||||
paddle.type = 1;
|
||||
}
|
||||
else if(pill.type == 1)
|
||||
{
|
||||
for(var i=0; i<balls.length; i++) balls[i].speed = 2;
|
||||
timer = time + 450;
|
||||
}
|
||||
else if(pill.type == 3)
|
||||
{
|
||||
score += 25;
|
||||
renderScore();
|
||||
}
|
||||
else if(pill.type == 4)
|
||||
{
|
||||
nextLevel();
|
||||
return;
|
||||
}
|
||||
else if(pill.type == 5)
|
||||
{
|
||||
multiball();
|
||||
}
|
||||
}
|
||||
|
||||
function renderShots()
|
||||
{
|
||||
var gridx;
|
||||
var gridy;
|
||||
var gridHeight = blocksy + (blocks.length * 7)-2
|
||||
var block;
|
||||
var shot;
|
||||
|
||||
for(var i=0; i<shots.length; i++)
|
||||
{
|
||||
shot = shots[i];
|
||||
|
||||
for(var j=0; j<3; j++)
|
||||
{
|
||||
shots[i].y -= 4;
|
||||
|
||||
if(shots[i].y >= blocksy && shots[i].y < gridHeight)
|
||||
{
|
||||
gridx = Math.floor((shot.x+1-blocksx)/15);
|
||||
gridy = Math.floor((shot.y-blocksy)/7);
|
||||
|
||||
if(gridy < blocks.length && (block = blocks[gridy][gridx]) && block.type < 9)
|
||||
{
|
||||
destroyed++;
|
||||
dirty.add({x: block.x, y: block.y, width: 15, height: 7});
|
||||
//block.div.parentNode.removeChild(block.div);
|
||||
blocks[gridy][gridx] = null;
|
||||
|
||||
//shots[i].sprite.parentNode.removeChild(shots[i].sprite);
|
||||
dirty.add({x: shot.x, y: shot.y, width: 3, height: 5});
|
||||
shots.splice(i, 1);
|
||||
i--;
|
||||
|
||||
if(destroyed >= total)
|
||||
{
|
||||
nextLevel();
|
||||
return;
|
||||
}
|
||||
|
||||
j=4;
|
||||
}
|
||||
else if(block)
|
||||
{
|
||||
shots.splice(i, 1);
|
||||
i--;
|
||||
j=4;
|
||||
|
||||
damaged.push(block);
|
||||
}
|
||||
else if(gridy < blocks.length)
|
||||
{
|
||||
dirty.add({x: gridx * 15 + blocksx, y: gridy * 7 + blocksy, width: 15, height: 7});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sprites[58].render(shot.x, shot.y);
|
||||
dirty.add({x: shot.x, y: shot.y, width: 3, height: 5});
|
||||
|
||||
if(shot.y < 15)
|
||||
{
|
||||
shots.splice(i, 1);
|
||||
i--;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createShot()
|
||||
{
|
||||
var shot1 = { x: paddle.x, y: 152 };
|
||||
var shot2 = { x: paddle.x+paddle.width-3, y: 152 };
|
||||
|
||||
shots.push(shot1);
|
||||
shots.push(shot2);
|
||||
}
|
||||
|
||||
function multiball()
|
||||
{
|
||||
var start = (balls[0].x < 0) ? 0 : 3;
|
||||
var last = 0;
|
||||
var ball;
|
||||
|
||||
while(balls.length < 3)
|
||||
{
|
||||
for(var i=0; i<balls.length; i++)
|
||||
{
|
||||
if(balls[i].dirx == ANGLES[start][0])
|
||||
{
|
||||
start = (start+1)%ANGLES.length;
|
||||
i = last;
|
||||
}
|
||||
}
|
||||
|
||||
ball = {
|
||||
x: balls[0].x,
|
||||
y: balls[0].y,
|
||||
stuck: false,
|
||||
dirx: ANGLES[start][0],
|
||||
diry: ANGLES[start][1],
|
||||
speed: 4
|
||||
};
|
||||
|
||||
last = start;
|
||||
|
||||
if(balls[0].diry > 0) ball.diry = -ball.diry;
|
||||
|
||||
balls.push(ball);
|
||||
start++;
|
||||
}
|
||||
}
|
||||
|
||||
function run()
|
||||
{
|
||||
if(sprites.length < list.length)
|
||||
{
|
||||
canvas = document.getElementById("canvas");
|
||||
ctx = canvas.getContext("2d");
|
||||
|
||||
ctx.fillStyle = "white";
|
||||
ctx.fillRect(0, 0, 240, 176);
|
||||
|
||||
load(sprites.length);
|
||||
|
||||
if(sprites.length == list.length && !background) init();
|
||||
}
|
||||
else if(paddle.lives < 1)
|
||||
{
|
||||
submitHighscore();
|
||||
}
|
||||
else
|
||||
{
|
||||
render();
|
||||
}
|
||||
}
|
||||
|
||||
function DirtyRectangleManager()
|
||||
{
|
||||
var stack = [];
|
||||
|
||||
this.add = function(rect) {
|
||||
stack.push(rect);
|
||||
};
|
||||
|
||||
this.render = function() {
|
||||
var rect;
|
||||
|
||||
while(stack.length > 0)
|
||||
{
|
||||
rect = stack.pop();
|
||||
|
||||
ctx.fillRect(rect.x, rect.y, rect.width, rect.height);
|
||||
ctx.putImageData(ctx2.getImageData(rect.x, rect.y, rect.width, rect.height), rect.x, rect.y);
|
||||
}
|
||||
};
|
||||
|
||||
this.clear = function() {
|
||||
stack.length = 0
|
||||
};
|
||||
}
|
||||
|
||||
function onMouseMove(evt)
|
||||
{
|
||||
if(!paddle.render)
|
||||
{
|
||||
dirty.add({x: paddle.x, y: paddle.y, width: paddle.width, height: paddle.height});
|
||||
paddle.render = true;
|
||||
}
|
||||
|
||||
paddle.x = evt.clientX - 14;
|
||||
|
||||
if(paddle.x < 15) paddle.x = 15;
|
||||
if(paddle.x+paddle.width > 180) paddle.x = 180-paddle.width;
|
||||
|
||||
if(balls[0].stuck) balls[0].x = paddle.x + Math.floor(paddle.width/2);
|
||||
|
||||
evt.preventDefault();
|
||||
evt.cancelBubble = true;
|
||||
}
|
||||
|
||||
function onKeyPress(evt)
|
||||
{
|
||||
if(balls[0].stuck) balls[0].stuck = false;
|
||||
|
||||
if(paddle.ammo > 0)
|
||||
{
|
||||
createShot();
|
||||
paddle.ammo -= 2;
|
||||
|
||||
if(paddle.ammo <= 0) pillCaught({type: -1});
|
||||
}
|
||||
|
||||
evt.preventDefault();
|
||||
evt.cancelBubble = true;
|
||||
}
|
||||
|
||||
document.addEventListener("mousemove", onMouseMove, false);
|
||||
document.addEventListener("keydown", onKeyPress, false);
|
||||
document.addEventListener("click", onKeyPress, false);
|
||||
</script>
|
||||
<style>
|
||||
body { margin: 0px; }
|
||||
#loading { position: absolute; left: 112px; top: 80px; }
|
||||
.highscore { position: absolute; left: 0px; top: 0px; width: 240px; height: 176px; text-align: center; }
|
||||
</style>
|
||||
</head>
|
||||
<body onload="setInterval(run, 60);">
|
||||
<div id="bottomscreen">
|
||||
<canvas id="canvas" width="240" height="176"></canvas>
|
||||
</div>
|
||||
<img id="loading" src="images/loading.gif">
|
||||
</body>
|
||||
</html>
|
||||
28
TDKHome/TDKCade/DOH/story.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=240">
|
||||
<title>Defend Our Home (D.O.H.)</title>
|
||||
<style>
|
||||
body { margin: 0px; background-color: black; }
|
||||
#topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; color: white; font-family: sans-serif; font-size: 8pt; }
|
||||
#bottomscreen div { margin: 7px; text-align: justify; }
|
||||
#bottomscreen div.link { text-align: right; }
|
||||
#bottomscreen div.link a { text-decoration: none; color: yellow; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="topscreen"><img src="images/logo.png"></div>
|
||||
<div id="bottomscreen" align="center">
|
||||
<h1>Story</h1>
|
||||
<div>An alien force has launched an antimatter bomb at your
|
||||
planet. You must stop it!</div>
|
||||
<div>Use the ARK-9000 vessel to deflect the bomb back at
|
||||
your mysterious attackers. But watch out for the forcefields!</div>
|
||||
<div>Smash through the forcefields by deflecting the bomb! Don't let it
|
||||
pass you, or your world is lost...</div>
|
||||
<div class="link"><a href="index.html">MENU</a></div>
|
||||
</div>
|
||||
<script>document.body.scrollTop = 176;</script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
TDKHome/TDKCade/DSiCalc/buttons.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
59
TDKHome/TDKCade/DSiCalc/index.html
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>DSiCalc by Vadersapien</title>
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<style language='css'>
|
||||
body {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 240px;
|
||||
height: 176px;
|
||||
overflow: hidden;
|
||||
border: 1px solid hidden;
|
||||
}
|
||||
|
||||
img {
|
||||
margin: 0px;
|
||||
width: 240px;
|
||||
height: 176px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div style='position:absolute; left:4px; top:2px; width:234px; height:20px;'>
|
||||
<form name="Calc"><input type='text' name='Input' value = '' size = '30'></form>
|
||||
</div>
|
||||
<img src ='buttons.png' alt='Loading DSiCalc' usemap='#keyMap' border='0' />
|
||||
<div style="display:none;">
|
||||
<map name='keyMap'>
|
||||
<!--1st Column-->
|
||||
<area shape ='rect' coords ='4,27,46,47' onMouseDown='Calc.Input.value = eval(Calc.Input.value) * eval(Calc.Input.value)'/>
|
||||
<area shape ='rect' coords ='4,52,46,72' onMouseDown='Calc.Input.value += "7"'/>
|
||||
<area shape ='rect' coords ='4,78,46,98' onMouseDown='Calc.Input.value += "4"'/>
|
||||
<area shape ='rect' coords ='4,103,46,123' onMouseDown='Calc.Input.value += "1"'/>
|
||||
<area shape ='rect' coords ='4,128,46,148' onMouseDown='Calc.Input.value = ""'/>
|
||||
<!--2nd Column-->
|
||||
<area shape ='rect' coords ='52,27,94,47' onMouseDown='Calc.Input.value = Math.sqrt(Calc.Input.value)'/>
|
||||
<area shape ='rect' coords ='52,52,94,72' onMouseDown='Calc.Input.value += "8"'/>
|
||||
<area shape ='rect' coords ='52,78,94,98' onMouseDown='Calc.Input.value += "5"'/>
|
||||
<area shape ='rect' coords ='52,103,94,123' onMouseDown='Calc.Input.value += "2"'/>
|
||||
<area shape ='rect' coords ='52,128,94,148' onMouseDown='Calc.Input.value += "0"'/>
|
||||
<!--3rd Column-->
|
||||
<area shape ='rect' coords ='99,27,141,47' onMouseDown='Calc.Input.value += "("'/>
|
||||
<area shape ='rect' coords ='99,52,141,72' onMouseDown='Calc.Input.value += "9"'/>
|
||||
<area shape ='rect' coords ='99,78,141,98' onMouseDown='Calc.Input.value += "6"'/>
|
||||
<area shape ='rect' coords ='99,103,141,123' onMouseDown='Calc.Input.value += "3"'/>
|
||||
<area shape ='rect' coords ='99,128,141,148' onMouseDown='Calc.Input.value += "."'/>
|
||||
<!--4th Column-->
|
||||
<area shape ='rect' coords ='147,27,189,47' onMouseDown='Calc.Input.value += ")"'/>
|
||||
<area shape ='rect' coords ='147,52,189,97' onMouseDown='Calc.Input.value += "*"'/>
|
||||
<area shape ='rect' coords ='147,103,189,148' onMouseDown='Calc.Input.value += "+"'/>
|
||||
<!--5th Column-->
|
||||
<area shape ='rect' coords ='194,27,236,47' onMouseDown='Calc.Input.value = Calc.Input.value.substring(0, Calc.Input.value.length - 1)'/>
|
||||
<area shape ='rect' coords ='194,52,236,97' onMouseDown='Calc.Input.value += "/"'/>
|
||||
<area shape ='rect' coords ='194,103,236,148' onMouseDown='Calc.Input.value += "-"'/>
|
||||
<!--Calculate Button-->
|
||||
<area shape ='rect' coords ='4,152,236,172' onMouseDown='with(window.Math) { Calc.Input.value = eval(Calc.Input.value) }'/>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
TDKHome/TDKCade/DSiPaintStudio/images/plating.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||
<html><head>
|
||||
<title>404 Not Found</title>
|
||||
</head><body>
|
||||
<h1>Not Found</h1>
|
||||
<p>The requested URL was not found on this server.</p>
|
||||
<p>Additionally, a 404 Not Found
|
||||
error was encountered while trying to use an ErrorDocument to handle the request.</p>
|
||||
</body></html>
|
||||
116
TDKHome/TDKCade/DSiPaintStudio/index.html
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/DSiPaintStudio/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:29:59 GMT -->
|
||||
<head>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/xml; charset=ISO-8859-1" />
|
||||
<meta name="viewport" content="width=240">
|
||||
<meta name="description" content="DSiPaint Demo" />
|
||||
<title>DSi Paint Studio</title>
|
||||
<meta name="keywords" content="DSiPaint, DS Opera SDK, DSi Opera SDK, Nintendo DS, Nintendo DSi, DSi, JavaScript, video games, DS Chatroom, homebrew" />
|
||||
<script type="text/javascript">
|
||||
var color=[0,0,0], erasing=false, block=1;
|
||||
var drawingcanvas=null, palettecanvas=null, colordiv=null, statusdiv=null;
|
||||
|
||||
window.onload = function(){
|
||||
drawingcanvas=document.getElementById('canvas').getContext('2d');
|
||||
palettecanvas=document.getElementById('palette').getContext('2d');
|
||||
colordiv=document.getElementById('color');
|
||||
statusdiv=document.getElementById('status');
|
||||
drawingcanvas.fillStyle = 'rgb(255,255,255)';
|
||||
drawingcanvas.fillRect(0,0,160,160);
|
||||
drawingcanvas.fillStyle = 'rgb(0,0,0)';
|
||||
for(var temp_color=512;--temp_color>=0;){
|
||||
palettecanvas.fillStyle='rgb('+(((temp_color>>6)&7)<<5)+','+(((temp_color>>3)&7)<<5)+','+(((temp_color)&7)<<5)+')';
|
||||
palettecanvas.fillRect((temp_color&15)<<2,(temp_color>>4)<<2,4,4);
|
||||
}
|
||||
for(var temp_color=8;--temp_color>=0;){
|
||||
palettecanvas.fillStyle='rgb('+(temp_color<<5)+','+(temp_color<<5)+','+(temp_color<<5)+')';
|
||||
palettecanvas.fillRect(64,temp_color<<4,12,16);
|
||||
}
|
||||
statusdiv.innerHTML='Welcome to DSi Paint Studio!';
|
||||
}
|
||||
|
||||
function paint(){
|
||||
if((mousex=event.clientX-1)>=0 && (mousey=event.clientY-1)>=0 && mousex<=159 && mousey<=159){
|
||||
if(erasing){
|
||||
drawingcanvas.clearRect(mousex^1,mousey^1,block<<1,block<<1);
|
||||
}else{
|
||||
drawingcanvas.fillRect(mousex^1,mousey^1,block<<1,block<<1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function set_color(){
|
||||
if((mousey=window.event.clientY-1)>=0 && mousey<128){
|
||||
if((mousex=window.event.clientX-162)>=0 && mousex<64){
|
||||
var temp_color = (mousex>>2)+((mousey>>2)<<4);
|
||||
color=[((temp_color>>6)&7)<<5,((temp_color>>3)&7)<<5,((temp_color)&7)<<5];
|
||||
}else{
|
||||
color=[(mousey>>4)<<5,(mousey>>4)<<5,(mousey>>4)<<5];
|
||||
}
|
||||
drawingcanvas.fillStyle = 'rgb('+color[0]+','+color[1]+','+color[2]+')';
|
||||
statusdiv.innerHTML = 'Color set to ('+color[0]+','+color[1]+','+color[2]+')';
|
||||
colordiv.style.background = 'rgb('+color[0]+','+color[1]+','+color[2]+')';
|
||||
erasing=false;
|
||||
}
|
||||
}
|
||||
|
||||
function draw(size){
|
||||
erasing=false;
|
||||
block=size;
|
||||
drawingcanvas.fillStyle = 'rgb('+color[0]+','+color[1]+','+color[2]+')';
|
||||
colordiv.style.background = 'rgb('+color[0]+','+color[1]+','+color[2]+')';
|
||||
}
|
||||
function erase(size){
|
||||
erasing=true;
|
||||
block=size;
|
||||
drawingcanvas.fillStyle = 'rgb(255,255,255)';
|
||||
colordiv.style.background = 'rgb(255,255,255)';
|
||||
}
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
BODY {
|
||||
background: url("images/plating.html");
|
||||
color: #002;
|
||||
font-size: 8px;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.button {
|
||||
background: #00f;
|
||||
border: 2px outset #00f;
|
||||
color: #fff;
|
||||
font-size: 8px;
|
||||
height: 11px;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
width: 28px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<canvas id="canvas" style="background:#fff; border:1px inset #888; left:0px; position:absolute; top:0px" width="160" height="160" onmousemove="paint()"></canvas>
|
||||
<canvas id="palette" style="border:1px outset #888; left:162px; position:absolute; top:0px" width="76" height="128" onclick="set_color()"></canvas>
|
||||
<div id="color" style="background:#000; border:1px outset #888; height:27px; left:226px; position:absolute; top:130px; width:12px"></div>
|
||||
<div style="background:#000; border:4px solid #ddd; height:2px; left:164px; position:absolute; top:134px; width:2px" onclick="draw(1)"></div>
|
||||
<div style="background:#000; border:3px solid #ddd; height:4px; left:176px; position:absolute; top:134px; width:4px" onclick="draw(2)"></div>
|
||||
<div style="background:#000; border:2px solid #ddd; height:6px; left:188px; position:absolute; top:134px; width:6px" onclick="draw(3)"></div>
|
||||
|
||||
<div style="background:#000; border:1px solid #ddd; height:8px; left:200px; position:absolute; top:134px; width:8px" onclick="draw(4)"></div>
|
||||
<div style="background:#000; height:10px; left:212px; position:absolute; top:134px; width:10px" onclick="draw(5)"></div>
|
||||
<div style="background:#fff; border:4px solid #ddd; height:2px; left:164px; position:absolute; top:147px; width:2px" onclick="erase(1)"></div>
|
||||
<div style="background:#fff; border:3px solid #ddd; height:4px; left:176px; position:absolute; top:147px; width:4px" onclick="erase(2)"></div>
|
||||
<div style="background:#fff; border:2px solid #ddd; height:6px; left:188px; position:absolute; top:147px; width:6px" onclick="erase(3)"></div>
|
||||
<div style="background:#fff; border:1px solid #ddd; height:8px; left:200px; position:absolute; top:147px; width:8px" onclick="erase(4)"></div>
|
||||
<div style="background:#fff; height:10px; left:212px; position:absolute; top:147px; width:10px" onclick="erase(5)"></div>
|
||||
<div class="button" style="left:167px; top:160px" onclick="location.href='http://dsipaint.com/';">Full</div>
|
||||
|
||||
<div class="button" style="left:203px; top:160px" onclick="history.back()">Back</div>
|
||||
<div style="height:10px; left:2px; position:absolute; top:162px; width:228px" id="status"></div>
|
||||
</body>
|
||||
|
||||
<!-- Mirrored from dsiexplorer.awardspace.biz/DSiPaintStudio/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 11 Jul 2023 21:30:00 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,220 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:05 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<link rel=File-List href="index_files/filelist.xml">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
<!--[if gte mso 9]><xml>
|
||||
<o:shapedefaults v:ext="edit" spidmax="4482" fill="f" fillcolor="white [7]"
|
||||
strokecolor="black [0]">
|
||||
<v:fill color="white [7]" color2="black [0]" on="f"/>
|
||||
<v:stroke color="black [0]" color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
<o:colormenu v:ext="edit" fillcolor="#63c [1]" strokecolor="black [0]"
|
||||
shadowcolor="#ccc [4]"/>
|
||||
</o:shapedefaults><o:shapelayout v:ext="edit">
|
||||
<o:idmap v:ext="edit" data="1,4"/>
|
||||
</o:shapelayout></xml><![endif]-->
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2073in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1025" style='position:absolute;left:0;
|
||||
top:0;width:180pt;height:263.25pt;z-index:1;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="#a6a6a6 [7 darken(166)]"
|
||||
strokecolor="#a6a6a6 [7 darken(166)]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:1;
|
||||
left:-1px;top:-1px;width:242px;height:353px'><img width=242 height=353
|
||||
src="index_files/image313.png" v:shapes="_x0000_s1025"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1026" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:2;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:2'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
|
||||
adj="10800" path="m@7,l@8,m@5,21600l@6,21600e">
|
||||
<v:formulas>
|
||||
<v:f eqn="sum #0 0 10800"/>
|
||||
<v:f eqn="prod #0 2 1"/>
|
||||
<v:f eqn="sum 21600 0 @1"/>
|
||||
<v:f eqn="sum 0 0 @2"/>
|
||||
<v:f eqn="sum 21600 0 @3"/>
|
||||
<v:f eqn="if @0 @3 0"/>
|
||||
<v:f eqn="if @0 21600 @1"/>
|
||||
<v:f eqn="if @0 0 @2"/>
|
||||
<v:f eqn="if @0 @4 21600"/>
|
||||
<v:f eqn="mid @5 @6"/>
|
||||
<v:f eqn="mid @8 @5"/>
|
||||
<v:f eqn="mid @7 @8"/>
|
||||
<v:f eqn="mid @6 @7"/>
|
||||
<v:f eqn="sum @6 0 @5"/>
|
||||
</v:formulas>
|
||||
<v:path textpathok="t" o:connecttype="custom" o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
|
||||
o:connectangles="270,180,90,0"/>
|
||||
<v:textpath on="t" fitshape="t"/>
|
||||
<v:handles>
|
||||
<v:h position="#0,bottomRight" xrange="6629,14971"/>
|
||||
</v:handles>
|
||||
<o:lock v:ext="edit" text="t" shapetype="t"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1027" type="#_x0000_t136" style='position:absolute;
|
||||
left:5.99pt;top:9pt;width:171.76pt;height:56.25pt;z-index:3;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="gray"
|
||||
strokecolor="#5a5a5a" strokeweight=".83pt" o:cliptowrap="t">
|
||||
<v:fill src="index_files/image281.jpg" o:title="" color2="fill lighten(42)"
|
||||
method="linear sigma" focus="-50%" type="gradient"/>
|
||||
<v:stroke src="index_files/image281.jpg" o:title="">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#7f7f7f" opacity=".5" offset="-2pt,.74833mm" offset2="8pt,-8pt"/>
|
||||
<v:path insetpenok="f"/>
|
||||
<v:textpath style='font-family:"Arial Black";font-weight:bold;v-text-kern:t'
|
||||
trim="t" fitpath="t" string="The last hotel"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:3;
|
||||
left:7px;top:9px;width:231px;height:79px'><img width=231 height=79
|
||||
src="index_files/image2811.png" alt="The last hotel" v:shapes="_x0000_s1027"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1028" type="#_x0000_t202" style='position:absolute;left:29.25pt;
|
||||
top:237pt;width:119.25pt;height:21.75pt;z-index:4;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><!--[if gte vml 1]><v:shape id="_x0000_s1029" type="#_x0000_t202"
|
||||
style='position:absolute;left:14.25pt;top:181.5pt;width:152.25pt;height:53.25pt;
|
||||
z-index:107;mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:107;
|
||||
left:19px;top:242px;width:203px;height:71px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=203 height=71 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1029" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal style='text-align:center;text-align:center'><span
|
||||
lang=en-US style='language:en-US'>This game was made by StuffMan,</span></p>
|
||||
<p class=MsoNormal style='text-align:center;text-align:center'><span
|
||||
lang=en-US style='language:en-US'>and improved <a href="https://dsipaint.com/memberprofile.php?member=27649">jsa005</a>.</span></p>
|
||||
<p class=MsoNormal style='text-align:center;text-align:center'><span
|
||||
lang=en-US style='font-family:Calibri;color:red;language:en-US'>Warning: contains mild language.</span></p>
|
||||
<p class=MsoNormal style='text-align:center;text-align:center'><span
|
||||
lang=en-US style='font-family:Calibri;color:red;language:en-US'><a href="index_files/Page293.html">Start the game</a></span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:05 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,331 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1015.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:45 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1475" style='position:absolute;left:0;
|
||||
top:0;width:180pt;height:132pt;z-index:465;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:465;
|
||||
left:-1px;top:-1px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1475"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1476" style='position:absolute;left:.75pt;top:29.25pt;width:179.25pt;
|
||||
height:102pt;z-index:466;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:466;left:0px;top:38px;width:241px;height:138px'><img width=241
|
||||
height=138 src=image860.png v:shapes="_x0000_s1476"></span><![endif]><!--[if gte vml 1]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1477" type="#_x0000_t202" style='position:absolute;
|
||||
left:4.89pt;top:40.14pt;width:170.96pt;height:84.71pt;z-index:467;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:467;
|
||||
left:7px;top:54px;width:227px;height:112px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=112 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1477" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:black;
|
||||
language:en-US'>A board with a bunch of orders on it. There is a slip of paper with a list of symbols:</span></p>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'> </span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><![if mso]><v:shape id="_x0000_s1478"
|
||||
type="#_x0000_t202" style='position:absolute;left:1.12pt;top:0;width:9.75pt;
|
||||
height:9pt;z-index:468;mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:1px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:468'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1479" style='position:absolute;left:.37pt;
|
||||
top:132.21pt;width:180pt;height:132pt;z-index:469;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image698.png" o:title="3836155223_a6761f3287_z"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:469;
|
||||
left:1px;top:176px;width:240px;height:176px'><img width=240 height=176
|
||||
src=image698.png v:shapes="_x0000_s1479"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1480" href="Page1015.htm" style='position:absolute;left:68.25pt;
|
||||
top:152.25pt;width:33.75pt;height:27pt;z-index:470;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:470;
|
||||
left:91px;top:203px;width:45px;height:36px'><a href="Page1015.html"><img
|
||||
border=0 width=45 height=36 src=image983.png v:shapes="_x0000_s1480"></a></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1481" href="Page987.htm" style='position:absolute;left:77.25pt;
|
||||
top:182.99pt;width:30.75pt;height:20.25pt;z-index:471;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' coordsize="390525,257175"
|
||||
path="m85725,257175l,190500,66675,38100,180975,66675,266700,,390525,66675r,104775l323850,257175,247650,228600,85725,257175xe"
|
||||
filled="f" fillcolor="white [7]" stroked="f" strokecolor="black [0]"
|
||||
o:cliptowrap="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:path arrowok="t" insetpenok="f"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:471;
|
||||
left:103px;top:244px;width:41px;height:27px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="9, 27, 0, 20, 7, 4, 19, 7, 28, 0, 41, 7, 41, 18, 34, 27, 26, 24, 9, 27"
|
||||
href="Page987.html"></map><img border=0 width=41 height=27 src=image984.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1481"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1482" href="Page443.htm" style='position:absolute;left:120pt;
|
||||
top:156pt;width:36.75pt;height:72.75pt;z-index:472;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:472;
|
||||
left:160px;top:208px;width:49px;height:97px'><a href="Page443.html"><img
|
||||
border=0 width=49 height=97 src=image1012.png v:shapes="_x0000_s1482"></a></span><![endif]><!--[if gte vml 1]><v:shapetype
|
||||
id="_x0000_t5" coordsize="21600,21600" o:spt="5" adj="10800" path="m@0,l,21600r21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="prod #0 1 2"/>
|
||||
<v:f eqn="sum @1 10800 0"/>
|
||||
</v:formulas>
|
||||
<v:path gradientshapeok="t" o:connecttype="custom" o:connectlocs="@0,0;@1,10800;0,21600;10800,21600;21600,21600;@2,10800"
|
||||
textboxrect="0,10800,10800,18000;5400,10800,16200,18000;10800,10800,21600,18000;0,7200,7200,21600;7200,7200,14400,21600;14400,7200,21600,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#0,topLeft" xrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1483" type="#_x0000_t5" style='position:absolute;
|
||||
left:11.25pt;top:99pt;width:15pt;height:8.25pt;z-index:473;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" strokecolor="black [0]" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:473;
|
||||
left:13px;top:130px;width:24px;height:14px'><img width=24 height=14
|
||||
src=image1063.png v:shapes="_x0000_s1483"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1484" type="#_x0000_t5" style='position:absolute;left:30.75pt;
|
||||
top:99pt;width:15pt;height:8.25pt;z-index:474;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' adj="0" filled="f" fillcolor="black"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:474;
|
||||
left:40px;top:130px;width:24px;height:14px'><img width=24 height=14
|
||||
src=image1064.png v:shapes="_x0000_s1484"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1485" type="#_x0000_t5" style='position:absolute;left:49.5pt;
|
||||
top:99pt;width:15pt;height:8.25pt;z-index:475;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' adj="0" filled="f" fillcolor="black"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:475;
|
||||
left:65px;top:130px;width:24px;height:14px'><img width=24 height=14
|
||||
src=image1064.png v:shapes="_x0000_s1485"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1486" type="#_x0000_t5" style='position:absolute;left:67.5pt;
|
||||
top:99pt;width:15pt;height:8.25pt;z-index:476;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:476;
|
||||
left:88px;top:130px;width:24px;height:14px'><img width=24 height=14
|
||||
src=image1063.png v:shapes="_x0000_s1486"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1487" href="Page898.htm" style='position:absolute;left:3.74pt;
|
||||
top:207pt;width:92.26pt;height:49.5pt;z-index:512;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' coordsize="1266825,742950" path="m,714375r1266825,l962025,104775,885825,,714375,9525,228600,695325r-66675,47625e"
|
||||
filled="f" fillcolor="white [7]" stroked="f" strokecolor="black [0]"
|
||||
o:cliptowrap="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:path arrowok="t" insetpenok="f"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:512;
|
||||
left:5px;top:276px;width:123px;height:66px'><map name=MicrosoftOfficeMap1><area
|
||||
shape=Polygon
|
||||
coords="0, 63, 123, 63, 93, 9, 86, 0, 69, 1, 22, 62, 16, 66, 0, 63"
|
||||
href="Page898.html"></map><img border=0 width=123 height=66 src=image980.png
|
||||
usemap="#MicrosoftOfficeMap1" v:shapes="_x0000_s1487"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1015.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:45 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1023.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:39 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1420" style='position:absolute;left:0;
|
||||
top:130.5pt;width:180pt;height:133.5pt;z-index:394;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:394;
|
||||
left:-1px;top:173px;width:242px;height:180px'><img width=242 height=180
|
||||
src=image589.png v:shapes="_x0000_s1420"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1421" href="Page1034.htm" style='position:absolute;left:.75pt;
|
||||
top:130.5pt;width:179.25pt;height:75.75pt;z-index:395;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:395;left:0px;top:173px;width:241px;height:103px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 1, 6, 6, 1, 18, 1, 86, 6, 98, 18, 103, 224, 103, 236, 98, 240, 86, 240, 18, 236, 6, 224, 1, 18, 1"
|
||||
href="Page1034.html"></map><img border=0 width=241 height=103 src=image662.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1421"></span><![endif]><!--[if gte vml 1]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1422" type="#_x0000_t202" style='position:absolute;
|
||||
left:4.89pt;top:135.39pt;width:170.96pt;height:55.46pt;z-index:396;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:396;
|
||||
left:7px;top:181px;width:227px;height:73px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=73 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1422" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>The second was that the door to his room had vanished completely.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><![if mso]><v:shape id="_x0000_s1423"
|
||||
type="#_x0000_t202" style='position:absolute;left:4.87pt;top:15pt;width:9.75pt;
|
||||
height:9pt;z-index:397;mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:6px;margin-top:20px;width:14px;
|
||||
height:12px;z-index:397'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1424" style='position:absolute;left:.37pt;
|
||||
top:.42pt;width:179.25pt;height:130.12pt;z-index:398;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1021.png" o:title="hallway1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:398;
|
||||
left:1px;top:1px;width:239px;height:173px'><img width=239 height=173
|
||||
src=image1021.png v:shapes="_x0000_s1424"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1023.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:39 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1034.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:40 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1425" style='position:absolute;left:0;
|
||||
top:130.5pt;width:180pt;height:133.5pt;z-index:399;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:399;
|
||||
left:-1px;top:173px;width:242px;height:180px'><img width=242 height=180
|
||||
src=image589.png v:shapes="_x0000_s1425"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1426" href="Page1098.htm" style='position:absolute;left:.75pt;
|
||||
top:130.5pt;width:179.25pt;height:75.75pt;z-index:400;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:400;left:0px;top:173px;width:241px;height:103px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 1, 6, 6, 1, 18, 1, 86, 6, 98, 18, 103, 224, 103, 236, 98, 240, 86, 240, 18, 236, 6, 224, 1, 18, 1"
|
||||
href="Page1098.html"></map><img border=0 width=241 height=103 src=image662.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1426"></span><![endif]><!--[if gte vml 1]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1427" type="#_x0000_t202" style='position:absolute;
|
||||
left:4.89pt;top:135.39pt;width:170.96pt;height:55.46pt;z-index:401;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:401;
|
||||
left:7px;top:181px;width:227px;height:73px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=73 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1427" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Michael</span><span lang=en-US style='language:en-US'>: What the hell is going on here?!</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><![if mso]><v:shape id="_x0000_s1428"
|
||||
type="#_x0000_t202" style='position:absolute;left:4.87pt;top:15pt;width:9.75pt;
|
||||
height:9pt;z-index:402;mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:6px;margin-top:20px;width:14px;
|
||||
height:12px;z-index:402'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1429" style='position:absolute;left:.37pt;
|
||||
top:.42pt;width:179.25pt;height:130.12pt;z-index:403;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1021.png" o:title="hallway1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:403;
|
||||
left:1px;top:1px;width:239px;height:173px'><img width=239 height=173
|
||||
src=image1021.png v:shapes="_x0000_s1429"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1034.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:40 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1055.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:40 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1440" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:414;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:414;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1440"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1441" style='position:absolute;left:0;top:.14pt;width:180pt;
|
||||
height:132.13pt;z-index:415;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image478.png" o:title="doorknob 1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:415;
|
||||
left:0px;top:0px;width:240px;height:176px'><img width=240 height=176
|
||||
src=image503.jpg v:shapes="_x0000_s1441"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1442" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:416;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:416'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1443" href="Page868.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:1in;z-index:417;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:417;left:0px;top:175px;width:241px;height:98px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 2, 6, 7, 1, 17, 1, 82, 6, 93, 18, 97, 225, 97, 236, 93, 240, 82, 240, 17, 236, 7, 225, 2, 18, 2"
|
||||
href="Page868.html"></map><img border=0 width=241 height=98 src=image1048.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1443"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1444" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:49.46pt;z-index:418;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:418;
|
||||
left:7px;top:182px;width:227px;height:65px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=65 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1444" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>In a rush to get out before nine in the morning, Michael threw open the door.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1055.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:41 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1065.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:40 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1435" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:409;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:409;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1435"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1436" style='position:absolute;left:0;top:.14pt;width:180pt;
|
||||
height:132.13pt;z-index:410;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image478.png" o:title="doorknob 1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:410;
|
||||
left:0px;top:0px;width:240px;height:176px'><img width=240 height=176
|
||||
src=image503.jpg v:shapes="_x0000_s1436"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1437" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:411;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:411'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1438" href="Page1055.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:64.5pt;z-index:412;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:412;left:0px;top:175px;width:241px;height:88px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="16, 2, 6, 5, 1, 16, 1, 73, 6, 83, 16, 88, 226, 88, 237, 83, 240, 73, 240, 16, 237, 5, 226, 2, 16, 2"
|
||||
href="Page1055.html"></map><img border=0 width=241 height=88 src=image468.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1438"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1439" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:41.21pt;z-index:413;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:413;
|
||||
left:7px;top:182px;width:227px;height:54px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=54 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1439" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Michael pulled the doorknob and found that the door was unlocked.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1065.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:40 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1074.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:51 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1575" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:549;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:549;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1575"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1576" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:550;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:550'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1577" href="Page1105.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:112.5pt;z-index:551;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:551;left:0px;top:175px;width:241px;height:152px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="26, 2, 8, 9, 1, 27, 1, 126, 8, 144, 26, 151, 215, 151, 233, 144, 240, 126, 240, 27, 233, 9, 215, 2, 26, 2"
|
||||
href="Page1105.html"></map><img border=0 width=241 height=152 src=image1054.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1577"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1578" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:85.46pt;z-index:552;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:552;
|
||||
left:7px;top:182px;width:227px;height:113px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=113 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1578" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>If it weren’t for a different lighting, Michael would have assumed he was on the same floor. Everything was the same, just like a typical hotel.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1579" style='position:absolute;
|
||||
left:.37pt;top:.42pt;width:178.58pt;height:131.15pt;z-index:553;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1102.png" o:title="hallway1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:553;
|
||||
left:1px;top:1px;width:238px;height:174px'><img width=238 height=174
|
||||
src=image1102.png v:shapes="_x0000_s1579"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1074.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:51 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1098.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:40 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1430" style='position:absolute;left:0;
|
||||
top:130.5pt;width:180pt;height:133.5pt;z-index:404;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:404;
|
||||
left:-1px;top:173px;width:242px;height:180px'><img width=242 height=180
|
||||
src=image589.png v:shapes="_x0000_s1430"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1431" href="Page1065.htm" style='position:absolute;left:.75pt;
|
||||
top:130.5pt;width:179.25pt;height:87pt;z-index:405;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:405;left:0px;top:173px;width:241px;height:118px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="20, 1, 7, 7, 1, 21, 1, 98, 7, 111, 20, 117, 221, 117, 234, 111, 240, 98, 240, 21, 234, 7, 221, 1, 20, 1"
|
||||
href="Page1065.html"></map><img border=0 width=241 height=118 src=image353.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1431"></span><![endif]><!--[if gte vml 1]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1432" type="#_x0000_t202" style='position:absolute;
|
||||
left:4.89pt;top:135.39pt;width:170.96pt;height:64.46pt;z-index:406;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:406;
|
||||
left:7px;top:181px;width:227px;height:85px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=85 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1432" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Michael decided to give up on finding out what was going on and walked up to the doors that were previously boarded.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><![if mso]><v:shape id="_x0000_s1433"
|
||||
type="#_x0000_t202" style='position:absolute;left:4.87pt;top:15pt;width:9.75pt;
|
||||
height:9pt;z-index:407;mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:6px;margin-top:20px;width:14px;
|
||||
height:12px;z-index:407'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1434" style='position:absolute;left:.37pt;
|
||||
top:.42pt;width:179.25pt;height:130.12pt;z-index:408;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1021.png" o:title="hallway1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:408;
|
||||
left:1px;top:1px;width:239px;height:173px'><img width=239 height=173
|
||||
src=image1021.png v:shapes="_x0000_s1434"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1098.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:40 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1105.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:51 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1580" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:554;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:554;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1580"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1581" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:555;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:555'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1582" href="Page1116.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:72.75pt;z-index:556;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:556;left:0px;top:175px;width:241px;height:99px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 2, 6, 7, 1, 17, 1, 82, 6, 94, 18, 99, 225, 99, 236, 94, 240, 82, 240, 17, 236, 7, 225, 2, 18, 2"
|
||||
href="Page1116.html"></map><img border=0 width=241 height=99 src=image1110.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1582"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1583" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:52.46pt;z-index:557;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:557;
|
||||
left:7px;top:182px;width:227px;height:69px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=69 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1583" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>The thing is, the door to his right was open. He went to investigate.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1584" style='position:absolute;
|
||||
left:.37pt;top:.42pt;width:178.58pt;height:131.15pt;z-index:558;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1102.png" o:title="hallway1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:558;
|
||||
left:1px;top:1px;width:238px;height:174px'><img width=238 height=174
|
||||
src=image1102.png v:shapes="_x0000_s1584"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1105.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:52 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1107.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:56 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1649" style='position:absolute;left:0;
|
||||
top:.13pt;width:180.04pt;height:132.48pt;z-index:617;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:617;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1649"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1650" style='position:absolute;left:18.56pt;top:3.18pt;width:46.87pt;
|
||||
height:46.13pt;z-index:618;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:618;
|
||||
left:25px;top:4px;width:62px;height:62px'><img width=62 height=62
|
||||
src=image11641.png v:shapes="_x0000_s1650"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1651" style='position:absolute;left:0;top:132pt;width:180pt;
|
||||
height:132pt;z-index:619;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:619;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1651"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1652" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:620;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:620'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1653" style='position:absolute;
|
||||
left:52.5pt;top:30.75pt;width:127.5pt;height:82.5pt;z-index:621;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:621;left:69px;top:40px;width:172px;height:112px'><img width=172
|
||||
height=112 src=image1139.png v:shapes="_x0000_s1653"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1654" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:34.89pt;width:121.6pt;height:61.15pt;z-index:622;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:622;
|
||||
left:76px;top:47px;width:162px;height:81px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=81 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1654" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Emilia</span><span lang=en-US style='language:en-US'>: Yeah… I just learned about it. Do you really think there’s a bomb in here?</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600"
|
||||
o:spt="68" adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1655" type="#_x0000_t68"
|
||||
href="Page1163.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:623;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:623;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1163.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1655"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1107.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:57 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1116.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:52 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1585" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:559;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:559;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1585"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1586" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:560;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:560'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1587" href="Page1234.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:112.5pt;z-index:561;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:561;left:0px;top:175px;width:241px;height:152px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="26, 2, 8, 9, 1, 27, 1, 126, 8, 144, 26, 151, 215, 151, 233, 144, 240, 126, 240, 27, 233, 9, 215, 2, 26, 2"
|
||||
href="Page1234.html"></map><img border=0 width=241 height=152 src=image1054.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1587"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1588" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:85.46pt;z-index:562;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:562;
|
||||
left:7px;top:182px;width:227px;height:113px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=113 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1588" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>It was the same room that was on the 5th floor. There was something wrong, though…</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1589" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:563;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:563;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1589"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1116.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:52 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1131.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:49 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1566" style='position:absolute;left:0;
|
||||
top:0;width:180pt;height:264pt;z-index:540;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:540;
|
||||
left:-1px;top:-1px;width:242px;height:354px'><img width=242 height=354
|
||||
src=image274.png v:shapes="_x0000_s1566"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1567" type="#_x0000_t202" style='position:absolute;
|
||||
left:4.87pt;top:15pt;width:9.75pt;height:9pt;z-index:541;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:6px;margin-top:20px;width:14px;
|
||||
height:12px;z-index:541'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
|
||||
adj="10800" path="m@7,l@8,m@5,21600l@6,21600e">
|
||||
<v:formulas>
|
||||
<v:f eqn="sum #0 0 10800"/>
|
||||
<v:f eqn="prod #0 2 1"/>
|
||||
<v:f eqn="sum 21600 0 @1"/>
|
||||
<v:f eqn="sum 0 0 @2"/>
|
||||
<v:f eqn="sum 21600 0 @3"/>
|
||||
<v:f eqn="if @0 @3 0"/>
|
||||
<v:f eqn="if @0 21600 @1"/>
|
||||
<v:f eqn="if @0 0 @2"/>
|
||||
<v:f eqn="if @0 @4 21600"/>
|
||||
<v:f eqn="mid @5 @6"/>
|
||||
<v:f eqn="mid @8 @5"/>
|
||||
<v:f eqn="mid @7 @8"/>
|
||||
<v:f eqn="mid @6 @7"/>
|
||||
<v:f eqn="sum @6 0 @5"/>
|
||||
</v:formulas>
|
||||
<v:path textpathok="t" o:connecttype="custom" o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
|
||||
o:connectangles="270,180,90,0"/>
|
||||
<v:textpath on="t" fitshape="t"/>
|
||||
<v:handles>
|
||||
<v:h position="#0,bottomRight" xrange="6629,14971"/>
|
||||
</v:handles>
|
||||
<o:lock v:ext="edit" text="t" shapetype="t"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1568" type="#_x0000_t136" style='position:absolute;
|
||||
left:37.87pt;top:8.25pt;width:93pt;height:93.74pt;z-index:542;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="gray"
|
||||
strokecolor="#5a5a5a" strokeweight=".83pt" o:cliptowrap="t">
|
||||
<v:fill src="image281.jpg" o:title="" color2="fill lighten(42)" method="linear sigma"
|
||||
focus="-50%" type="gradient"/>
|
||||
<v:stroke src="image281.jpg" o:title="">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#7f7f7f" opacity=".5" offset="-2pt,.74833mm" offset2="8pt,-8pt"/>
|
||||
<v:path insetpenok="f"/>
|
||||
<v:textpath style='font-family:"Arial Black";font-weight:bold;v-text-kern:t'
|
||||
trim="t" fitpath="t" string="Chapter 3 BEATEN"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:542;
|
||||
left:49px;top:9px;width:127px;height:128px'><img width=127 height=128
|
||||
src=image1126.png alt="Chapter 3 BEATEN" v:shapes="_x0000_s1568"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1569" type="#_x0000_t202" style='position:absolute;left:21pt;
|
||||
top:188.25pt;width:138pt;height:71.25pt;z-index:543;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:543;
|
||||
left:28px;top:251px;width:184px;height:95px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=184 height=95 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1569" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:white;
|
||||
language:en-US'>Click </span><a href=Page657.html><span lang=en-US
|
||||
style='font-family:Calibri;text-decoration:underline;language:en-US'>here</span></a><span
|
||||
lang=en-US style='font-family:Calibri;color:white;language:en-US'> to continue to Chapter 4.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1131.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:50 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1136.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:12 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1854" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:827;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:827;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1854"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1855" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:828;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:828'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1856" style='position:absolute;left:.37pt;
|
||||
top:0;width:180pt;height:132pt;z-index:829;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1435.jpg" o:title="casino_puerto_iguazu"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:829;
|
||||
left:1px;top:0px;width:240px;height:176px'><img width=240 height=176
|
||||
src=image1435.jpg v:shapes="_x0000_s1856"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1857" style='position:absolute;left:14.81pt;top:7.68pt;width:46.87pt;
|
||||
height:46.13pt;z-index:830;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:830;
|
||||
left:20px;top:10px;width:62px;height:62px'><img width=62 height=62
|
||||
src=image11641.png v:shapes="_x0000_s1857"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1858" style='position:absolute;left:52.5pt;top:34.5pt;width:127.5pt;
|
||||
height:78.75pt;z-index:831;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:831;left:69px;top:45px;width:172px;height:107px'><img width=172
|
||||
height=107 src=image1635.png v:shapes="_x0000_s1858"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1859" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:38.64pt;width:121.6pt;height:68.65pt;z-index:832;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:832;
|
||||
left:76px;top:52px;width:162px;height:91px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=91 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1859" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Emilia</span><span lang=en-US style='language:en-US'>: So you found the missing card, I see. Huh. I wonder what that means.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600"
|
||||
o:spt="68" adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1860" type="#_x0000_t68"
|
||||
href="Page1410.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:833;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:833;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1410.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1860"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1136.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:12 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1138.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:54 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1622" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:593;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:593;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1622"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1623" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:594;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:594'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1624" href="Page1245.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:83.25pt;z-index:595;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:595;left:0px;top:175px;width:241px;height:113px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="20, 2, 7, 8, 1, 20, 1, 94, 7, 107, 20, 113, 222, 113, 236, 107, 240, 94, 240, 20, 236, 8, 222, 2, 20, 2"
|
||||
href="Page1245.html"></map><img border=0 width=241 height=113 src=image642.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1624"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1625" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:63.71pt;z-index:596;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:596;
|
||||
left:7px;top:182px;width:227px;height:84px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=84 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1625" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Emilia practically slammed into Michael, wrapping her arms around him in a firm embrace.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1626" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:597;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:597;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1626"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1138.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:55 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,217 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1151.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:48 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1544" style='position:absolute;left:0;
|
||||
top:0;width:180pt;height:132pt;z-index:507;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:507;
|
||||
left:-1px;top:-1px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1544"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1545" style='position:absolute;left:.75pt;top:29.25pt;width:179.25pt;
|
||||
height:102pt;z-index:508;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:508;left:0px;top:38px;width:241px;height:138px'><img width=241
|
||||
height=138 src=image860.png v:shapes="_x0000_s1545"></span><![endif]><!--[if gte vml 1]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1546" type="#_x0000_t202" style='position:absolute;
|
||||
left:4.89pt;top:40.14pt;width:170.96pt;height:84.71pt;z-index:509;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:509;
|
||||
left:7px;top:54px;width:227px;height:112px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=112 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1546" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:black;
|
||||
language:en-US'>There’s a key inside. A tiny silver key.</span><span
|
||||
lang=en-US style='language:en-US'> There is also a note beside it...</span></p>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>- Obtained the </span><span
|
||||
lang=en-US style='font-family:Calibri;color:red;language:en-US'><span
|
||||
dir=ltr></span>4th Floor Key</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><![if mso]><v:shape id="_x0000_s1547"
|
||||
type="#_x0000_t202" style='position:absolute;left:1.12pt;top:0;width:9.75pt;
|
||||
height:9pt;z-index:510;mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176; function unlock(){ if(document.getElementById("passcode").value=="5335"){ window.location=""; } else{ alert("Incorrect passcode!"); } } </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:1px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:510'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176;
|
||||
function unlock(){
|
||||
if(document.getElementById("passcode").value=="5335"){
|
||||
window.location="";
|
||||
}
|
||||
else{ alert("Incorrect passcode!"); }
|
||||
}
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1548" style='position:absolute;left:.37pt;
|
||||
top:132.3pt;width:180.2pt;height:132.14pt;z-index:511;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image755.png" o:title="Picture1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:511;
|
||||
left:0px;top:176px;width:241px;height:177px'><img width=241 height=177
|
||||
src=image755.png v:shapes="_x0000_s1548"></span><![endif]><!--[if gte vml 1]><v:shapetype
|
||||
id="_x0000_t68" coordsize="21600,21600" o:spt="68" adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1549" type="#_x0000_t68" href="Page852.htm"
|
||||
style='position:absolute;left:76.49pt;top:210.74pt;width:36.75pt;height:39.75pt;
|
||||
rotation:-180;z-index:528;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]" strokecolor="white [7]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:528;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page852.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1549"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1151.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:48 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1161.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:54 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1617" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:588;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:588;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1617"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1618" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:589;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:589'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1619" href="Page1138.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:112.5pt;z-index:590;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:590;left:0px;top:175px;width:241px;height:152px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="26, 2, 8, 9, 1, 27, 1, 126, 8, 144, 26, 151, 215, 151, 233, 144, 240, 126, 240, 27, 233, 9, 215, 2, 26, 2"
|
||||
href="Page1138.html"></map><img border=0 width=241 height=152 src=image1054.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1619"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1620" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:85.46pt;z-index:591;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:591;
|
||||
left:7px;top:182px;width:227px;height:113px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=113 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1620" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>It was at that moment Michael remembered who she was. It was his best friend, Emilia. How could he have forgotten what she looked like?!</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1621" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:592;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:592;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1621"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1161.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:54 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1163.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:57 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1656" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:624;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:624;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1656"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1657" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:625;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:625'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1658" href="Page1173.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:54.75pt;z-index:626;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:626;left:0px;top:175px;width:241px;height:75px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="13, 2, 5, 5, 1, 14, 1, 63, 5, 71, 13, 75, 228, 75, 237, 71, 240, 63, 240, 14, 228, 2, 13, 2"
|
||||
href="Page1173.html"></map><img border=0 width=241 height=75 src=image1168.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1658"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1659" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:31.46pt;z-index:627;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:627;
|
||||
left:7px;top:182px;width:227px;height:41px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=41 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1659" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Michael</span><span lang=en-US style='language:en-US'>: I wouldn’t doubt it.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1660" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:628;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:628;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1660"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1163.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:57 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1173.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:57 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1661" style='position:absolute;left:0;
|
||||
top:.13pt;width:180.04pt;height:132.48pt;z-index:629;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:629;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1661"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1662" style='position:absolute;left:0;top:132pt;width:180pt;
|
||||
height:132pt;z-index:630;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:630;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1662"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1663" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:631;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:631'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1664" style='position:absolute;left:14.81pt;
|
||||
top:.93pt;width:54.37pt;height:54.38pt;z-index:632;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:632;
|
||||
left:20px;top:1px;width:72px;height:73px'><img width=72 height=73
|
||||
src=image1191.png v:shapes="_x0000_s1664"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1665" style='position:absolute;left:52.5pt;top:30.75pt;width:127.5pt;
|
||||
height:82.5pt;z-index:633;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:633;left:69px;top:40px;width:172px;height:112px'><img width=172
|
||||
height=112 src=image1139.png v:shapes="_x0000_s1665"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1666" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:34.89pt;width:121.6pt;height:61.15pt;z-index:634;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:634;
|
||||
left:76px;top:47px;width:162px;height:81px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=81 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1666" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Emilia</span><span lang=en-US style='language:en-US'>: Great… so there’s a chance we’re gonna die here.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600"
|
||||
o:spt="68" adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1667" type="#_x0000_t68"
|
||||
href="Page1221.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:635;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:635;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1221.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1667"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1173.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:58 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1174.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:00 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1690" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:664;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:664;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1690"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1691" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:665;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:665'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1692" href="Page858.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:75.75pt;z-index:666;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:666;left:0px;top:175px;width:241px;height:103px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 2, 6, 7, 1, 19, 1, 85, 6, 97, 18, 102, 224, 102, 236, 97, 240, 85, 240, 19, 236, 7, 224, 2, 18, 2"
|
||||
href="Page858.html"></map><img border=0 width=241 height=103 src=image662.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1692"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1693" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:56.21pt;z-index:667;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:667;
|
||||
left:7px;top:182px;width:227px;height:74px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=74 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1693" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Michael</span><span lang=en-US style='language:en-US'>: Well, come on! The more time we talk, the less time we have to get out of here!</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1694" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:668;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:668;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1694"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1174.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:00 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,174 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1175.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:59 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1685" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:653;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:653;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1685"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1686" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:654;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:654'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1687" href="Page1174.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:63.75pt;z-index:655;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:655;left:0px;top:175px;width:241px;height:87px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="16, 2, 6, 5, 1, 16, 1, 72, 6, 83, 16, 87, 226, 87, 237, 83, 240, 72, 240, 16, 237, 5, 226, 2, 16, 2"
|
||||
href="Page1174.html"></map><img border=0 width=241 height=87 src=image600.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1687"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1688" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:44.96pt;z-index:656;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:656;
|
||||
left:7px;top:182px;width:227px;height:59px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=59 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1688" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Emilia was shaking again… Michael felt more than</span><span
|
||||
lang=en-US style='language:en-US'> a little</span><span lang=en-US
|
||||
style='language:en-US'> guilty.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1689" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:657;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:657;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1689"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1175.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:00 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,223 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1190.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:53 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1610" style='position:absolute;left:0;
|
||||
top:.13pt;width:180.04pt;height:132.48pt;z-index:584;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:584;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1610"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1611" style='position:absolute;left:0;top:132pt;width:180pt;
|
||||
height:132pt;z-index:585;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:585;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1611"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1612" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:586;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:586'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600" o:spt="68"
|
||||
adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1613" type="#_x0000_t68"
|
||||
href="Page1161.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:587;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:587;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1161.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1613"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1614" style='position:absolute;left:14.81pt;top:34.68pt;width:46.87pt;
|
||||
height:46.13pt;z-index:661;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:661;
|
||||
left:20px;top:46px;width:62px;height:62px'><img width=62 height=62
|
||||
src=image11641.png v:shapes="_x0000_s1614"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1615" style='position:absolute;left:52.5pt;top:61.5pt;width:127.5pt;
|
||||
height:60.75pt;z-index:662;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:662;left:69px;top:81px;width:172px;height:83px'><img width=172
|
||||
height=83 src=image1185.png v:shapes="_x0000_s1615"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1616" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:65.64pt;width:121.6pt;height:46.15pt;z-index:663;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:663;
|
||||
left:76px;top:88px;width:162px;height:61px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=61 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1616" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>???</span><span lang=en-US style='language:en-US'>: M-M-Mikey?!</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1190.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:54 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1201.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:53 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1605" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:579;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:579;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1605"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1606" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:580;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:580'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1607" href="Page1190.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:112.5pt;z-index:581;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:581;left:0px;top:175px;width:241px;height:152px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="26, 2, 8, 9, 1, 27, 1, 126, 8, 144, 26, 151, 215, 151, 233, 144, 240, 126, 240, 27, 233, 9, 215, 2, 26, 2"
|
||||
href="Page1190.html"></map><img border=0 width=241 height=152 src=image1054.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1607"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1608" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:85.46pt;z-index:582;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:582;
|
||||
left:7px;top:182px;width:227px;height:113px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=113 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1608" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>The girl was frightened. She was shaking, as if she was very cold. However, after taking a good look at Michael, her expression turned from scared to surprised.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1609" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:583;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:583;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1609"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1201.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:53 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1212.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:53 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1600" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:574;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:574;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1600"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1601" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:575;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:575'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1602" href="Page1201.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:112.5pt;z-index:576;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:576;left:0px;top:175px;width:241px;height:152px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="26, 2, 8, 9, 1, 27, 1, 126, 8, 144, 26, 151, 215, 151, 233, 144, 240, 126, 240, 27, 233, 9, 215, 2, 26, 2"
|
||||
href="Page1201.html"></map><img border=0 width=241 height=152 src=image1054.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1602"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1603" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:85.46pt;z-index:577;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:577;
|
||||
left:7px;top:182px;width:227px;height:113px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=113 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1603" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Michael swung around, startled, and found himself face-to-face with a girl. She was around his age, had black hair, and stood around two inches shorter than him.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1604" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:578;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:578;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1604"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1212.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:53 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1221.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:58 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1668" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:636;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:636;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1668"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1669" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:637;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:637'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1670" href="Page1270.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:74.25pt;z-index:638;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:638;left:0px;top:175px;width:241px;height:101px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 2, 6, 7, 1, 19, 1, 84, 6, 96, 18, 101, 224, 101, 236, 96, 240, 84, 240, 19, 236, 7, 224, 2, 18, 2"
|
||||
href="Page1270.html"></map><img border=0 width=241 height=101 src=image1235.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1670"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1671" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:56.21pt;z-index:639;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:639;
|
||||
left:7px;top:182px;width:227px;height:74px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=74 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1671" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Michael could swear he saw a tear begin to form, but Emilia wiped it away quickly.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1672" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:640;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:640;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1672"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1221.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:58 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1223.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:53 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1595" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:569;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:569;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1595"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1596" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:570;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:570'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1597" href="Page1212.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:112.5pt;z-index:571;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:571;left:0px;top:175px;width:241px;height:152px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="26, 2, 8, 9, 1, 27, 1, 126, 8, 144, 26, 151, 215, 151, 233, 144, 240, 126, 240, 27, 233, 9, 215, 2, 26, 2"
|
||||
href="Page1212.html"></map><img border=0 width=241 height=152 src=image1054.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1597"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1598" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:85.46pt;z-index:572;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:572;
|
||||
left:7px;top:182px;width:227px;height:113px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=113 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1598" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>???</span><span lang=en-US style='language:en-US'>: Who a-are y-y-you?</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1599" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:573;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:573;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1599"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1223.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:53 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1234.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:52 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1590" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:564;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:564;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1590"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1591" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:565;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:565'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1592" href="Page1223.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:112.5pt;z-index:566;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:566;left:0px;top:175px;width:241px;height:152px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="26, 2, 8, 9, 1, 27, 1, 126, 8, 144, 26, 151, 215, 151, 233, 144, 240, 126, 240, 27, 233, 9, 215, 2, 26, 2"
|
||||
href="Page1223.html"></map><img border=0 width=241 height=152 src=image1054.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1592"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1593" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:85.46pt;z-index:567;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:567;
|
||||
left:7px;top:182px;width:227px;height:113px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=113 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1593" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Of course! The TV power cord was actually there this time! Michael ran to it and tried to turn it on. It wouldn’t even flicker.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1594" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:568;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:568;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1594"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1234.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:53 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,223 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1245.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:55 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1627" style='position:absolute;left:0;
|
||||
top:.13pt;width:180.04pt;height:132.48pt;z-index:598;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:598;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1627"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1628" style='position:absolute;left:0;top:132pt;width:180pt;
|
||||
height:132pt;z-index:599;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:599;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1628"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1629" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:600;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:600'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600" o:spt="68"
|
||||
adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1630" type="#_x0000_t68"
|
||||
href="Page1329.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:601;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:601;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1329.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1630"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1631" style='position:absolute;left:14.81pt;top:34.68pt;width:46.87pt;
|
||||
height:46.13pt;z-index:658;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:658;
|
||||
left:20px;top:46px;width:62px;height:62px'><img width=62 height=62
|
||||
src=image11641.png v:shapes="_x0000_s1631"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1632" style='position:absolute;left:52.5pt;top:61.5pt;width:127.5pt;
|
||||
height:60.75pt;z-index:659;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:659;left:69px;top:81px;width:172px;height:83px'><img width=172
|
||||
height=83 src=image1185.png v:shapes="_x0000_s1632"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1633" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:65.64pt;width:121.6pt;height:46.15pt;z-index:660;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:660;
|
||||
left:76px;top:88px;width:162px;height:61px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=61 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1633" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Emilia</span><span lang=en-US style='language:en-US'>: Oh my God! I’m so glad to see you!</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1245.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:55 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1270.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:59 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1673" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:641;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:641;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1673"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1674" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:642;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:642'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1675" href="Page846.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:63.75pt;z-index:643;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:643;left:0px;top:175px;width:241px;height:87px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="16, 2, 6, 5, 1, 16, 1, 72, 6, 83, 16, 87, 226, 87, 237, 83, 240, 72, 240, 16, 237, 5, 226, 2, 16, 2"
|
||||
href="Page846.html"></map><img border=0 width=241 height=87 src=image600.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1675"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1676" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:48.71pt;z-index:644;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:644;
|
||||
left:7px;top:182px;width:227px;height:64px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=64 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1676" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Michael</span><span lang=en-US style='language:en-US'>: Hey, now, don’t think that way! We’ll make it out alive. I promise.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1677" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:645;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:645;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1677"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1270.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:59 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,239 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1290.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:15 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1902" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:875;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:875;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1902"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1903" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:876;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:876'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1904" style='position:absolute;left:.37pt;
|
||||
top:0;width:180pt;height:132pt;z-index:877;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1435.jpg" o:title="casino_puerto_iguazu"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:877;
|
||||
left:1px;top:0px;width:240px;height:176px'><img width=240 height=176
|
||||
src=image1435.jpg v:shapes="_x0000_s1904"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1905" style='position:absolute;left:.37pt;top:132.45pt;width:180pt;
|
||||
height:131.85pt;z-index:878;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1664.png" o:title="table"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:878;
|
||||
left:1px;top:177px;width:240px;height:175px'><img width=240 height=175
|
||||
src=image1664.png v:shapes="_x0000_s1905"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1906" style='position:absolute;left:14.81pt;top:7.68pt;width:46.87pt;
|
||||
height:46.13pt;z-index:879;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:879;
|
||||
left:20px;top:10px;width:62px;height:62px'><img width=62 height=62
|
||||
src=image11641.png v:shapes="_x0000_s1906"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1907" style='position:absolute;left:52.5pt;top:34.5pt;width:127.5pt;
|
||||
height:78.75pt;z-index:880;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:880;left:69px;top:45px;width:172px;height:107px'><img width=172
|
||||
height=107 src=image1635.png v:shapes="_x0000_s1907"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1908" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:38.64pt;width:121.6pt;height:68.65pt;z-index:881;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:881;
|
||||
left:76px;top:52px;width:162px;height:91px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=91 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1908" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Emilia</span><span lang=en-US style='language:en-US'>: Maybe we’re supposed to cards on these spots… let’s try it.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600"
|
||||
o:spt="68" adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1909" type="#_x0000_t68"
|
||||
href="Page1384.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:883;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:883;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1384.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1909"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1290.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:15 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1291.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:05 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1763" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:737;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:737;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1763"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1764" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:738;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:738'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1765" href="Page1351.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:73.5pt;z-index:739;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:739;left:0px;top:175px;width:241px;height:100px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 2, 6, 7, 1, 17, 1, 83, 6, 95, 18, 100, 225, 100, 236, 95, 240, 83, 240, 17, 236, 7, 225, 2, 18, 2"
|
||||
href="Page1351.html"></map><img border=0 width=241 height=100 src=image1302.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1765"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1766" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:57.65pt;z-index:740;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:740;
|
||||
left:7px;top:182px;width:227px;height:76px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=76 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1766" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:black;
|
||||
language:en-US'>Michael opened the door. It took him only a few moments to take in his surroundings.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1767" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:741;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1403.png" o:title="hallway1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:741;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1403.png v:shapes="_x0000_s1767"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1291.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:06 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1305.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:01 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1702" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:676;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:676;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1702"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1703" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:677;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:677'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1704" href="Page1316.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:75.75pt;z-index:678;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:678;left:0px;top:175px;width:241px;height:103px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 2, 6, 7, 1, 19, 1, 85, 6, 97, 18, 102, 224, 102, 236, 97, 240, 85, 240, 19, 236, 7, 224, 2, 18, 2"
|
||||
href="Page1316.html"></map><img border=0 width=241 height=103 src=image662.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1704"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1705" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:56.21pt;z-index:679;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:679;
|
||||
left:7px;top:182px;width:227px;height:74px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=74 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1705" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Michael</span><span lang=en-US style='language:en-US'>: Well, let’s start in the hallway. Open up some of those doors and see if they’re locked, you know?</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1706" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:680;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:680;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1706"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1305.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:01 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1307.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:55 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1639" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:607;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:607;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1639"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1640" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:608;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:608'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1641" href="Page686.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:73.5pt;z-index:609;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:609;left:0px;top:175px;width:241px;height:100px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="18, 2, 6, 7, 1, 17, 1, 83, 6, 95, 18, 100, 225, 100, 236, 95, 240, 83, 240, 17, 236, 7, 225, 2, 18, 2"
|
||||
href="Page686.html"></map><img border=0 width=241 height=100 src=image1302.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1641"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1642" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:52.46pt;z-index:610;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:610;
|
||||
left:7px;top:182px;width:227px;height:69px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=69 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1642" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Michael</span><span lang=en-US style='language:en-US'>: What are you doing here!? Are you part of this messed up “game”, too?</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1643" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:611;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:611;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1643"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1307.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:56 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1316.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:01 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1707" style='position:absolute;left:0;
|
||||
top:.13pt;width:180.04pt;height:132.48pt;z-index:681;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:681;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1707"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1708" style='position:absolute;left:0;top:132pt;width:180pt;
|
||||
height:132pt;z-index:682;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:682;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1708"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1709" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:683;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:683'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1710" style='position:absolute;left:14.81pt;
|
||||
top:.93pt;width:46.87pt;height:46.13pt;z-index:684;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:684;
|
||||
left:20px;top:1px;width:62px;height:62px'><img width=62 height=62
|
||||
src=image11641.png v:shapes="_x0000_s1710"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1711" style='position:absolute;left:52.5pt;top:30.75pt;width:127.5pt;
|
||||
height:68.25pt;z-index:685;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:685;left:69px;top:40px;width:172px;height:93px'><img width=172
|
||||
height=93 src=image1333.png v:shapes="_x0000_s1711"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1712" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:34.89pt;width:121.6pt;height:55.15pt;z-index:686;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:686;
|
||||
left:76px;top:47px;width:162px;height:73px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=73 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1712" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Emilia</span><span lang=en-US style='language:en-US'>: Mikey? The doors are boarded up! How can we open them?</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600"
|
||||
o:spt="68" adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1713" type="#_x0000_t68"
|
||||
href="Page1338.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:687;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:687;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1338.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1713"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1316.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:01 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,174 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1329.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:55 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1634" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:602;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:602;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1634"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1635" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:603;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:603'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1636" href="Page1307.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:112.5pt;z-index:604;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:604;left:0px;top:175px;width:241px;height:152px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="26, 2, 8, 9, 1, 27, 1, 126, 8, 144, 26, 151, 215, 151, 233, 144, 240, 126, 240, 27, 233, 9, 215, 2, 26, 2"
|
||||
href="Page1307.html"></map><img border=0 width=241 height=152 src=image1054.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1636"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1637" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:85.46pt;z-index:605;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:605;
|
||||
left:7px;top:182px;width:227px;height:113px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=113 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1637" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Michael hugged her back and smiled widely. He couldn’t believe she was her</span><span
|
||||
lang=en-US style='language:en-US'>e</span><span lang=en-US style='language:
|
||||
en-US'>. Emilia and him had been childhood friends. It was so good to see her here.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1638" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:606;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:606;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1638"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1329.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:51:55 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1338.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:02 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1714" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:688;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:688;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1714"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1715" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:689;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:689'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1716" href="Page1349.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:67.5pt;z-index:690;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:690;left:0px;top:175px;width:241px;height:92px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="17, 2, 6, 5, 1, 16, 1, 77, 6, 87, 17, 91, 226, 91, 237, 87, 240, 77, 240, 16, 237, 5, 226, 2, 17, 2"
|
||||
href="Page1349.html"></map><img border=0 width=241 height=92 src=image1343.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1716"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1717" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:50.21pt;z-index:691;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:691;
|
||||
left:7px;top:182px;width:227px;height:66px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=66 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1717" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='language:en-US'>Michael gave her a questioning look before answering.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1718" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:692;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:692;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1718"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1338.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:02 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1349.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:02 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1719" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:693;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:693;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1719"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1720" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:694;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:694'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:roundrect id="_x0000_s1721" href="Page1360.htm" style='position:absolute;
|
||||
left:.75pt;top:132pt;width:179.25pt;height:67.5pt;z-index:695;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' arcsize="10923f"
|
||||
fillcolor="white [7]" strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:695;left:0px;top:175px;width:241px;height:92px'><map
|
||||
name=MicrosoftOfficeMap0><area shape=Polygon
|
||||
coords="17, 2, 6, 5, 1, 16, 1, 77, 6, 87, 17, 91, 226, 91, 237, 87, 240, 77, 240, 16, 237, 5, 226, 2, 17, 2"
|
||||
href="Page1360.html"></map><img border=0 width=241 height=92 src=image1343.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1721"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1722" type="#_x0000_t202" style='position:absolute;left:4.89pt;
|
||||
top:136.14pt;width:170.96pt;height:50.21pt;z-index:696;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:696;
|
||||
left:7px;top:182px;width:227px;height:66px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=227 height=66 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1722" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Michael</span><span lang=en-US style='language:en-US'>: The doors AREN’T boarded, actually. I was just out there.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:rect id="_x0000_s1723" style='position:absolute;
|
||||
left:0;top:.13pt;width:180.04pt;height:132.48pt;z-index:697;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
|
||||
fillcolor="black" stroked="f" strokecolor="black [0]" strokeweight="0"
|
||||
insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:697;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1723"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1349.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:02 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1351.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:06 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1768" style='position:absolute;left:0;
|
||||
top:132pt;width:180pt;height:132pt;z-index:742;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:742;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1768"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1769" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:743;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:743'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1770" style='position:absolute;left:0;
|
||||
top:.13pt;width:180.04pt;height:132.48pt;z-index:744;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1403.png" o:title="hallway1"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:744;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1403.png v:shapes="_x0000_s1770"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1771" style='position:absolute;left:14.81pt;top:34.68pt;width:46.87pt;
|
||||
height:46.13pt;z-index:745;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:745;
|
||||
left:20px;top:46px;width:62px;height:62px'><img width=62 height=62
|
||||
src=image11641.png v:shapes="_x0000_s1771"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1772" style='position:absolute;left:52.5pt;top:61.5pt;width:127.5pt;
|
||||
height:45.75pt;z-index:746;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:746;left:69px;top:81px;width:172px;height:63px'><img width=172
|
||||
height=63 src=image1395.png v:shapes="_x0000_s1772"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1773" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:65.64pt;width:121.6pt;height:28.9pt;z-index:747;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:747;
|
||||
left:76px;top:88px;width:162px;height:38px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=38 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1773" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Emilia</span><span lang=en-US style='language:en-US'>: It’s a casino!</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600"
|
||||
o:spt="68" adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1774" type="#_x0000_t68"
|
||||
href="Page1406.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:748;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:748;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1406.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1774"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1351.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:06 GMT -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1360.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:02 GMT -->
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
b\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>DSiMystery</title>
|
||||
<style>
|
||||
<!--
|
||||
/* Font Definitions */
|
||||
@font-face
|
||||
{font-family:Calibri;
|
||||
panose-1:2 15 5 2 2 2 4 3 2 4;}
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{margin-right:0pt;
|
||||
text-indent:0pt;
|
||||
margin-top:0pt;
|
||||
margin-bottom:6.0pt;
|
||||
line-height:119%;
|
||||
text-align:left;
|
||||
font-family:Calibri;
|
||||
font-size:10.0pt;
|
||||
color:black;}
|
||||
ol
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
ul
|
||||
{margin-top:0in;
|
||||
margin-bottom:0in;
|
||||
margin-left:-2197in;}
|
||||
@page
|
||||
{size:8.0302in 11.0in;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body link=navy vlink="#663399" style='margin:0'>
|
||||
|
||||
<div style='position:absolute;width:2.0459in;height:3.2125in'>
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1724" style='position:absolute;left:0;
|
||||
top:.13pt;width:180.04pt;height:132.48pt;z-index:698;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1134.png" o:title="room-4"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:698;
|
||||
left:0px;top:0px;width:240px;height:177px'><img width=240 height=177
|
||||
src=image1134.png v:shapes="_x0000_s1724"></span><![endif]><!--[if gte vml 1]><v:rect
|
||||
id="_x0000_s1725" style='position:absolute;left:0;top:132pt;width:180pt;
|
||||
height:132pt;z-index:699;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' fillcolor="black [0]" strokecolor="black [0]"
|
||||
insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:699;
|
||||
left:-1px;top:175px;width:242px;height:178px'><img width=242 height=178
|
||||
src=image340.png v:shapes="_x0000_s1725"></span><![endif]><!--[if gte vml 1]><![if mso]><v:shapetype
|
||||
id="_x0000_t202" coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
||||
</v:shapetype><v:shape id="_x0000_s1726" type="#_x0000_t202" style='position:absolute;
|
||||
left:.37pt;top:0;width:9.75pt;height:9pt;z-index:700;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<o:lock v:ext="edit" rotation="t" text="t"/>
|
||||
<o:webcomponent v:ext="edit" o:html="<meta name=viewport content=width=240,height=352> <script type=text/javascript> document.body.scrollTop = 176 </script>"
|
||||
o:on="t"/>
|
||||
</v:shape><![endif]><![endif]-->
|
||||
|
||||
<div style='position:absolute;margin-left:0px;margin-top:0px;width:14px;
|
||||
height:12px;z-index:700'><meta name=viewport content=width=240,height=352>
|
||||
<script type=text/javascript>
|
||||
document.body.scrollTop = 176
|
||||
</script></div>
|
||||
|
||||
<!--[if gte vml 1]><v:rect id="_x0000_s1727" style='position:absolute;left:14.81pt;
|
||||
top:.93pt;width:46.87pt;height:46.13pt;z-index:701;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t" o:cliptowrap="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:imagedata src="image1164.wmz" o:title="Emilia"/>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
</v:rect><![endif]--><![if !vml]><span style='position:absolute;z-index:701;
|
||||
left:20px;top:1px;width:62px;height:62px'><img width=62 height=62
|
||||
src=image11641.png v:shapes="_x0000_s1727"></span><![endif]><!--[if gte vml 1]><v:roundrect
|
||||
id="_x0000_s1728" style='position:absolute;left:52.5pt;top:30.75pt;width:127.5pt;
|
||||
height:68.25pt;z-index:702;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' arcsize="10923f" fillcolor="white [7]"
|
||||
strokecolor="black [0]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:roundrect><![endif]--><![if !vml]><span style='position:absolute;
|
||||
z-index:702;left:69px;top:40px;width:172px;height:93px'><img width=172
|
||||
height=93 src=image1333.png v:shapes="_x0000_s1728"></span><![endif]><!--[if gte vml 1]><v:shape
|
||||
id="_x0000_s1729" type="#_x0000_t202" style='position:absolute;left:56.64pt;
|
||||
top:34.89pt;width:121.6pt;height:55.15pt;z-index:703;mso-wrap-distance-left:2.88pt;
|
||||
mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
|
||||
mso-wrap-distance-bottom:2.88pt' filled="f" fillcolor="black" stroked="f"
|
||||
strokecolor="black [0]" strokeweight="0" insetpen="t">
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]" weight="0"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='mso-column-margin:5.7pt;mso-rotate-with-shape:t' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:703;
|
||||
left:76px;top:47px;width:162px;height:73px'>
|
||||
|
||||
<table cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width=162 height=73 style='vertical-align:top'><![endif]>
|
||||
<div v:shape="_x0000_s1729" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
|
||||
class=shape>
|
||||
<p class=MsoNormal><span lang=en-US style='font-family:Calibri;color:red;
|
||||
language:en-US'>Emilia</span><span lang=en-US style='language:en-US'>: What? What do you mean? Ugh, this “game” is getting complicated.</span></p>
|
||||
</div>
|
||||
<![if !vml]></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</span><![endif]><!--[if gte vml 1]><v:shapetype id="_x0000_t68" coordsize="21600,21600"
|
||||
o:spt="68" adj="5400,5400" path="m0@0l@1@0@1,21600@2,21600@2@0,21600@0,10800,xe">
|
||||
<v:stroke joinstyle="miter"/>
|
||||
<v:formulas>
|
||||
<v:f eqn="val #0"/>
|
||||
<v:f eqn="val #1"/>
|
||||
<v:f eqn="sum 21600 0 #1"/>
|
||||
<v:f eqn="prod #0 #1 10800"/>
|
||||
<v:f eqn="sum #0 0 @3"/>
|
||||
</v:formulas>
|
||||
<v:path o:connecttype="custom" o:connectlocs="10800,0;0,@0;10800,21600;21600,@0"
|
||||
o:connectangles="270,180,90,0" textboxrect="@1,@4,@2,21600"/>
|
||||
<v:handles>
|
||||
<v:h position="#1,#0" xrange="0,10800" yrange="0,21600"/>
|
||||
</v:handles>
|
||||
</v:shapetype><v:shape id="_x0000_s1730" type="#_x0000_t68"
|
||||
href="Page1374.htm" style='position:absolute;left:76.49pt;top:210.74pt;
|
||||
width:36.75pt;height:39.75pt;rotation:-180;z-index:704;
|
||||
mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
|
||||
mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' fillcolor="white [7]"
|
||||
strokecolor="white [7]" insetpen="t">
|
||||
<v:fill color2="black [0]"/>
|
||||
<v:stroke color2="white [7]">
|
||||
<o:left v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:top v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:right v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:bottom v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
<o:column v:ext="view" color="black [0]" color2="white [7]"/>
|
||||
</v:stroke>
|
||||
<v:shadow color="#ccc [4]"/>
|
||||
<v:textbox style='layout-flow:vertical-ideographic' inset="2.88pt,2.88pt,2.88pt,2.88pt"/>
|
||||
</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:704;
|
||||
left:99px;top:280px;width:55px;height:56px'><map name=MicrosoftOfficeMap0><area
|
||||
shape=Polygon
|
||||
coords="52, 41, 40, 41, 40, 1, 15, 1, 15, 41, 3, 41, 27, 54, 52, 41"
|
||||
href="Page1374.html"></map><img border=0 width=55 height=56 src=image1152.png
|
||||
usemap="#MicrosoftOfficeMap0" v:shapes="_x0000_s1730"></span><![endif]>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Mirrored from dsipaint.com/games/dsimystery/index_files/Page1360.htm by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 12 Jul 2023 12:52:03 GMT -->
|
||||
</html>
|
||||