تخطى الى المحتوى
أعمال الشغب

أعمال الشغب

  • بيت
  • أخبار
  • خطوط إرشاد
  • أدلة الفيديو
  • ملاحظات التصحيح
  • بلغ عن سوء معاملة
  • تبديل شكل البحث
Skater XL

Skater XL – Advanced Player Customization Guide

نشر على 08/14/2021 بواسطة 404UNF 1 تعليق على Skater XL – Advanced Player Customization Guide
  • عنوان: Skater XL
  • تاريخ الافراج عنه:
  • المطور:
  • الناشر:
Information about Skater XL is still incomplete. الرجاء مساعدتنا في ملء تفاصيل اللعبة باستخدام هذا نموذج الاتصال.

This is a guide to modifying your skater’s appearance via JSON file editing for Skater XL.

ابدء

In order to do these customizations, you will need to edit the .json files. To locate the files, open a folder and go to:

ج:\Users\<your PC username>\AppData\LocalLow\Easy Day Studios\SkaterXL\Players

Be sure to replace <your PC username> with your username on your PC.

The first thing you’ll need to do is make sure you’ve generated the JSON files. للقيام بذلك, while in the game, select each playable skater from the menu. Check the folder while doing so to ensure you have .json files. You should end up with:

  • Customization_brandonwestgate.json
  • Customization_evansmith.json
  • Customization_female.json
  • Customization_male.json
  • Customization_tiagolemos.json
  • Customization_tomasta.json

Clothing/Hair Customizations

Within any character JSON file will be 3 main sections:

  • "clothingGear"
  • "boardGear"
  • "body"

This guide will be focusing on “clothingGear” و “boardGear” as there isn’t much that can be done with “body”. We’ll start off in “clothingGear”.

The simplest thing you can do is remove clothing layers. Stored within “clothingGear” is the code for your skater’s hair or hat, shirt, pants, and shoes. A typical “clothingGear” entry would look something like this:

"clothingGear": [
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "CharacterCustomization/Hair/MHairAfroLong_Long_Afro_Black"
        }
      ],
      "iconPath": null,
      "يكتب": "mhairafrolong",
      "اسم": "Long Afro Black",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MHoodie/MHoodie_411_Logo_Hoody_White"
        },
        {
          "textureID": "rgmtao",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MHoodie/MHoodie_411_Logo_Hoody...RgMtAo"
        }
      ],
      "iconPath": null,
      "يكتب": "mhoodie",
      "اسم": "411 Logo Hoody White",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MPants/MPants_Blank_Chino_Dark_Blue"
        }
      ],
      "iconPath": null,
      "يكتب": "mpants",
      "اسم": "Blank Chino Dark Blue",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MShoes/MShoes/MShoes_Unbranded_Black"
        },
        {
          "textureID": "طبيعي",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MShoes/MShoes/MShoes_Unbranded...Normal"
        }
      ],
      "iconPath": null,
      "يكتب": "mshoes",
      "اسم": "Unbranded Black",
      "isCustom": خطأ شنيع,
      "العلامات": []
    }
  ],

By removing an entire item entry from this code, we can remove that particular item. Take the above code, let’s say we want to remove the hair entirely for the buzzed head look. بسيط;

 "clothingGear": [
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MHoodie/MHoodie_411_Logo_Hoody_White"
        },
        {
          "textureID": "rgmtao",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MHoodie/MHoodie_411_Logo_Hoody...RgMtAo"
        }
      ],
      "iconPath": null,
      "يكتب": "mhoodie",
      "اسم": "411 Logo Hoody White",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MPants/MPants_Blank_Chino_Dark_Blue"
        }
      ],
      "iconPath": null,
      "يكتب": "mpants",
      "اسم": "Blank Chino Dark Blue",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MShoes/MShoes/MShoes_Unbranded_Black"
        },
        {
          "textureID": "طبيعي",
          "texturePath": "CharacterCustomization/Clothings/Default Male/MShoes/MShoes/MShoes_Unbranded...Normal"
        }
      ],
      "iconPath": null,
      "يكتب": "mshoes",
      "اسم": "Unbranded Black",
      "isCustom": خطأ شنيع,
      "العلامات": []
    }
  ],

What was removed was the following:

{
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "CharacterCustomization/Hair/MHairAfroLong_Long_Afro_Black"
        }
      ],
      "iconPath": null,
      "يكتب": "mhairafrolong",
      "اسم": "Long Afro Black",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },

All this code = your hair. Neat huh?

So let’s say we want to remove everything. Our hair, shirt, pants, and shoes. By removing everything in the “clothingGear” قسم, like so…

  "clothingGear": [
  ],

…we get the following for any of the 6 currently available skaters:

Following this same principle, we can also have some fun with skater’s hairstyles. على سبيل المثال, we can give the female base skater a men’s hairstyle;

Or we can give a male skater a female hairstyle, although this doesn’t work out very nicely for some reason. The hair somewhat clips into the male’s head;

We can also give the named skaters who can’t normally have hair added, some hair, or even a hat! على سبيل المثال, here’s Tiago Lemos with blonde dreads;

Deck Customizations

