Not: Sayfayı kaydettikten sonra değişiklikleri görebilmek için tarayıcınızın önbelleğinizi temizlemeniz gerekir. Google Chrome, Firefox, Microsoft Edge ve Safari: ⇧ Shift tuşuna basılı tutun ve Yeniden Yükle araç çubuğu düğmesine tıklayın. Ayrıntılar ve diğer tarayıcılara yönelik yönergeler için Vikipedi:Önbelleğinizi atlayın sayfasını inceleyin.
importScript('User:Levent/editcount.js'); //[[User:Levent/editcount.js]]

//enfes fonksiyonlar
mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/misc.js&action=raw&ctype=text/javascript');

//yönetici fonksiyonları
mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/sysop.js&action=raw&ctype=text/javascript');


//mük-kem-mel bir atlayış
mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/top.js&action=raw&ctype=text/javascript');

//engel fonksiyonları
mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/engel.js&action=raw&ctype=text/javascript');


mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/silme.js&action=raw&ctype=text/javascript');

//kıl tüy yün fonksiyonları
mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/libs.js&action=raw&ctype=text/javascript');

//yardımcı fonksiyonlar
mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/edit.js&action=raw&ctype=text/javascript');

//sol tabloda esrarengiz işler
mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/user.js&action=raw&ctype=text/javascript');

mw.loader.load('//tr.wikipedia.org/w/index.php?title=Kullanıcı:Levent/yardımcı.js&action=raw&ctype=text/javascript');


//////////STATUS CHANGER
// Creator: Misza13
// Credits: Voyagerfan5761 for some minor improvements

$(function (){
	//Check if the config is defined
	if (typeof(statusChangerConfig) == 'undefined')
		statusChangerConfig = {};

	if (typeof(statusChangerConfig.statusList) == 'undefined')
		statusChangerConfig.statusList = [ 'in', 'busy', 'out' ];

	if (typeof(statusChangerConfig.statusPage) == 'undefined')
		statusChangerConfig.statusPage = 'User:' + mw.config.get('wgUserName') + '/Status';

	if (typeof(statusChangerConfig.statusTemplate) == 'undefined')
		statusChangerConfig.statusTemplate = 'User:' + mw.config.get('wgUserName') + '/StatusTemplate';

	//Add the links
	for (var i=0; i<statusChangerConfig.statusList.length; i++) {
		var stat = statusChangerConfig.statusList[i];
		mw.util.addPortletLink(
			"p-personal", //target tab - personal links
			mw.config.get('wgServer') + mw.config.get('wgScript') + "?title=" + statusChangerConfig.statusPage + "&action=edit&newstatus=" + stat, //link URL
			stat, //link text
			"pt-status-" + stat, //id of new button
			"I'm " + stat + "!", //hover text
			"", //???
			document.getElementById("pt-logout") //add before logout button
		);
	}

	if (location.href.indexOf("&action=edit&newstatus=") == -1) return; //Are we here to auto-edit the status?
		//Get new status
		statusRegExp = /&action=edit&newstatus=(.*)/;
		status = statusRegExp.exec(location.href)[1];
		//Modify the form
		document.getElementById('wpTextbox1').value = "{{" + statusChangerConfig.statusTemplate + "|"+status+"}}";
		document.getElementById('wpSummary').value = "Status update: " + status;
		document.getElementById('wpMinoredit').checked = true;
		//Submit it!
		document.getElementById('editform').submit();
});

statusChangerConfig = {
	statusList : [ 'Cevrimici', 'Mesgul', 'Gelecek', 'Film izliyor', 'Cevrimdisi' ],
};