[Need Help] Can't find all this, in openbullet source code
-
Someone know where can i find code all of this?
Threading system
Bots
Alive
Bad
Banned
Hits
Bad
Retries
ToCheck
CPMAlso the request method and json parse for capture
i fixed all issue on openbullet source when i import it in vs
and i see the design on xaml but i can't see where on all class bind the capture design
-
OpenBullet solution -> RuriLib project -> Runner -> RunnerViewModel
-
@Ruri said in [Need Help] Can't find all this, in openbullet source code:
OpenBullet solution -> RuriLib project -> Runner -> RunnerViewModel
Thank you so much sir
-
sir @Ruri where can i find this {runner:ProxyMode.On} that binded on your radio button, where's that actually code for runner
-
It's a property, line 154 https://github.com/openbullet/openbullet/blob/master/RuriLib/Runner/RunnerViewModel.cs
-
sir if i removed your Proxy manager and make a new button for importing a proxy, it is possible? like OpenFileDialog button but where can i connect it? cause you have many class of proxy, you have CProxy and ProxyPool so i don't know where i can add proxy txt file from OpenFileDialog to your class, i want to know directly where going the proxy to use in bots
-
if do you mind can you give me a code OpenFileDialog and direct the txt file proxy to your main class of proxy like this one
List<CProxy> = new List<CProxy>(File.ReadAllLines(filename)
just like that, I don't if the CProxy is the main class of proxy to direct it in bots
-
another question sir @Ruri it is your proxy logic is connected in config? cause ill try to erase everything and test your threading system, the wordlist is perfect and it appear in listview binded with bots, but the proxy is not appearing, then when i back the code for the needs config now the proxy is appearing in listview binded with bots, it is possible that i can appear the proxy in listview without config so i can test your threading system, i already test it with only wordlist and it seems perfectly fine but i want to appear too the proxy so i can see if they same threading but it's not appearing in listview without config
-
Hello, sorry I cannot provide you such a level of support it would take me too much time. I am coding the new update and also another thing which is taking me a long time. Try to do it yourself please and then if you really don't understand I'll help you one of the next days via chat.
-
okay sir no problem, thank you
-
sir @Ruri how about your radio button in proxymode wether is on or off, where can i find code that your proxymode.on or off is true or false? there's a code like change checked event? to know if proxymode.on is true?
-
-
thanks sir
-
sir @Ruri if the On and Off is converted in true or false, how about the Default? where's the code for that in PeoxyMode? and for the enum of BotsDisplay also where's the code of EndResultOnly?
-
I literally just told you, there is a converter that converts an enum to a bool and that is then bound to the IsChecked value of the radio button on the XAML
-
what i mean, if it's converted in bool, which mean it is only true and false am i right? but your enum has have three different value, so what's the value for the three?
Example: ProxyMode.On = true and ProxyMode.Off = false, and what about ProxyMode.Default?
-
Please look at the code, line 100 to 102
https://github.com/openbullet/openbullet/blob/master/OpenBullet/Views/Main/Runner/Runner.xaml
-
sir @Ruri can you please check this error?
[REMOVED]i tried to change your (do while code in Processing script on RunBot) into single request
but i don't know why im getting error of this in picture,
-
Do not post credentials in pictures.. Come on...
It's an error of the http proxy probably
-
sorry sir, how can i fix that? it is on code?
if (ProxyTpe == ProxyType.Http )
{
request.Proxy = HttpProxyClient.Parse(botData.Proxy.Proxy);
}