There are a few things you can do with your deck:

  • “Hoverboard” mode
  • “Rollerskates” mode
  • Plain white grip tape
  • Bright pink grip tape (need to do plain white first)

مرة أخرى, following the above clothing and hair customization tips, we can have some fun with our decks. Your normal “boardGear” section would look something like this:

"boardGear": [
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "BoardCustomization/Deck_Skater_XL_Obstacles_Deck"
        }
      ],
      "iconPath": null,
      "يكتب": "deck",
      "اسم": "Skater XL Obstacles Deck",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },
    {
      "textureChanges": [
        {
          "textureID": "albedo",
          "texturePath": "BoardCustomization/GripTape_Easy_Day_Logo"
        }
      ],
      "iconPath": null,
      "يكتب": "griptape",
      "اسم": "Easy Day Logo",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },
    {
      "textureChanges": [
        {
          "textureID": "طبيعي",
          "texturePath": "BoardCustomization/Trucks/TrucksIndependent_Independent_Silver%2FRed%2FCross.Normal"
        },
        {
          "textureID": "albedo",
          "texturePath": "BoardCustomization/Trucks/TrucksIndependent_Independent_Silver%2FRed%2FCross"
        },
        {
          "textureID": "rgmtao",
          "texturePath": "BoardCustomization/Trucks/TrucksIndependent_Independent_Silver%2FRed%2FCross.RgMtAo"
        }
      ],
      "iconPath": null,
      "يكتب": "trucksindependent",
      "اسم": "Independent Silver/Red/Cross",
      "isCustom": خطأ شنيع,
      "العلامات": []
    },
 ],

So by removing the “textureChanges” sections for your trucks and wheels, you can do hoverboard mode;

أو, by removing the grip tape and deck, you can do rollerblade mode;

أو, by removing just the grip tape, but leaving the deck, you can get this plain white grip tape;

And for a secondary fun trick, once you have the plain white grip tape, go to your skater’s customization for the grip tape but don’t select a grip tape. بدلاً من, once you’ve previewed a grip, back out. You’ll notice your grip tape is now pink, like so;

I am not sure if the plain white or pink grip is visible to other players (يحب, which do they see when it goes pink? Or do they just see pink all the time?

And obviously, if you remove the trucks, grip, deck, and wheels, you’ll have no board;

تحذير: If you set up no wheels or trucks on one skater, be warned that switching to that skater from another skater that does have wheels or trucks will cause your wheelless/truckless skater’s board to regain wheels and trucks. It helps to modify all 6 JSON files to the same thing for wheels and trucks to prevent accidental regaining of wheels and trucks.

Things That Do Not Work

  • Trying to set your male/female standard skater’s body skin color and head skin color to two different things does not work. I tried setting the head to dark and the body to light for the female and when I loaded in-game, she was fully dark. نعم, the body and head skin colors are stored separately in the JSON.
  • Trying to glitch the textures of your skater’s body by swapping in the texture line from a hairstyle or something does not work. The game is pretty decent at detecting improper things being set and fixing it, aside from the whole “being able to fully remove your hair, clothes, shoes, and even deck” thing. You may notice sometimes that your skater will switch to the default outfit. This is the game’s issue detection kicking in.
  • Trying to set one skater’s head onto another skater’s body does not work.

هذا كل ما نشاركه اليوم من أجل هذا Skater XL مرشد. تم إنشاء هذا الدليل وكتابته في الأصل بواسطة 404UNF. في حالة فشلنا في تحديث هذا الدليل, يمكنك العثور على آخر تحديث باتباع هذا وصلة.

إذا كنت تعتقد أن أيًا من محتويات هذا الموقع ينتهك حقوقك, بما في ذلك حقوق الملكية الفكرية الخاصة بك, يرجى الاتصال بنا على الفور باستخدام نموذج الاتصال الخاص بنا.
خطوط إرشاد العلامات:Skater XL

آخر الملاحة

المنشور السابق: Rimworld – دليل ونصائح العبيد والعبودية
المشاركة التالية: Panzer Knights – Beginner’s Guide and Review

تعليق (1) on “Skater XL – Advanced Player Customization Guide”

  1. Roope :) يقول:
    06/21/2022 في 6:05 مساءً

    how do i code the body like skin and that?

    رد

ترك الرد إلغاء الرد

لن يتم نشر عنوان بريدك الإلكتروني. تم وضع علامة على الحقول المطلوبة *

  • عنوان: Skater XL
  • تاريخ الافراج عنه:
  • المطور:
  • الناشر:
Information about Skater XL is still incomplete. الرجاء مساعدتنا في ملء تفاصيل اللعبة باستخدام هذا نموذج الاتصال.

تنصل

ويستمد كل محتوى استشهد من مصادرها الخاصة. إذا كنت تعتقد أننا استخدمنا المحتوى الخاص بك دون إذن, تأكد من الوصول إلينا وسنأخذ الأمر على محمل الجد.
  • معلومات عنا
  • اتصل بنا
  • سياسة الخصوصية
  • شروط الخدمة

حقوق النشر © 2025 أعمال الشغب.

مشغل بواسطة PressBook News وورد موضوع