Hoppa till innehållet

Wikipedia:Projekt DotNetWikiBot Framework/GameOnBot/Byta länk

Från Wikipedia
	public static void Main()
	{
		Site site = new Site("http://sv.wikipedia.org", användare, lösenord);
		Page myPage2;
		PageList pl = new PageList(site);
		
		pl.FillFromLinksToPage("Windows");
		foreach (Page myPage in pl)
		{
			myPage.Load();
			if(myPage.GetNamespace() == 0)
			{
				myPage.text = myPage.text.Replace("[[Windows]]", "[[Microsoft Windows|Windows]]");
				myPage.Save(myPage.text, "Windows->Microsoft Windows", true);
				Thread.Sleep(30000);
			}
		}
	}