forked from BrenoHenrike/Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefaultTemplate.cs
More file actions
35 lines (28 loc) · 872 Bytes
/
Copy pathDefaultTemplate.cs
File metadata and controls
35 lines (28 loc) · 872 Bytes
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
//cs_include Scripts/CoreBots.cs
//cs_include Scripts/CoreFarms.cs
//cs_include Scripts/CoreDailys.cs
//cs_include Scripts/CoreStory.cs
//cs_include Scripts/CoreAdvanced.cs
using RBot;
public class ScriptTemplate
{
public ScriptInterface Bot => ScriptInterface.Instance;
public CoreBots Core => CoreBots.Instance;
public CoreFarms Farm = new CoreFarms();
public CoreAdvanced Adv = new CoreAdvanced();
public CoreStory Story = new CoreStory();
public CoreDailys Dailys = new CoreDailys();
public void ScriptMain(ScriptInterface bot)
{
Core.SetOptions();
YourFunctionName();
Core.SetOptions(false);
}
public void YourFunctionName()
{
//if (something)
// return;
Core.AddDrop("ExampleItem1", "ExampleItem2", "ExampleItem3", "ExampleItem4");
//Your code here
}
}