mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
132 lines
3.9 KiB
Text
132 lines
3.9 KiB
Text
// UT Tip: There should be some points where you don't stop jumping.
|
|
// Rep. by Pablo
|
|
//--- OBJECT WRITE BEGIN ---
|
|
new SimGroup(MissionGroup) {
|
|
|
|
new ScriptObject(MissionInfo) {
|
|
name = "Winding Steps";
|
|
UltimateTime = "24000";
|
|
artist = "Technostick";
|
|
time = "60000";
|
|
type = "Intermediate";
|
|
desc = "Perfect your jumping skills.";
|
|
music = "Seaside Revisited.ogg";
|
|
level = "23";
|
|
goldTime = "30000";
|
|
AlarmStartTime = "15";
|
|
};
|
|
new MissionArea(MissionArea) {
|
|
area = "-360 -648 720 1296";
|
|
flightCeiling = "300";
|
|
flightCeilingRange = "20";
|
|
locked = "true";
|
|
};
|
|
new Sky(Sky) {
|
|
position = "336 136 0";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
cloudHeightPer[0] = "0.349971";
|
|
cloudHeightPer[1] = "0.3";
|
|
cloudHeightPer[2] = "0.199973";
|
|
cloudSpeed1 = "0.0005";
|
|
cloudSpeed2 = "0.001";
|
|
cloudSpeed3 = "0.0003";
|
|
visibleDistance = "500";
|
|
useSkyTextures = "1";
|
|
renderBottomTexture = "1";
|
|
SkySolidColor = "0.900000 0.900000 0.900000 1.000000";
|
|
fogDistance = "300";
|
|
fogColor = "0.600000 0.600000 0.600000 1.000000";
|
|
fogVolume1 = "0 0 0";
|
|
fogVolume2 = "0 0 0";
|
|
fogVolume3 = "0 0 0";
|
|
materialList = "~/data/skies/Intermediate/Intermediate_Sky.dml";
|
|
windVelocity = "1 1 0";
|
|
windEffectPrecipitation = "1";
|
|
noRenderBans = "1";
|
|
fogVolumeColor1 = "128.000000 128.000000 128.000000 -222768174765569860000000000000000000000.000000";
|
|
fogVolumeColor2 = "128.000000 128.000000 128.000000 0.000000";
|
|
fogVolumeColor3 = "128.000000 128.000000 128.000000 -170698929442160050000000000000000000000.000000";
|
|
locked = "true";
|
|
};
|
|
new Sun() {
|
|
direction = "0.544508 0.439467 -0.714409";
|
|
color = "1.400000 1.200000 0.400000 1.000000";
|
|
ambient = "0.300000 0.300000 0.400000 1.000000";
|
|
scale = "1 1 1";
|
|
locked = "true";
|
|
position = "0 0 0";
|
|
rotation = "1 0 0 0";
|
|
};
|
|
new SimGroup(CheckPoints) {
|
|
|
|
new StaticShape(StartPoint) {
|
|
position = "8 -16 0";
|
|
rotation = "0 0 -1 90";
|
|
scale = "1 1 1";
|
|
dataBlock = "StartPad";
|
|
};
|
|
new StaticShape(EndPoint) {
|
|
position = "0 -8 10";
|
|
rotation = "0 0 1 225";
|
|
scale = "1 1 1";
|
|
dataBlock = "EndPad";
|
|
};
|
|
};
|
|
new Item() {
|
|
position = "20 -20 4.05";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
dataBlock = "GemItemBlack";
|
|
collideable = "0";
|
|
static = "1";
|
|
rotate = "1";
|
|
|
|
};
|
|
new Item() {
|
|
position = "4 -4 27";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
dataBlock = "GemItemBlack";
|
|
collideable = "0";
|
|
static = "1";
|
|
rotate = "1";
|
|
|
|
};
|
|
new Item() {
|
|
position = "16 -20 20.5";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
dataBlock = "TimeTravelItem";
|
|
collideable = "0";
|
|
static = "1";
|
|
rotate = "1";
|
|
timeBonus = "10000";
|
|
};
|
|
new Trigger(Bounds) {
|
|
position = "-10 10 -4";
|
|
rotation = "1 0 0 0";
|
|
scale = "40 40 54";
|
|
dataBlock = "InBoundsTrigger";
|
|
polyhedron = "0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.0000000 1.0000000";
|
|
};
|
|
new StaticShape() {
|
|
position = "-0.857576 -7.76485 28.4223";
|
|
rotation = "0 0 1 225";
|
|
scale = "1 1 1";
|
|
dataBlock = "SignFinish";
|
|
};
|
|
new InteriorInstance() {
|
|
position = "8.00836 -12.0126 -5.5";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
interiorFile = "~/data/interiors_MBP/WindingSteps.dif";
|
|
showTerrainInside = "0";
|
|
};
|
|
new AudioProfile(MusicProfile) {
|
|
fileName = "~/data/sound/Pianoforte.ogg";
|
|
description = "AudioMusic";
|
|
preload = "0";
|
|
};
|
|
};
|
|
//--- OBJECT WRITE END ---
|