Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,8 @@ dist

# TernJS port file
.tern-port
levels/botnet/validation/test/obj/project.nuget.cache
levels/botnet/validation/validate_csharp/obj/Debug/net5.0/validate.assets.cache
levels/botnet/validation/test/obj/Debug/net7.0/test.AssemblyInfoInputs.cache
levels/botnet/validation/test/obj/Debug/net7.0/test.assets.cache
levels/botnet/validation/test/obj/Debug/net7.0/test.GeneratedMSBuildEditorConfig.editorconfig
levels/botnet/validation/test/obj/Debug/net7.0/test.csproj.AssemblyReference.cache
levels/botnet/validation/validate_csharp/obj/Debug/net5.0/validate.assets.cache
levels/botnet/validation/test/obj/test.csproj.nuget.dgspec.json


levels/botnet/validation/validate_csharp/bin/*
levels/botnet/validation/validate_csharp/obj/*
levels/botnet/validation/test/obj/*
2 changes: 1 addition & 1 deletion levels/botnet/level.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"flavorTextOverrides": {
"bookshelf": "There's nothing like a good book."
},
"objectives": ["install_dotnet", "what_is_dotnet", "first_Csharp_program","dates_times", "strings", "variables_and_dataTypes", "loops_pt1", "basic_operations"
"objectives": ["1_install_dotnet", "what_is_dotnet", "2_create_project","3_first_Csharp_program","4_variables_and_dataTypes", "5_boolean_expressions" , "6_basic_operations", "7_decision_statements", "8_decision_statements_pt2", "9_strings"
,"conditionals"]
}
4 changes: 2 additions & 2 deletions levels/botnet/maps/RDLab.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
{
"name":"objectiveName",
"type":"string",
"value":"first_Csharp_program"
"value":"3_first_Csharp_program"
}],
"rotation":0,
"type":"",
Expand Down Expand Up @@ -196,7 +196,7 @@
{
"name":"objectiveName",
"type":"string",
"value":"create_project"
"value":"2_create_project"
}],
"rotation":0,
"type":"",
Expand Down
113 changes: 0 additions & 113 deletions levels/botnet/maps/concept.json

This file was deleted.

10 changes: 5 additions & 5 deletions levels/botnet/maps/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@
"y":197.333333333333
},
{
"height":0,
"height":19.5,
"id":8,
"name":"exit",
"properties":[
Expand All @@ -332,11 +332,11 @@
"value":"player_entry1"
}],
"rotation":0,
"type":"",
"type":"levelChange",
"visible":true,
"width":0,
"x":174,
"y":196
"width":29,
"x":163.5,
"y":191
},
{
"gid":33,
Expand Down
4 changes: 2 additions & 2 deletions levels/botnet/maps/research_lab_entry.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
{
"name":"objectiveName",
"type":"string",
"value":"install_dotnet"
"value":"1_install_dotnet"
}],
"rotation":0,
"type":"",
Expand Down Expand Up @@ -169,7 +169,7 @@
"value":"player_entry1"
}],
"rotation":0,
"type":"exit",
"type":"levelChange",
"visible":true,
"width":7.33333333333331,
"x":470,
Expand Down
6 changes: 5 additions & 1 deletion levels/botnet/objectives/1_install_dotnet/walkthrough.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# The "Help" Tab

[![](https://i.ytimg.com/vi/LlTHXtKIb3E/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBol5Vu9JM9tje4w0GmgQElErd0MA)](https://www.youtube.com/watch?v=LlTHXtKIb3E&list=PLdo4fOcmZ0oWoazjhXQzBKMrFuArxpW80&index=3&ab_channel=dotnet)
<iframe width="560" height="315" src="https://www.youtube.com/watch?v=LlTHXtKIb3E&list=PLdo4fOcmZ0oWoazjhXQzBKMrFuArxpW80&index=3&ab_channel=dotnet" frameborder="0" allowfullscreen> </iframe>

## Need more help ?

Get support in the ![community discussions](https://github.com/Xlient/tq-CSharp/discussions/categories/mission-help) for this extension
9 changes: 7 additions & 2 deletions levels/botnet/objectives/2_create_project/walkthrough.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

# The "Help" Tab

## Creating a project with Visual Studio
![[](https://i.ytimg.com/vi/G1-Zfr9-3zs/hqdefault.jpg?sqp=-oaymwEcCOADEI4CSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBvPZMpceZTugkgx0IDu0AZ7YQWNA)](https://youtu.be/G1-Zfr9-3zs?t=136)
## Creating a console application with Visual Studio
<iframe width="560" height="315" src="https://youtu.be/8bOoiftm5wM?t=89" frameborder="0" allowfullscreen> </iframe>

## Need more help ?

Get support in the ![community discussions](https://github.com/Xlient/tq-CSharp/discussions/categories/mission-help) for this extension
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ when you ran
dotnet new console -n myapp
```

A new console application was made for you with some code to get you started. It's a simple program that prints the message "Hello World!".
A new console application was made for you with some code to get you started. It's a simple program that prints the message "Hello World!" to your console. See the Help section to learn more about the " Hello world application".
It used the <code>Console.WriteLine()</code> method to print that message.
## Your task

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@

# The "Help" Tab

<iframe width="560" height="315" src="https://youtu.be/8bOoiftm5wM" frameborder="0" allowfullscreen> </iframe>

## Need more help ?

To get some context on the program you just made check out this <a href="https://channel9.msdn.com/Series/CSharp-101/CSharp-Hello-World-Explained?term=c%23&lang-en=true"> video </a>
Get support in the ![community discussions](https://github.com/Xlient/tq-CSharp/discussions/categories/mission-help) for this extension
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# The "Help" Tab
Watch the video below for an in-depth overview of variables and data types
<iframe width="560" height="315" src="https://youtu.be/0QUgvfuKvWU" frameborder="0" allowfullscreen> </iframe>

We may remove this tab and content in the future, but in the current iteration of TwilioQuest, this is where you would put more hand-holdy content intended to guide the player through what needed to be done.
## Need more help ?

We find that what works better is linking to external resources on the web, rather than recreatign a tutorial here.
Get support in the ![community discussions](https://github.com/Xlient/tq-CSharp/discussions/categories/mission-help) for this extension
31 changes: 0 additions & 31 deletions levels/botnet/objectives/basic_operations/description.md

This file was deleted.

8 changes: 0 additions & 8 deletions levels/botnet/objectives/basic_operations/objective.json

This file was deleted.

22 changes: 0 additions & 22 deletions levels/botnet/objectives/basic_operations/validator.js

This file was deleted.

5 changes: 0 additions & 5 deletions levels/botnet/objectives/basic_operations/walkthrough.md

This file was deleted.

28 changes: 0 additions & 28 deletions levels/botnet/objectives/create_project/description.md

This file was deleted.

21 changes: 0 additions & 21 deletions levels/botnet/objectives/create_project/objective.json

This file was deleted.

62 changes: 0 additions & 62 deletions levels/botnet/objectives/create_project/validator.js

This file was deleted.

5 changes: 0 additions & 5 deletions levels/botnet/objectives/create_project/walkthrough.md

This file was deleted.

23 changes: 0 additions & 23 deletions levels/botnet/objectives/install_dotnet/description.md

This file was deleted.

15 changes: 0 additions & 15 deletions levels/botnet/objectives/install_dotnet/objective.json

This file was deleted.

19 changes: 0 additions & 19 deletions levels/botnet/objectives/install_dotnet/validator.js

This file was deleted.

5 changes: 0 additions & 5 deletions levels/botnet/objectives/install_dotnet/walkthrough.md

This file was deleted.