Hello, I have a problem with this code. I wanted to modify something on a page using this code but it doesn't work for me. It gives me errors, any solution?, thanks for watching and sorry for my bad english.
01.FiddlerApplication.Startup(8888, true, true);02. FiddlerApplication.BeforeRequest += (SessionStateHandler)(session =>03. //connect mgame204. {05. if (session.uriContains("mGame2.swf")) 06. {07. session.fullUrl = "http://clientebb-v1.esy.es/BBKids/mGame2.swf"; //example url08. 09. }10. else11. {12. //connect bbkids13. if (!session.uriContains("BBKids.swf"))14. return;15. session.fullUrl = "http://clientebb-v1.esy.es/BBKids/Cheat4.swf"; //example url16. Console.Title = "Script - Status [Connected] <-> [BoomBang.NL]";17. Console.ForegroundColor = ConsoleColor.Green;18. Console.WriteLine("Conectado");19. 20. 21. }22. 23. });