-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLOCALSCENELIST.XML
2059 lines (1511 loc) · 131 KB
/
LOCALSCENELIST.XML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<SCENELIST>
<!-- THIS IS THE LOCALSCENELIST.XML THAT CONTAINS TEMPORARY AND TEST SCENES - THESE SCENES DO NOT APPEAR IN THE RELEASED BUILD -->
<!--
★ Thank you for downloading Destination Home's 1.86 Offline Client! For more information about this build or wanting to donate your PlayStation Home Cache Data
feel free to join our Discord Server: https://discord.gg/QguSBT3
★ Check out our social medias:
❤️ Join/Check out our social platforms:
➤ Destination Home Preservation: https://discord.gg/PlayStationHome
➤ Destination Home Official Website: http://destinationho.me/
➤ Destination Home Preservation (Alternative Discord Link): https://discord.gg/QguSBT3
➤ Destination Home Twitch Channel: https://www.twitch.tv/playstationhome/
★ P.S: Special Thanks to Pongo86 for releasing the 1.86 Developer Client to the public.
<!-- ==================================================================================================================================================== -->
<!--Destination Home 1.86 Patch v1.31:
Patch v1.31 is now out! Here is the change logs/debug patch notes 9/12/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
⚠️ Important Information:
One thing I would like to state for RPCS3 client user's is to make sure not to update your RPCS3 application due to it causes issue's for running any PlayStation Home Client. In this patch I will leave the correct version of RPCS3 that user's need to utilize if you want to run Home succesfully via for any version (1.00 - 1.86)
Be sure to not update RPCS3, as well to the latest version until futher notice best regards Nagato.
• User's have stated that Home won't boot up at launch.
🏠 Spaces:
• SeaClyff Retreat Personal Space Game Mechanic + Including original icon + .SDC metadata.
• The Complex nDreams Apartment + Including original icon + .SDC metadata.
• The Irish Pub Apartment + Including original icon + .SDC metadata.
• The Prairie Saloon ClubHouse Lockwood + Including original icon + .SDC metadata.
• Tycoon Penthouse Apartment + Including original icon + .SDC metadata.
• Virtua Tennis 4 Baseline Battle Personal Space (SEGA) + Including original icon + .SDC metadata.
🎥 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Virtua Tennis 4 Baseline Battle Personal Space (SEGA): Added original Vitura Tennis Advert Video.
🐞 Known Issue's/Bugs:
• None for this patch.
Disclaimer: This project is purely for preservation/educational purposes.
---------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Destination Home 1.86 Patch v1.30:
Patch v1.30 is now out! Here is the change logs/debug patch notes 8/31/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
🎥 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Namco Theatre: Added original/custom screenlink content. (Ridge Racer 7's, Tekken 6 PSP, Soulcalibur, NAMCO BANDAI Showcase video)
• Red Bull Beach: Added original/custom screenlink content. (2010 Flugtag Showcase Video)
• Winter Holiday Hullabaloo 2011: Added original/custom screenlink content. (Original Winter 2011 Holiday PlayStation Home Video.)
• SCEE Shopping Mall East: Added originalcustom screenlink content.
🐞 Known Issue's/Bugs:
• None for this patch.
Disclaimer: This project is purely for preservation/educational purposes.
---------------------------------------------------------------------------------------------------------------------------------------------------------
Destination Home 1.86 Patch v1.29:
Patch v1.29 is now out! Here is the change logs/debug patch notes 8/27/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
---------------------------------------------------------------------------------------------------------------------------------------------------------
🎥 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Acorn Meadows Park: Added original screenlink content.
• PixelJunk Exhibition: Added original screenlink content.
• SCEE Home Square Version 3: Added custom screenlink content.
---------------------------------------------------------------------------------------------------------------------------------------------------------
🐞 Known Issue's/Bugs:
• None for this patch.
---------------------------------------------------------------------------------------------------------------------------------------------------------
Disclaimer: This project is purely for preservation/educational purposes.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Destination Home 1.86 Patch v1.28:
Patch v1.28 is now out! Here is the change logs/debug patch notes 8/27/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
Note this was a quick patch as I noticed, that I forgot to add the original BGM source files to the LittleBigPlanet Playground Public space.
- Best Regards, Nagato. 8/27/2020
🎥 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• LittleBigPlanet™️ Playground: Added the original audio files, for the corresponding scene.
🔊 Audio Files:
• LittleBigPlanet™️ Playground: Official in-game BGM source files. *via .MP3*
🐞 Known Issue's/Bugs:
• None for this patch.
Disclaimer: This project is purely for preservation/educational purposes.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Destination Home 1.86 Patch v1.27:
Patch v1.27 is now out! Here is the change logs/debug patch notes 8/18/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
🏠 Spaces:
• Radd & Son Garage Rooftop Apartment + Including original icon + .SDC metadata.
• Lockwood Dream Island Apartment + Including original icon + .SDC metadata.
🔊 Audio Files:
• City of Flowers Penthouse "Window to the World" Personal Space GranZella (SCEA Version): Official in-game BGM source files. via .MP3
👚👕 Clothing:
• ガスマスク2(白・男性用) (Peakvox White Male Japanese Half-Face Gas Mask) - Nagato
• 照英王国裏ジャージパンツ(ホワイト) 女性用 (Teruei Kingdom Back Jersey Pants (White) For Women) - Nagato
• 照英王国裏ジャージトップ(ホワイト) (Teruei Kingdom back jersey top (white) For women) - Nagato
🐞 Known Issue's/Bugs:
• Radd & Son Garage Rooftop mini-games and key functions are encrypted (lua)
• City of Flowers Penthouse apartment has an audio issue I assume do to lua. However I have provided the source audio files for that space.
Disclaimer: This project is purely for preservation/educational purposes.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Destination Home 1.86 Patch v1.26 (Pre-Release):
Patch v1.26 is now out! Here is the change logs/debug patch notes 8/12/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
🏠 Spaces:
• City of Flowers Penthouse "Window to the World" Personal Space GranZella (SCEA Version)
🎥 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Hudson Bomber Dome: Added original screenlinks - Toykyle
• Hudson Gate: Added original screenlinks - Toykyle
• Hudson Theater: Added original screenlinks - Toykyle
• Konami Penthouse: Added original screenlinks. - Nagato
• Namco Arcade Center: Added original screenlinks - Nagato/Toykyle (Update)
• PixelJunk Exhibition: Added original screenlinks - Nagato/Toykyle
• WipEout: Added original screenlinks. - Nagato/Toykyle (Update)
• 銀玉人情商店街 (IREM Market SCEJ): Added original screenlinks - Toykyle
🐞 Known Issue's/Bugs:
• Note that this patch will be a pre-release & it's final version may have some key changes for the screenlinks for scenes such as Konami Penthouse, WipEout etc.
• Konami Penthouse Screenlinks: Certain posters will not show up due to lua script issues & missing game data files.
• WipEout Atmos is down due to lua. *Possibly a minigame host the atmos file just like RedBull Air Race.*
Disclaimer: This project is purely for preservation/educational purposes.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Destination Home 1.86 Patch v1.25:
Patch v1.25 is now out! Here is the change logs/debug patch notes 7/22/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
🎥 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• The LucasArts Star Wars Cantina: Added original screenlink + custom content from cache data + online. - Nagato/Toykyle.
• 夕暮れのグランゼーラ広場 (GranZella Square Sunset): Added original screenlink + custom content from cache data + online. - Nagato
• X7 VIP Space: Added custom music/custom icon's over in game models (The bodyguards for x7) - SlyCooperReloadCoded
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Destination Home 1.86 Patch v1.24:
Patch v1.24 is now out! Here is the change logs/debug patch notes 7/17/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
🏠 Spaces:
• Hed Kandi Beach Event Space: + With Metadata via .SDC & Thumbnail & Screenlink fixes both Original & Custom. - Nagato
🐞 Known Issue's/Bugs:
• None for this patch.
Disclaimer: This project is purely for preservation/educational purposes.
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Destination Home 1.86 Patch v1.23:
Patch v1.23 is now out! Here is the change logs/debug patch notes 7/17/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
🏠 Spaces:
• カプコンスカイラウンジ (Capcom Sky Lounge) Japanese Exclusive + With Metadata via .SDC & Thumbnail - Nagato
🎥 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Tekken 6 - Mishima Zaibatsu Recreation Floor: Added original screenlink content from official cache data. - Toykyle/Nagato
• WipEout Museum: Added original screenlink content from official cache data. - Toykyle/Nagato
• Namco Arcade Center: Added original screenlink content from official cache data. + Delisted the Namco Arcade Vol 3 video. - Toykyle/Nagato
Clothing:
• ハロウィンヒツギ(男性用) Coffin For Male - Junez
• Sodium Dev Tank Top Female - Nagato
🐞 Known Issue's/Bugs:
• None for this patch.
Disclaimer: This project is purely for preservation/educational purposes.
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Destination Home 1.86 Patch v1.22:
Patch v1.22 is now out! Here is the change logs/debug patch notes 7/12/2020. Best Regards, The Destination Home Team/Offline Content Assembly Team.
🎥 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• The PlayGround: Added original screenlink content from official cache data. - Nagato
• SCEJ Marketplace: Added original screenlink + custom content from cache data + online. - Nagato
🏃 Locomotion's/Companions:
Credit goes to Calibre for rebuilding all of these LMO's & Companions for the Destination Home community.
• AZMD Normal Zombie!
• Boxer - Companion
• Chairman Meow
• Forsaken Planet – Cow
• Gribbler the Dragon
• Highland Terrier
• JTTW Cloud (Locomotion)
• Jack Russell
• Puppy Dog
🐞 Known Issue's/Bugs:
• None for this patch.
Disclaimer: This project is purely for preservation/educational purposes.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 7/3/2020 v1.21:
Patch Completed by Nagato & QA.
=============================
Important Information:
• I've disabled the Burn Zombie Burn Mini game due to it the mini-game triggering in random spaces/scenes. To re-enable the mini-game please refer to the "Burn Zombie Burn Maze Enable Mini-Game Patch.RAR"
:homes: New Spaces:
• Gamescom 2013 Event: + With Metadata via .SDC & Thumbnail - Nagato
• Harry Potter - Pottermore Forbidden Forest: (Broomstick Racing) + With Metadata via .SDC & Thumbnail - Nagato
• Killer Plants from Outer Space: + With Metadata via .SDC & Thumbnail - Nagato
• Little Big Planet Toyota Prius Solar Scramble: + With Metadata via .SDC & Thumbnail - Nagato
• Masquerade Ball - The Ballroom Personal Space: + With Metadata via .SDC & Thumbnail - Nagato
• Prehistoric Valley Personal Space: + With Metadata via .SDC & Thumbnail - Nagato
• Red Bull Beach: + With Metadata via .SDC & Thumbnail - Nagato
• SCEE Cinema Auditorium HDK 0.89:+ With Metadata via .SDC & Thumbnail - Nagato
• SCEE Test Arcade Cabinet Game Development HDK 0.89: + With Metadata via .SDC & Thumbnail - Nagato
• SCEE Test Ball Physics Development HDK 0.89: + With Metadata via .SDC & Thumbnail - Nagato
• SCEE Test Mini-Game Development HDK 0.89: + With Metadata via .SDC & Thumbnail - Nagato
• SCEE Test Video Development HDK 0.89: + With Metadata via .SDC & Thumbnail - Nagato
• SCEE Water Development Test HDK 0.89 + With Metadata via .SDC & Thumbnail - Nagato
• SCEJ ホームスクエア (Japan Home Square Original) HDK 1.80.0.53.PUB: + With Metadata via .SDC & Thumbnail - Nagato
• Serenity Plaza: + With Metadata via .SDC & Thumbnail - Nagato
• おしゃべりファーム (Oshaberi Farms): + With Metadata via .SDC & Thumbnail - Nagato
• おしゃべり農園 (Oshaberi Farm Garden): + With Metadata via .SDC & Thumbnail - Nagato
• ピークヴォックスモンスター (Peakvox Monsters): + With Metadata via .SDC & Thumbnail - Nagato
• 夕暮れのグランゼーラ広場 GranZela Square Sunset: With Metadata via .SDC & Thumbnail - Nagato
• 怪物ジャポン 一本釣り (GAW Japanese Monster Fishing): + With Metadata via .SDC & Thumbnail - Nagato
• 昭栄王国ダンスフロア (Shoei Kingdom Dance Floor): + With Metadata via .SDC & Thumbnail + (Custom Spawnpoint) - Nagato
• 照英王国 Shoei Kingdom (JP) Ayame Kingdom Edition HDK 1.80.0.53.PUB: + With Metadata via .SDC & Thumbnail - Nagato
• 銀玉人情商店街 (IREM Market Original): + With Metadata via .SDC & Thumbnail - Nagato
:toolbox: v2.00 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Gamescom 2013 Event: Added original video content (PlayStation 4 Launch Video) - Nagato
• Original Home Square - Renamed "SCEE Original Home Square 0.5.1" - Nagato
• SCEA Auditorium 6: Added original video content. (PlayStation Home Beta GameSpot Exclusive)
• SCEJ ホームスクエア (Japan Home Square Original) HDK 1.80.0.53.PUB: Fixed Atmosphere/Skybox. - Nagato
• Shoei Kingdom (JP) 照英王国: Changed the sky box to a sunset setting. - Nagato
• Wahawk Command Center: Fixed original navigator icon from cache. - Nagato/Dedsec
• 照英王国 Shoei Kingdom (JP) Ayame Kingdom Edition HDK 1.80.0.53.PUB: Fixed atmosphere & spawn point. - Nagato
• 銀玉人情商店街 (Irem Market) - Renamed to "銀玉人情商店街 冬" for IREM Market Winter
👚👕 Clothing:
• Animated PS Home Moderator Jacket (Male) - Nagato
🐞 Known Issue's/Bugs:
• Harry Potter - Pottermore Forbidden Forest (Broomstick Racing): Mini-game isn't active due to encrypted lua's + not having the actual mini-game itself. As well this cause issues for the space to fully to "load."
• Killer Plants from Outer Space: Mini-game isn't active due to encrypted lua's + not having the actual mini-game itself. As well this cause issues for the space to fully to "load."
• Little Big Planet Toyota Prius Solar Scramble: The sky isn't displaying due to mini-game. (Encrypted lua script.)
• SCEE Test Ball Physics Development HDK 0.89 Scene: The ball in the space, doesn't show due to a failed resource. *Possibly due to incompatibility with 1.86 as this scene was built for the 0.80 HDK.
• Serenity Plaza has some missing building .MDL's, due to the space calling it as other "objects"
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/23/2020 CORE VERSION 2.00 Client
This client has patches v.1.00 - v1.20 pre-installed, this means that this build includes all of the clothing, spaces, general fixes, mini-games & more! *As of 6/23/2020* Instead of downloading each patch, you can install this client which will have everything pre-installed out the box! As well this client has some quick patches that we're added last minute before compiling for the end user, for more information check "Core v2.00 Patches below."
What's New In This Build:
• 270+ Spaces from all regions of Home! *This includes SCEA/SCEE/SCEJ/SCEA *Asia* & Debug spaces.
• 1000+ Clothing Items for Male/Female *This includes T-Shirts, Jeans, Hairs/Facial Hairs, Accesories, Sneakers & more!*
• Over 10+ mini-games & interactive items! *For select spaces, note not all spaces mini-games can be fixed due to encryption.*
• Updated TestInventory.XML & LocalSceneList.XML.
• Fixed metadata/scenes names & icons.
• Fixed atmosphere issues & probes.
• Custom hubstartup scripts & original scripts.
• 150+ LMO's, Companions both for Male/Female.
• Custom Preset Configuarions for the end user: (PS3/RPCS3)
• Fixed Scene metadata & icons.
• Fixed Scene Screenlinks for 10+ Spaces. *Not all spaces, have screenlink fixes. Note in future patches there will be screenlink updates to newer spaces.*
• 200+ Furniture Items for personal spaces.
🐞 Known Issue's/Bugs:
• There are still clothing objects with missing icons. Which in future update's we will take the time to fix.
• Fixed loading times via for loading clothing items & bootup. By using original commands and disabling the TestInventory.XML. *NOTE For those who have custom UUID's or TestInventory.XML's please be sure to back up your files* As for regular user's, you can ignore this statement. Overall booting home might take 1-2 minutes because it still has to mount it's core files and also read the LocalScene.XML files. However while your in Home you can access any space as soon as your into the navigator.
• Note this patch won't fix any bug's that deal with any texture/graphical issues via RPCS3. RPSC3 is still a emulator, thus not utilizing original PS3 hardware. Results may vary depending on your PC specs on compatiblity when it comes to playing with the Destination Home 1.86 Client. Playing on a DEX/Debug PS3 unit, will be the best method on running this client.
Core v2.00 Patches:
• v.1.00 - v1.20 pre-installed & Q/A.
v2.00 New Spaces:
• GranZella Edo Tenement House Personal Space: New Space.
• SCEA Central Plaza KillZone Edition: New Space. + Original Meta Thumbnails.
• Sodium Blimp: New Space. + Added original/custom themed content via screenlinks.
v2.00 Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Acorn Meadows Park Halloween Edition: Fixed original navigator icon from cache. - Nagato
• Assassin's Creed II Apartment: Atmosphere Fix. - Nagato
• Audi Home Terminal New Version: Fixed original navigator icon from cache. - Nagato
• Audi Home Terminal Old/New: Added original video content themed revolving around the original Audi automotive group. + With posters. - Nagato
• Buzz! Quiz Game Space: Fixed original navigator icon from cache. - Nagato
• Diamond Beach Yacht Club & Marina: Fixed original navigator icon from cache. & original name via .SDC - Nagato
• Disgaea 4 Lounge: Added video content themed revolving around the Disgaea 4 game.
• Drop Science Subway Personal Space: Atmosphere Fix. - Nagato
• Drop Science Subway Personal Spaceway: Fixed original navigator icon from cache. - Nagato
• Feva Arena Entrance: Added original/custom content themed revolving around the original Feva Arena space. - Nagato
• Feva Arena: Added original content revolving around the Fifa franchise. - Nagato
• Game Moonbase: Added original posters/video content themed revolving around the GAME franchise. Added it's original music back to the space as well.
• GranZella Southern Island Hideway Valentine Day: Fixed navigator icon with a new custom picture. - Nagato
• Great Edo of Nippon: Monoke Bon Festival: Fixed original navigator icon from cache. - Nagato
• Harbour Studio: Fixed original navigator icon from cache. - Nagato
• Hed Kandi Music Unlimited: Added original/custom themed content revolving around the Hed Kandi music franchise. - Nagato
• IREM Gathering Place for Cave Explores: Fixed original navigator icon from cache. - Nagato
• Island Bungalow Apartment: Fixed original navigator icon from cache. - Nagato
• Island Bungalow Apartment: Fixed original navigator icon from cache. - Nagato
• LOOT Hollywood Hills Nighttime Estate: Fixed original navigator icon from cache. - Nagato
• Loot Space Apartment: Fixed original navigator icon from cache. - Nagato
• Modnation Racing Pit Stop Club: Added original/custom themed content revolving around the Modnation Racer franchise. - Nagato
• Novus Prime: Fixed original navigator icon from cache. - Nagato
• Party's at Jess Apartment: Fixed original navigator icon from cache. - Nagato
• PlayStation Home Mansion Garage: Atmosphere Fix. - Nagato
• SCEA Action District: Added original/custom themed content via screenlinks. - Nagato
• SCEA Central Plaza: Removed Chain Swing 720p Video due to PS3 memory issues, + re-added the Chain Swing MP3 file in the Jukebox. (Credit to Juanma for Jukebox Fixes/Mod)
• SCEA Mall 1st Floor: Added original posters/video content themed revolving around the SCEA Home Mall Stores/Outlets. - Nagato
• SCEA Mall 2nd Floor: Added original posters/video content themed revolving around the SCEA Home Mall Stores/Outlets. - Nagato
• SCEA The Hub Street Fighter X Tekken: Changed name in LocalSceneList.XML
• SCEE Indie Park: Added custom themed content revolving around the indie development scene for PlayStation. - Nagato
• SCEJ Marketplace "マーケットプレイス:" Fixed original navigator icon from cache. - Nagato
• Summer House: Fixed original navigator icon from cache. - Nagato
• The Midnight Glade: Fixed original Podi Lockwood Advertisement video. - Nagato
• Tropical Escape SCEA: Fixed original navigator icon from cache. - Nagato
• Tuscan Villa Apartment: Fixed original navigator icon from cache. - Nagato
• UFC Octagon Personal Apartment: Added custom themed content revolving around the UFC Fighting franchise. This includes posters/videos. & Fixed navigator icon with a new custom picture. Nagato
• Wizards Den Personal Space: Fixed original navigator icon from cache. - Nagato
• x7 VIP Club: Fixed original navigator icon from cache.
• シアター (SCEJ Japan Cinema Auditorium): Fixed original navigator icon from cache. - Nagato
Clothing Texture Fixes:
• Drop Science Varsity Jacket - Word (Male) - Texture fix: Nagato
------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/23/2020 v1.20:
Patch Completed by Nagato & QA.
===========================
:911pxPSHome_Icon: Destination Home 1.86 Patch v1.20:
Patch v1.20 is now out! Here is the change logs/debug patch notes 6/23/2020.
Best Regards, The Destination Home Team/Offline Content Assembly Team.
:homes: Spaces:
• Feva Arena Entrance + With .SDC metadata. - Nagato
• ModNation Racing Pit Stop Club + With .SDC metadata. - Nagato
Special thanks @Billy for making this possible.
:movie_camera: Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Sodium One Apartment: Fixed profile icon in the Navigator. - Nagato
• Diamond Beach Yacht Club and Marina: Fixed original Metadata via for .SDC
• SCEE Tree House Apartment: Fixed to be in the apartments/private spaces section.
• Luxury Yacht Santorini Greece Personal Space: Fixed to be in the apartments/private spaces section.
• Las Vegas Suite Personal Space: Fixed to be in the apartments/private spaces section.
:womans_clothes::shirt: Clothing:
• Raver - Ponytail Custom Patch - Jinx *This will fix the LOD issue*
• Casual Sports Jacket Enjoy Football Germany Feva Arena (Male) - Nagato
• Time Crisis™. Razing Storm™. headgear with HUD (Male) - Nagato/Toykyle
• Master Higgins Kanji T-shirt - [十六連射] (Men's) - Nagato
• Oakland Raiders NFL Jersey (Female) - Nagato
• New York Giants NFL Jersey (Male) - Nagato
🪑 Furniture:
I'm proud to annouce for this patch we are introducing funiture for your personal spaces! In this patch there are 271 Unique furniture items for you to explore & create your own "Home!" For more information to know which items exactly has been added to today's client please refer to the "Official Furniture List.txt" which will detail just that.
Special thanks to Jinx for her hard work for creating the new furniture patch!
• Chairs: 47 Unique Items.
• Flooring: 8 Unique Items.
• Footstool: 3 Unique Items.
• Frame: 55 Unique Items.
• Light: 15 Unique Items.
• Ornament: 79 Unique Items.
• Sofa: 18 Unique Items.
• Table: 46 Unique Items.
Credits: Jinx, Junez, Nagato. *This Includes Rebuiding/Renaming/Q.A.*
==================
🐞 Known Issue's/Bugs:
• Since the overall client is almost at 20GB "18.0GB's" the startup/boot time when launching Home will take a little longer then normal. The reason to this is because the client has to verify/mount over 1,000+ Items & preload scene data at boot (there is over 200+ spaces that Home has to scan.) As far as I know, there is no way to minimize the loading time for the offline client. I would recomend when booting Home just wait for 1-2 minutes before launching any scene/space so you can avoid any errors.
==================
------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/21/2020 v1.19:
Patch Completed by Nagato & QA.
===========================
:911pxPSHome_Icon: Destination Home 1.86 Patch v1.19:
Patch v1.19 is now out! Here is the change logs/debug patch notes 6/22/2020.
Best Regards, The Destination Home Team/Offline Content Assembly Team.
:movie_camera: Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• 四季彩の部屋 Peakvox Seasonal Themed Room: Fixed original navigator icon from cache. - Nagato
• Inferno Apartment: Fixed original navigator icon from cache. - Nagato
• Gothic Cathedral: Fixed original navigator icon from cache. - Nagato
• Doctor Who Tardis Apartment: Fixed to be in the apartments/private spaces section. & Fixed original navigator icon from cache. - Nagato
• Hed Kandi Music Unlimited: Fixed original navigator icon from cache. - Nagato
• Theatre: Fixed original navigator icon from cache. - Nagato
• LOOT Space Station: Fixed original navigator icon from cache. - Nagato
• Ghostbusters Firehouse On Location Apartment: Fixed original navigator icon from cache. - Nagato
• Far Cry 2: Reuben’s Office: Fixed original navigator icon from cache. - Nagato
• Far Cry 2: Train Station: Fixed original navigator icon from cache. - Nagato
• The Ford Showroom: Fixed original navigator icon from cache. - Nagato
:womans_clothes::shirt: Clothing:
• ランカ・リー 親衛隊はちまき(女性用)Ranka Lee Sachimaki Female - Junez
• シェリル・ノーム 親衛隊はちまき(男性用)Sheryl Nome Guards Hachimaki (for men) - Junez
• ランカ・リー 親衛隊はちまき(男性用)Ranka Lee Guards Group Hachimaki Male - (Picture Icon Fix) - Junez
• Red Bull Skateboarding Hoodie (for Male) - Nagato
• 雪歩名入り応援はちまき・男性 Supporters with Yukiho name Hachimaki (Male) - Junez
• inFamous 2 Cole MacGrath Costume (Male) - Nagato.
• ブラック★ロックシューター なりきりロックカノン) Black Rock Shooter Canon Re-Fixed - Junez
• ブラック★ロックシューター なりきりコート Black Rock Shooter Outfit (Cape Version Re Fixed) - Junez
Credits: Jinx, Junez, Nagato. *This Includes Rebuiding/Renaming/Q.A.*
==================
------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/20/2020 v1.18:
Patch Completed by Nagato & QA.
======================================
:house: Added 1 New Space + With MetaData:
• SCEJ ホームスクエア 日没 (Japan Home Square Sunset) - Nagato
:movie_camera: Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Feva Arena: Fixed original navigator icon from cache. - Nagato
• GranZella Glittering Sands TANABATA 2013 Event Night Edition: Fixed original navigator icon from cache. - Nagato
• IREM Seaside: Fixed original navigator icon from cache. - Nagato
• Infamous The Abandoned Docks Of Empire City: Fixed original navigator icon from cache. - Nagato
• KillZone 2 Visari Throne Room: Fixed original navigator icon from cache. - Nagato
• Konami Penthouse: Fixed original navigator icon from cache. - Nagato
• Lockwood Dream Cental: Fixed original navigator icon from cache. - Nagato
• Loco Roco Mui Mui Island: Fixed original navigator icon from cache. - Nagato
• Loco Roco Mui Mui Ship: Fixed original navigator icon from cache. - Nagato
• Namco Arcade Center: Fixed original navigator icon from cache. - Nagato
• Namco Theatre: Fixed original navigator icon from cache. - Nagato
• PlayStation The Studio Mini's Space: Fixed original navigator icon from cache. - Nagato
• Red Bull Air Race: Fixed original navigator icon from cache. - Nagato
• Red Bull Beach "Hub": Fixed original navigator icon from cache. & Renamed to "Red Bull Hub" via in SDC.- Nagato
• SCEA First Floor Mall: Fixed original navigator icon from cache. - Nagato
• SCEA Second Floor Mall: Fixed original navigator icon from cache. - Nagato
• SCEE Christmas/Winter Home Square Version 3: Fixed original navigator icon from cache. - Nagato
• SCEE Home Square Version 2 (Christmas/Winter Edition): Fixed original navigator icon from cache. & Replaced the sky. - Nagato
• SCEE Home Square Version 2 (Halloween Edition): Fixed original navigator icon from cache. - Nagato
• SCEE Home Square Version 2: Fixed original navigator icon from cache. - Nagato
• SCEE Home Square Version 3 (EU): Fixed original navigator icon from cache. & Renamed to "SCEE Home Square Version 3" via in SDC. - Nagato
• SCEE Home Theatre Cinema: Fixed original navigator icon from cache. - Nagato
• SCEE Shopping Mall West: Fixed original navigator icon from cache. - Nagato
• SCEJ Music Cafe ホームカフェ: : Fixed original navigator icon from cache. - Nagato
• Serenity Plaza Mini-Bots Halloween Spooktacular: Fixed original navigator icon from cache. - Nagato
• Siren Lounge: Fixed original navigator icon from cache. - Nagato
• Sodium 2 Project Velocity: Fixed original navigator icon from cache. - Nagato
• Tekken 6 - Mishima Zaibatsu Recreation Floor: Fixed original navigator icon from cache. - Nagato
• The Midway Darla's Den Personal Space: Fixed original navigator icon from cache. - Nagato
• The Spunland Cottage: Fixed original navigator icon from cache. - Nagato
• Western Frontier: Fixed original navigator icon from cache. - Nagato
• Winter Holiday Hullaballo 2011: Fixed original navigator icon from cache. - Nagato
• Winter Vacation Villa Personal Space: Fixed to be in the apartments/private spaces section. & Fixed original navigator icon from cache. - Nagato
• Winter Wonderland 2009: Fixed original navigator icon from cache. - Nagato
• WipEout Museum: Fixed original navigator icon from cache. - Nagato
• Xi Maximum Tilt: Fixed original navigator icon from cache. - Nagato
• YeckLand: Fixed original navigator icon from cache. - Nagato
• x7 Entrance: Fixed original navigator icon from cache. - Nagato
• 銀玉人情商店街 (IREM Market): Added a new custom navigator icon. - Nagato
:womans_clothes::shirt: Clothing:
• 189 Unique Female Hairstyles - Jinx (For rebuilding/Packing/Q.A)
==================
🐞 Known Issue's/Bugs:
Incompatible due to using the same LOD files:
• Raver - Ponytail
• Formal Affair
Credit to Jinx.
------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/20/2020 v1.17:
Patch Completed by Nagato & QA.
======================================
:movie_camera: Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Anime Apartment: Fixed to be in the apartments/private spaces section. - Nagato
:womans_clothes::shirt: Clothing:
• Adidas SuperStar White & Blue Sneakers (Male) - Nagato
• Animated Hi-Tops - Ruby (Male) - Nagato
• Anime - Athletic High School Boy (Male) - Jinx/Junez
• Anime - Brawler High School Boy (Male) - Jinx/Junez
• Anime - Class President High School Girl (Female) - Jinx/Junez
• Anime - Genius High School Boy (Male) - Jinx/Junez
• Anime Demon Hunter - Hearth (Male) - Jinx/Junez
• Anime Demon Hunter - Vamp (Male) - Jinx/Junez
• Anime Demon Hunter - Verse (Male) - Jinx/Junez
• Anime Martial Artist - Hero (Male) - Jinx/Junez
• Anime Martial Artist - Wanderer (Male) - Jinx/Junez
• Burgundy & Black Track Pants (Male) - Nagato
• Modern Logo Hooded Sweatshirt 2000AD (Male) - Nagato
• NBA Celtics Jersey (Male) - Nagato
• White Polo Shirt (Male) - Nagato
Credits: Jinx, Junez, Nagato. *This Includes Rebuiding/Renaming/Q.A.*
:person_running: Locomotions/Companions:
Credit goes to Calibre for rebuilding all of these LMO's & Companions for the Destination Home community.
• DRIVECLUB™ - Burning Rubber Companion
• GST - Floor Poses - Pack 2 (Male)
• GST - The Nightclub_ Booty Shake Dance Pack (Male)
• LMO - Aseman the White Tiger
• LMO - Demon Horse - Keshi
• Locomotion - Ninja Run
• Mark IV Interceptor Bot Companion (Reus Violet)
• obb Companion
==================
🐞 Known Issue's/Bugs:
None for this Patch.
==================
How to install this patch:
1. Download the patch.
2. Use either WinRAR, or 7zip to extract the content's to your PC.
3. Take the *USRDIR* folder and drag it to the root of your build format, and make sure to overwrite any data.
------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/12/2020 v1.16:
Patch Completed by Nagato & QA.
======================================
:911pxPSHome_Icon: Destination Home 1.86 Patch v1.16:
Patch v1.16 is now out! Here is the change logs/debug patch notes 6/19/2020.
=============================================
:house: Added 1 New Space + With MetaData:
• The Paradise Springs Casino Lounge - Nagato
:movie_camera: Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Cutthroats Battle for Black Powder Cove: Atmosphere Fix. - Nagato
• Harry Potter Pottermore Diagon Alley: Atmosphere Fix. - Nagato
• Serenity Plaza Mini-Bots Halloween Spooktacular: Atmosphere Fix. - Nagato
• Sodium One Apartment: Fixed original name in .SDC + Thumbnail. - Nagato
• SuperStar Jetsetter Private Plane: Atmosphere Fix. - Nagato
• Theatre: Atmosphere Fix. - Nagato
• The Paradise Springs Casino Poker Lounge: Fixed name in LocalSceneList.XML - Nagato
• Tropical Escape SCEA Personal Space: Atmosphere Fix. - Nagato
• Western Frontier: Atmosphere Fix. - Nagato
:womans_clothes::shirt: Clothing:
• Alisa Rocket Punch Tekken Costume (Female)
• Hit Girl Costume (Female)
• Silent Hill 2 Bubble Head Nurse (Female)
• Xiaoyu Costume Tekken Costume (Female)
• ブラック★ロックシューター なりきりビキニ (Female)
• 初音ミク 応援ネギ(女性用)(Female)
• 干支シリーズ第二弾 卯グローブ(ピンク・女性用)Second series of zodiac series U glove (pink, for women)
• 干支シリーズ第二弾 卯グローブ(ホワイト・女性用) Second series of zodiac series Uglove (white, for women)
• 干支シリーズ第二弾 卯グローブ(ホワイト・男性用) Second series of zodiac series Uglove (white, for men)
• 干支シリーズ第二弾 卯スーツ(グレー・男性用) Second series of zodiac series Uba Suit (gray, for men)
• 干支シリーズ第二弾 卯フード(グレー・男性用) Second series of zodiac series Ud Hood (gray, for men)
• 義理チョコ Chocolate in mouth (Male)
Credits: Jinx, Junez, Nagato. *This Includes Rebuiding/Renaming/Q.A.*
==================
🐞 Known Issue's/Bugs:
• Alisa Rocket Punch Tekken Costume has slight texture issues.
• Xiaoyu Costume Tekken Costume has slight texture issues.
------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/12/2020 v1.15:
Patch Completed by Nagato & QA.
======================================
:page_facing_up: Scripts/Commands:
• As some of you may know the save-function for the 1.86 Client is "broken" however, with the use of a debug command you can create your own "outfit savestates" thus you can load your custom outfits on the fly.
1. By installing this patch first then, typing this command *saveAvatar typethenameofyouravatarsoutfithere* will save your avatar to this folder location *USRDIR/Avatars/WhateverYouNamedYourOutfit.wtr*
2. To load your newly saved avatar you can utilize this command*loadAvatar
typethenameofyouravatarsoutfithere* then you should be able to load your outfit.
For more information on how to utilize this command please refer to the
"How To Manually Save Outfits On 1.86.mp4" video for more information.
Special thanks to @Kobun42 for this find.
:house: Added 1 New Space + With MetaData:
• SCEA Central Plaza Winter/Christmas Edition 2010.
:movie_camera: Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• UFC Octagon Personal Apartment: Atmosphere Fix. - Nagato
:womans_clothes::shirt: Clothing:
• Added 861 Clothing Items For Male:
- This includes Shirts, Hats, Hairs/Facial Hair, Accesories, Pants, Shoes/Sneakers.
- For more information about what exact clothing has been added please refer to the "Male Clothing.TXT *NOTE this is a WIP, and needs to still be uploaded for the official list*
Credits: Jinx, Junez, Nagato. *This includes Rebuiding/Renaming/Q.A.*
==================
🐞 Known Issue's/Bugs:
• In SCEA Central Plaza Winter/Christmas Edition 2010 space, the Jukebox may not work as the scripts wasn't manually program for this version.
==================
How to install this patch:
1. Download the patch.
2. Use either WinRAR, or 7zip to extract the content's to your PC.
3. Take the *USRDIR* folder and drag it to the root of your build format, and make sure to overwrite any data.
------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/12/2020 v1.14:
Patch Completed by Nagato & QA.
======================================
📄 Scripts/Commands:
Credit: Nagato
• Added the ability to enable Development Release Mode on PlayStation Home. By "emulating" dip switch commands that are only found on actual DECR unit's "DECR-1000A/J models we can enable some more debug features.
• Debug units "DECHA00A" or DEX PS3's can now utilze DECR functions without the use of having "dipswitches".
This includes the following features:
➤ Switches to development mode.
➤P ress the right analogue stick to enter a free flight mode. When in flight mode, press R1 to raise the camera vertically and R2 to lower it. The left analogue stick strafes the camera in the XZ plane. The right analogue stick controls the orientation of the camera. *This means you can enable debugcam by just hitting R3, like back on 89/97 builds.*
⚠️ NOTE: by turning (off) the dip switch commands will put you back into release mode. *Retail* As well if you happen to own a DECR you don't need to utilize any of these functions since it's already built in via hardware. As well if you want to revert back to "release mode" please use the hubstartup script that is found in a folder called "Original HubStartup"
➤ Switches to release mode.
➤ Press the right analogue stick to enter an `over-the-shoulder' third person camera mode.
➤ Press SELECT to access the Debug Console
:movie_camera: Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• Acorn Meadows Park VEEMEE: Atmosophere Fix/Probe Fix. - Nagato
• Aurora 1.9: Atmosophere Fix - Nagato
• Bramblenook Farm: Atmosophere Fix/Probe Fix. - Nagato
• Clearasil Kart Racing: Atmosophere Fix - Nagato
• Desert Haven Clubhouse Tour: Atmosophere Fix - Nagato
• GranZella Great Edo Of Nippon Monoke Bon Festival: Atmosophere Fix - Nagato
• GranZella Great Edo Of Nippon: Atmosophere Fix - Nagato
• GranZella Southern Island Hideaway Valentine Day 2013 Event: Atmosophere Fix - Nagato
• No Man's Land Tutorial Level 1 Subway: Atmosophere Fix - Nagato
• PlayStation The Studio Mini's Space: Atmosophere Fix - Nagato
• SCEE Home Square (Version 2): Atmosophere Fix - Nagato
• SCEJ Music Cafe ホームカフェ: Atmosophere Fix - Nagato
:womans_clothes::shirt: Clothing:
• Lars Hairstyle for (Male) - Nagato/Toykyle
• Mechjet - Acer (Male) - Jinx
• Mechjet -Vandal (Male) - Jinx
• Mtn. Dew Hoodie (bundled with Promo Shirt 2) (Male) - Junez
• Nike Orange KD4's (Male) - Junez
:person_running: Locomotions/Companions:
Credit goes to Calibre for rebuilding all of these LMO's & Companions for the Destination Home community.
• Chinese Dragon Companion
• EVO Arcade Joystick Companion
• Fainting Goat Companion
• ibb Companion
• LMO - Beast Mounts - Sky Serpent (Purple)
• LMO - MIB™ Boris Bike
• Locomotion - Inferno Hero
• Santa's Sleigh
• SuperStar - Mini Giraffe
------------------------------------------------------------------------------------------------------------------------
<!--Debug Patch Notes 6/12/2020 v1.13:
Patch Completed by Nagato & QA.
======================================
:house: Added 1 New Space + With MetaData:
• SCEJ ホームスクエア Daytime
:movie_camera: Screenlinks/Image Fixes/Audio Fixes/General Scene Fixes:
• SCEE Home Square Christmas Edition (Version 2): Atmosophere Fix. - Dedsec
• SCEE Home Square Halloween Edition (Version 2): Atmosophere Fix. - Dedsec
• SCEJ ホームスクエア Daytime: Added original/custom content that is themed around Japanese culture. This includes original Japanese PlayStation Home's posters/adverts that was once utlized in the Home Square. - Nagato
• SCEJ ホームスクエア Winter Night Edition: Added original/custom content that is themed around Japanese culture. This includes original Japanese PlayStation Home's posters/adverts/videos that was once utlized in the Home Square. - Nagato
• X7 Vip Club: Added Original Music: Dedsec
------------------------------------------------------------------------------------------------------------------------
==================
🐞 Known Issue's/Bugs:
• None for this patch.
<!-- Debug Patch Notes 6/12/2020 v1.12:
Patch Completed by Nagato & QA.
======================================
:womans_clothes::shirt: Clothing:
• Adidas Firebird Black & White Female Track Pants - Nagato
• Black & White NEW Adidas Track Pants (Female) - Nagato
• Cargo Jacket - Black with White T-Shirt (Male) - Nagato
• Diesel Jacket Jisckyan (Male) - Jinx/Nagato
• Konami Code Animated T-shirt (Male) Nagato/Toykyle
• Male Snowman Mask Re-Fix (Male) - Junez/Nagato
• SingStar® Disco Guy Character Costume (Male) - Junez
• Skelly Kelly Hairgrip Hairstyle (Female) - Junez
• USA Feva Arena Jacket (Male) - Nagato
• White Puffy Jacket Male - Nagato
• WipEout 2197 Long Sleeve T-Shirt Bar Code Edition (Male) - Nagato
• WipEout Official FX350 T-shirt (Male) - Nagato
• ちょこんとカボチャ(男性)Chokon and pumpkin (Male) - Junez
• ケルビム マスク Female Liar Mask - Junez
• ケルビム マスク Male Liar Mask - Junez
• ジョージア スーツ・ジャケット Georgia Coca-Cola Suit Japa
:person_running: Locomotions/Companions:
Credit goes to Calibre for rebuilding all of these LMO's & Companions for the Destination Home community.
• Baby Doberman
• Ghost Companion
• Gnarly Zombie Deck - Backside Nollie Shuvit 360
• Kubwa the Silverback Gorilla
• Locomotion - Skateboard (Radical)
• PartyMachine 2013 Companion
• Rottweiler
• Sammy the Skunk
• Shimmer the Magenta Fairy
• Storm the Stitchkin Pegasus
• White Husky
:space_invader: Mini-Games & Interactive Items:
• FarCry Mini-Games & Interactive Items Pack: - Credits to Juanma
- Mancala Minigame
- Newspaper clipping
- FarCry Windmill
- FarCry birds
==================
🐞 Known Issue's/Bugs:
• With the Mancala mini-game for Far Cry, it requires 2 players.
------------------------------------------------------------------------------------------------------------------------
<!-- Debug Patch Notes 6/12/2020 v1.11:
Patch Completed by Nagato & QA.
======================================
🎥 Screenlinks/Image Fixes/Audio Fixes/Atmosphere Fixes/General Scene Fixes:
• Cutteridge Estate Personal Space: Atmosophere Fix. - Dedsec
• Cogs Sky Platform: Atmosophere Fix. - Dedsec
• Sodium 2 Project Velocity: Atmosophere Fix. - Dedsec
• Sodium Hub 1.3.2.16.BETA1: Atmosophere Fix. - Dedsec
• SCEA Central Plaza Dead Island Edition: Atmosophere Fix. - Dedsec
• SCEE East Mall: Atmosophere Fix. - Dedsec
• SCEE West Mall: Atmosophere Fix. - Dedsec
• F.U.B.A.R. Apartment: Atmosophere Fix. - Dedsec
• IREM Market SCEJ: Atmosophere Fix. - Dedsec
• PlayStation Network Mini's Lounge: Atmosophere Fix. - Dedsec
• The Dream Yacht Arctic Voyage: Atmosophere Fix. - Dedsec
• Loco Roco Mui Mui Island: Atmosophere Fix. - Dedsec
• Tuscan Villa Apartment: Atmosophere Fix. - Dedsec
• Summer House: Atmosophere Fix. - Dedsec
------------------------------------------------------------------------------------------------------------------------
<!-- Debug Patch Notes 6/9/2020 v1.10:
Patch Completed by Nagato & QA.
======================================
🏘️ Spaces:
• SingStar Original 2009 HDK 1.1.0:
➤ I've delisted the newer version of SingStar due to the Jukebox not being compatible with the newer version of the space. Before installing this patch please refer to the "READ ME BEFORE INSTALLING PATCH For SingStar.txt" to learn on how to install the correct version of SingStar with any issues.
🏃 Locomotions/Companions:
Added 12 Locomotion Item's both for Male & Female + With Thumbnail. Credit goes to Calibre for all LMO based items.
• Animation Pack - Taisho-era Student Movement
• DOMO
• Fairy Wings - Glitter Cloud (Animated)
• Fairy Wings - Glitter Cloud (Animated)
• GST - Attitude Dance Pack (Female)
• Holiday JuggerBot
• LMO-Devil Wing (Flying mode)
• Locomotion - Inline Skates (Red)
• Pet Tiger Companion
• Raven Companion
:space_invader: Mini-Games/Interactive Items:
• SingStar Jukebox MiniGame has now been restored, *note please read the "Read Me Before Installing Patch for SingStar" before proceeding this patch since there is additonal steps you'll need to do to ensure that the Jukebox is working.*
Here is the featured music list that has been implemented in the jukebox:
➤ atomsoak ft. cerol - Private Eye
➤ Daft Punk - One More Time
➤ LIL UZI VERT - BUST ME
➤ Lil Wayne - Multiple Flows with Lil Uzi Vert (Audio)
➤ MGMT - Electric Feel (Justice Remix)
➤ Modjo - Lady
➤ Mr Vegas - Pull Up
➤ Nagato's Revenge - JET XET RADIO prod. Back Alley Cat
➤ Nightcrawlers - Push The Feeling On (The Dub of Doom)
➤ PlayStation Home Music - One More Minute
➤ PlayStation Home - Chain Swing
➤ PlayStation Home - Original Theme
➤ PlayStation Home: Music - Taking Over (We're in Control)
➤ SingStar - New Soundtrack Version 2
➤ XXXTENTACION - White Girl
Credits:
- Juanma: For rebuilding the full minigame + adding custom lua scripts to add music/video's locally. + Doing the base writeup for the custom music guide.
- Nagato: For adding custom music/coverart/videos. This includes original SingStar music & also custom soundtracks. + Base writeup. & Q/A-ing.
• SingStar Dance Floor Interactive Item: This enables the light's at the bottom of the dance floor + restores the original music in SingStar.
- Nagato: For rebuilding the SingStar Dance Floor.
- Calibre: For helping me map with original UUID.
• Listen@Home Music/Video Player Restored *Beta/WIP*: The Listen@Home Music/Video player has a custom made script to load the same playlist that is connected to the SingStar title. So if you make any changes to the SingStar playlist config it will effect also the music in the Central Plaza.
- Juanma: For rebuilding/adding custom scripts for this to run.
- Nagato: QA Testing on PS3
• Uncharted 2 Mask Mayhem Minigame
- Juanma
• Uncharted 2 Scene Dynamic Effects: *Note this will cause some bugs via on RPCS3.*
- Juanma
• Uncharted 2 Leaderboard
- Juanma
• Xi Hexathlon Pack: (Hexopolis MiniGame, and 2 entrances has been mapped which is "Enter Adventure Lobby" & "Enter Maxiumum-Tilt Lobby" Note