mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Do NOT put thread sleeps in bots. NEVER. Initialize() and Update() are called in the main thread! Also, a delay should be respected between each chat/command sendind to avoid being kicked. Putting Thread.Sleep() in bots may cause the client to be out of sync with the server or make it lose connection so again do not use them :)
20 lines
No EOL
787 B
XML
20 lines
No EOL
787 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
<StartArguments>TestBot - localhost bot:scripting:testscript.txt</StartArguments>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<PublishUrlHistory>publish\</PublishUrlHistory>
|
|
<InstallUrlHistory />
|
|
<SupportUrlHistory />
|
|
<UpdateUrlHistory />
|
|
<BootstrapperUrlHistory />
|
|
<ErrorReportUrlHistory />
|
|
<FallbackCulture>en-US</FallbackCulture>
|
|
<VerifyUploadedFiles>false</VerifyUploadedFiles>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
<StartArguments>
|
|
</StartArguments>
|
|
</PropertyGroup>
|
|
</Project> |