Jump to content

How to change tutorial videos?


Recommended Posts

I want to change the tutorial video to another one.
"tutorials\\DIGGING", <<<< I think this part is a problem.
I'm working on a mod to change tutorial videos in Visual Studio 2022, and there's no way I can change the original source of the videos I bring to my string...

I hope someone smart can help.

 

 

 

[HarmonyPatch(typeof(Game), "OnSpawn")]
public class Game_OnSpawn_Patch
{    public static void Postfix()
    {       

        Message message_mod_Cooling_and_Overheating = null;
        message_mod_Cooling_and_Overheating = new TutorialMessage(TutorialMessages.TM_Basics + 99001,                         
            "Title", //title
            "body text", //body
            "tooltip text", //tooltip
            "tutorials\\Digging",
            null,
            "Video Title Text", // video title text
            "icon_action_dig");

        Messenger.Instance.QueueMessage(message_mod_Cooling_and_Overheating);                    

    }}

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...