TUTORIAL 1.5
Eh well... I am a bit late. It's already Sunday night. I've been working on that Virtual Reality Desktop that has customizable Oculus Touch buttons just for Void Expanse. I was able to make a Oculus Touch stabilizer for when you aim at the Virtual screen, otherwise the shakyness is terrible and you can't even double click anything... Also, I had to code a way for the program to change controls when Void Expanse is the Foreground application on the computer.
Anyway, so the tutorial part 1.5 comes with only a script (part 2 will be a video explaining the script and also making it even better because I didn't have enough time this weekend). The script is based on the Original tutorials of the Atomic Torch team for Void Expanse where you speak to an NPC and an NPC gives you a quest. In that script you will find also the way that I am coding my NPC's that have dialogue. I add a menu for "going back to the last options" and also a menu to "quit the dialogue" even though a "Goodbye" button already exists for that. I just think it is more "User Friendly" to follow what is written there on the screen and click where the NPC tells you to click.
Steps to make this work:
1. If you still have the tutorial files from part 1, use them. Otherwise, this won't work.
2. Go Inside your mod folder, then the data folder, and then create a Folder named topics.
3. Inside of that folder, create a folder named "generic_quests".
4. Inside of that folder, create a Notepad file with your right mouse button and name the file "tutorial_quest.js".
In order to do that, you also need to change the extension to .js, so if you can't see the extension of your notepad, go in your folder "view" options at the top and then click the option "file name extension" (on Windows 10). Otherwise, you can Google "how to see file extension Windows XP-Vista-7-8" and you will find tons of articles to help you out.
5. in that same folder, create a file named "tutorial_quest.xml".
6. Remove what is Inside of the xml file if there is anything and paste the following code Inside of the XML file and then save it and close it:
<?xml version="1.0" encoding="utf-8"?>
<root>
<header>
<id>tutorial_quest</id>
<title>tutorial quest</title>
<enabled>1</enabled>
</header>
<data>
<category>quests</category>
<variables>
<var>quest_system_id</var>
<var>quest_base_id</var>
</variables>
<flags>
<flag>add_on_init</flag>
</flags>
<singleplayer>1</singleplayer>
<multiplayer>1</multiplayer>
</data>
</root>
7. Then open the created "tutorial_quest.js" file and if there is anything in there, remove it, and copy and paste the following code and then save it and close it:
using(generator);
using(items);
using(npc);
using(console);
using(ship);
using(player);
using(storage);
using(game);
function OnCheckRequirements()
{
var npc_id = topic.GetCurrentNpcShipId();
if (npc.GetTag(npc_id, "class") == "TUTORIALNPC")
{
return true;
}
return false;
}
var quest_system_id = 0;
var quest_base_id = 0;
function OnDialogue(args)
{
var input = topic.GetInput();
var state = topic.GetState();
var npc_id = topic.GetCurrentNpcShipId();
if (state == 0)
{
if (input == NO_INPUT)
{
topic.AddPhrase("Hello there!");
topic.AddChoice(1, "I want to make money");
topic.AddChoice(5, "End dialogue");
}
else if (input == 1) {
topic.AddPhrase("So, you want to make money huh?");
topic.AddChoice(2, "Do you want a quest?");
topic.AddChoice(5, "End dialogue");
topic.AddChoice(NO_INPUT,"Go back to the previous page");
}
else if (input == 2)
{
topic.AddPhrase("So? What is your choice?");
topic.AddChoice(3, "Yes!");
topic.AddChoice(5, "No!");
}
else if (input == 3)
{
topic.AddPhrase("If you want to mine minerals click on the following dialog option! This is going to give you a quest.");
topic.AddChoice(4, "Tutorial Quest here! This is a mining tutorial quest where you need to buy 50 Glepsite Ores and come back with it so that I can give you rewards.");
topic.AddChoice(2, "Go back to the previous page");
topic.AddChoice(5, "If you are not interested for the moment, you can come back later. Click here to have the option to close the dialogue.");
}
else if (input == 4)
{
topic.AddPhrase("Great! That's good news! Finally, someone who wants to mine minerals. Good luck!");
var ship_id = topic.GetCurrentNpcShipId();
var sys_id = ship.GetSystemID(ship_id);
quest_system_id = sys_id;
quest_base_id = ship.GetCurrentBase(ship_id);
topic.QuestStart("tutorial_mining_quest", "go mine for rewards");
topic.QuestAddMark("tutorial_mining_quest", quest_system_id);
topic.QuestAddLocalMarkObject("tutorial_mining_quest", quest_system_id, quest_base_id);
topic.QuestAddLog("tutorial_mining_quest", "Go get a mining device and mine 50 Glepsite and go back to tutorialNPC");
topic.SetState(100);
topic.RefreshTopics();
}
else if (input == 5)
{
topic.AddPhrase("See you next time!");
topic.AddChoice(6, "Click here to leave the dialogue!");
}
else if (input == 6)
{
topic.DialogueBreak();
}
}
else if (state == 100)
{
if (input == NO_INPUT)
{
topic.AddChoice(1, "How do I mine asteroids?");
topic.AddChoice(2, "If you got the minerals, click here!");
topic.AddChoice(3, "End dialogue");
}
else if (input == 1)
{
topic.AddPhrase("Get a civilian mining device and then when you undock from the station, find the brown/orange dots on your map and come back to me when you have a least 50 Glepsite ore. ");
topic.AddChoice(NO_INPUT, "Go back to the previous page");
topic.AddChoice(3, "End dialogue");
}
else if (input == 2)
{
var hasCargo = ship.HasCargoAmount(PLAYER_SHIP, "ore_glepsite", 50);
if (hasCargo)
{
topic.AddPhrase("Good job! And thank you for the minerals! Here's your reward.");
ship.RemoveCargoByType(PLAYER_SHIP, "ore_glepsite", 50);
ship.AddItem(PLAYER_SHIP, "consumable_structure", 5);
topic.QuestAddLog("tutorial_mining_quest", "test");
topic.QuestSetState("tutorial_mining_quest", QuestState.Finished);
player.AddQuestRewardExperience(PLAYER, 500);
topic.SetState(200);
topic.RefreshTopics();
}
else
{
topic.AddPhrase("You don't even have the minerals?! I am a busy man. Come back when you have them and don't disturb me again for no reasons.");
topic.AddChoice(NO_INPUT, "Go back to the previous page");
topic.AddChoice(3, "End dialogue");
}
}
else if (input == 3)
{
topic.AddPhrase("See you next time!");
topic.AddChoice(4, "Click here to leave the dialogue!");
}
else if (input == 4) {
topic.DialogueBreak();
}
}
else if (state == 200)
{
if (input == NO_INPUT)
{
topic.AddPhrase("Hello there!");
topic.AddPhrase("I don't need any more minerals!");
topic.AddChoice(1, "End dialogue");
}
else if (input == 1)
{
topic.AddPhrase("See you next time!");
topic.AddChoice(2, "Click here to leave the dialogue!");
}
else if (input == 2)
{
topic.DialogueBreak();
}
}
}
8. If you've done this right, you should have the same NPC from tutorial 1 that will give you a quest to go mine 50 Glepsite Ore minerals and he will reward you when you come back with a cargo of those minerals. But he will only reward you IF you choose to finish the quest, otherwise, you can still have a dialogue with him for other stuff that you can add in the future.
9. Tutorial 2 will cover this whole part but as I said, the Virtual Desktop Application pretty much shrunk my whole weekend's free time to make tutorials and so I couldn't make a video right now, but for the community and you Willmore, I really at least wanted to share an easy script for having an NPC give a quest before the next Video tutorial.