1- using System ;
1+ using RBot . Options ;
22using System . Collections . Generic ;
3- using System . Linq ;
4- using System . Text ;
5- using System . Threading . Tasks ;
63using System . Windows . Forms ;
74
8- using RBot . Options ;
9-
105namespace RBot
116{
127 public static class AppRuntime
@@ -24,13 +19,15 @@ public static void Init()
2419 new Option < int > ( "proxy.port" , "Proxy Port" , "The port that the patch proxy will bind to. Port 0 finds an available port." ) ,
2520 new Option < bool > ( "proxy.cache.disable" , "Disable Cache" , "Disables caching of network responses when using the proxy." , true ) ,
2621 new Option < bool > ( "updates.check" , "Check for Updates" , "When enabled, RBot will check for updates and notify you of new versions on launch." , true ) ,
27- new Option < bool > ( "updates.beta" , "Check for Prereleases" , "Update checks will also check for prerelease versions." , false ) ,
22+ new Option < bool > ( "updates.beta" , "Check for Prereleases" , "Update checks will also check for prerelease versions." ) ,
2823
2924 new Option < int > ( "binding.start" , "" , "" , ( int ) Keys . F10 ) ,
3025 new Option < int > ( "binding.stop" , "" , "" , ( int ) Keys . F11 ) ,
3126 new Option < int > ( "binding.toggle" , "" , "" , ( int ) Keys . F12 ) ,
3227 new Option < int > ( "binding.load" , "" , "" , ( int ) Keys . F9 ) ,
3328
29+ new Option < string > ( "client.swf" , "Client SWF" , "The SWF file to be loaded as the game client." , "spider.swf" ) ,
30+
3431 new Option < bool > ( "secret.zmana" , "" , "" , false )
3532 } ) ;
3633
0 commit comments