Register for your free account! | Forgot your password?

You last visited: Today at 18:35

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



need mule script help

Discussion on need mule script help within the Diablo 2 Programming forum part of the Diablo 2 category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2009
Posts: 50
Received Thanks: 3
Exclamation need mule script help

hi ich brauche hilfe zum mulescript, ich habe schon 2 mule reingetan und die mulen jetzt, würde aber gerne char 3 und 4 auch so einstellen dass sie automule machen, aber das unterste hier check ich nicht wie einstellen und die oberen 2 sind eben schon belegt^^
(also das grüne und blaue habe ich eingestellt und die 2 chars mulen, das rote check ich nicht wie einstellen)
würde echt gerne wüssen ob das geht das ich 4 mule acc habe die alle so funktionieren wie beim grünen abschnitt? also dass da ein ganzer mule acc mit 8 chars verwendet wird?
danke für die hilfe im voraus

/**
* This file was written by
* Check the programming section for updates and further scripts
* Last Update: 15:45 20.08.2011
*/

function NT_LoadMuleConfig()
{
var _newMule;

Automule.MuleIsFullThreshold = 0.90;

switch(me.account.toLowerCase())
{
//------------------------------------------------------------------------------
// Full account sample - Copy the below case if you'd like to assign a full mule account to your bot char.
// Note: you have to create both the account and the mules yourself before using them for auto mule.
//
case "your_bot's_lower_case_account_name_goes_here" : // <-- Enter your bot's account name here. (lower case only!)
Automule.GameName = "SomeGameName"; // Enter the name of your mule game here. Note: don't use the same game for multiple bot chars.
Automule.GameNamePassword = "SomePassword"; // Enter the password of your mule game here.

for(var i = 0; i < 8; i++)
{
_newMule = new Mule(); // Create a new mule object. (no need to change anything here)
_newMule.Account = "YourMuleAccNameGoesHere"; // Enter the name of your mule account here.
_newMule.Password = "YourMulePWGoesHere"; // Enter the password for your mule account here.
_newMule.NipFiles.push("mule/all.nip"); // Enter any number of mule paths here.
_newMule.CharLoc = i; // Enter the the mule's location here. Check the FAQ if you don't know what this is about.
Automule.Mules.push(_newMule); // Add the mule you just created. (no need to change anything here)
}

break;
//
//
//------------------------------------------------------------------------------

//------------------------------------------------------------------------------
// Single mule sample - Copy the below case if you'd like to assign single mules (even from different accounts) to your bot char.
// Note: you have to create both the account and the mules yourself before using them for auto mule.
//
case "your_bot's_lower_case_account_name_goes_here" : // <-- Enter your bot's account name here. (lower case only!)
Automule.GameName = "SomeGameNameI"; // Enter the name of your mule game here. Note: don't use the same game for multiple bot chars.
Automule.GameNamePassword = "SomePasswordI"; // Enter the password of your mule game here.

_newMule = new Mule(); // Create a new mule object. (no need to change anything here)
_newMule.Account = "YourMuleAccNameGoesHere"; // Enter the name of your mule account here.
_newMule.Password = "YourMuloePWGoesHere"; // Enter the password for your mule account here.
_newMule.NipFiles.push("mule/all.nip"); // Enter any number of mule paths here.
_newMule.CharLoc = 0; // Enter the the mule's location here. Check the FAQ if you don't know what this is about.
Automule.Mules.push(_newMule); // Add the mule you just created. (no need to change anything here)

_newMule = new Mule(); // Create a new mule object. (no need to change anything here)
_newMule.Account = "YourOtherMuleAccNameGoesHere"; // Enter the name of your mule account here.
_newMule.Password = "YourOtherMulePWGoesHere"; // Enter the password for your mule account here.
_newMule.NipFiles.push("mule/all.nip"); // Enter any number of mule paths here.
_newMule.CharLoc = 1; // Enter the the mule's location here. Check the FAQ if you don't know what this is about.
Automule.Mules.push(_newMule); // Add the mule you just created. (no need to change anything here)

break;
//
//

//------------------------------------------------------------------------------
}
}

// INTERNAL FUNCTIONS
function Mule(acc, pw, loc, nips)
{
this.Account = acc;
this.Password = pw;
this.NipFiles = (!nips || typeof nips != "array") ? new Array() : nips;
this.CharLoc = loc;
this.Load;
}
piusbruder is offline  
Old 12/12/2011, 01:16   #2
 
elite*gold: 0
Join Date: Oct 2011
Posts: 121
Received Thanks: 126
Bitte als Code posten. Erleichtert die Lesbarkeit extrem.

Ja geht. Du musst nur den grünen Teil ändern. Für jeden Mule Account machst Du einfach eine diese for(var... Schleife neu.

Der Unterschied zwischen Deinem Grün und Blau ist, dass bei Grün ALLE 8 Chars des Accounts benutzt werden und bei dem Blauen Du den jeweiligen Char einzeln angbist.

Beispiel (grün):
Code:
		case "your_bot's_lower_case_account_name_goes_here": 	// <-- Enter your bot's account name here. (lower case only!)
			Automule.GameName = "SomeGameName"; 				// Enter the name of your mule game here. Note: don't use the same game for multiple bot chars.
			Automule.GameNamePassword = "SomePassword";			// Enter the password of your mule game here.
			
			for(var i = 0; i < 8; i++)
			{
				_newMule = new Mule(); 							// Create a new mule object. (no need to change anything here)
				_newMule.Account = "MuleAcc1"; 	// Enter the name of your mule account here.
				_newMule.Password = "MuleAcc1PW"; 		// Enter the password for your mule account here.
				_newMule.NipFiles.push("mule/all.nip"); 		// Enter any number of mule paths here.
				_newMule.CharLoc = 0; 							// Enter the the mule's location here. Check the FAQ if you don't know what this is about.
				Automule.Mules.push(_newMule);					// Add the mule you just created. (no need to change anything here)
			}
			
			for(var i = 0; i < 8; i++)
			{
				_newMule = new Mule(); 							// Create a new mule object. (no need to change anything here)
				_newMule.Account = "MuleAcc2"; 	// Enter the name of your mule account here.
				_newMule.Password = "MuleAcc2PW"; 		// Enter the password for your mule account here.
				_newMule.NipFiles.push("mule/all.nip"); 		// Enter any number of mule paths here.
				_newMule.CharLoc = 0; 							// Enter the the mule's location here. Check the FAQ if you don't know what this is about.
				Automule.Mules.push(_newMule);					// Add the mule you just created. (no need to change anything here)
			}
			
			for(var i = 0; i < 8; i++)
			{
				_newMule = new Mule(); 							// Create a new mule object. (no need to change anything here)
				_newMule.Account = "MuleAcc3"; 	// Enter the name of your mule account here.
				_newMule.Password = "MuleAcc3PW"; 		// Enter the password for your mule account here.
				_newMule.NipFiles.push("mule/all.nip"); 		// Enter any number of mule paths here.
				_newMule.CharLoc = 0; 							// Enter the the mule's location here. Check the FAQ if you don't know what this is about.
				Automule.Mules.push(_newMule);					// Add the mule you just created. (no need to change anything here)
			}
			
			for(var i = 0; i < 8; i++)
			{
				_newMule = new Mule(); 							// Create a new mule object. (no need to change anything here)
				_newMule.Account = "MuleAcc4"; 	// Enter the name of your mule account here.
				_newMule.Password = "MuleAcc4PW"; 		// Enter the password for your mule account here.
				_newMule.NipFiles.push("mule/all.nip"); 		// Enter any number of mule paths here.
				_newMule.CharLoc = 0; 							// Enter the the mule's location here. Check the FAQ if you don't know what this is about.
				Automule.Mules.push(_newMule);					// Add the mule you just created. (no need to change anything here)
			}
			
			break;
Ciao
Sun
-Sun- is offline  
Thanks
4 Users
Old 12/12/2011, 02:15   #3
 
elite*gold: 0
Join Date: Dec 2009
Posts: 50
Received Thanks: 3
Quote:
Originally Posted by -Sun- View Post
Bitte als Code posten. Erleichtert die Lesbarkeit extrem.

Ja geht. Du musst nur den grünen Teil ändern. Für jeden Mule Account machst Du einfach eine diese for(var... Schleife neu.

Der Unterschied zwischen Deinem Grün und Blau ist, dass bei Grün ALLE 8 Chars des Accounts benutzt werden und bei dem Blauen Du den jeweiligen Char einzeln angbist.

Beispiel (grün):
Code:
		case "your_bot's_lower_case_account_name_goes_here": 	// <-- Enter your bot's account name here. (lower case only!)
			Automule.GameName = "SomeGameName"; 				// Enter the name of your mule game here. Note: don't use the same game for multiple bot chars.
			Automule.GameNamePassword = "SomePassword";			// Enter the password of your mule game here.
			
			for(var i = 0; i < 8; i++)
			{
				_newMule = new Mule(); 							// Create a new mule object. (no need to change anything here)
				_newMule.Account = "MuleAcc1"; 	// Enter the name of your mule account here.
				_newMule.Password = "MuleAcc1PW"; 		// Enter the password for your mule account here.
				_newMule.NipFiles.push("mule/all.nip"); 		// Enter any number of mule paths here.
				_newMule.CharLoc = 0; 							// Enter the the mule's location here. Check the FAQ if you don't know what this is about.
				Automule.Mules.push(_newMule);					// Add the mule you just created. (no need to change anything here)
			}
			
			for(var i = 0; i < 8; i++)
			{
				_newMule = new Mule(); 							// Create a new mule object. (no need to change anything here)
				_newMule.Account = "MuleAcc2"; 	// Enter the name of your mule account here.
				_newMule.Password = "MuleAcc2PW"; 		// Enter the password for your mule account here.
				_newMule.NipFiles.push("mule/all.nip"); 		// Enter any number of mule paths here.
				_newMule.CharLoc = 0; 							// Enter the the mule's location here. Check the FAQ if you don't know what this is about.
				Automule.Mules.push(_newMule);					// Add the mule you just created. (no need to change anything here)
			}
			
			for(var i = 0; i < 8; i++)
			{
				_newMule = new Mule(); 							// Create a new mule object. (no need to change anything here)
				_newMule.Account = "MuleAcc3"; 	// Enter the name of your mule account here.
				_newMule.Password = "MuleAcc3PW"; 		// Enter the password for your mule account here.
				_newMule.NipFiles.push("mule/all.nip"); 		// Enter any number of mule paths here.
				_newMule.CharLoc = 0; 							// Enter the the mule's location here. Check the FAQ if you don't know what this is about.
				Automule.Mules.push(_newMule);					// Add the mule you just created. (no need to change anything here)
			}
			
			for(var i = 0; i < 8; i++)
			{
				_newMule = new Mule(); 							// Create a new mule object. (no need to change anything here)
				_newMule.Account = "MuleAcc4"; 	// Enter the name of your mule account here.
				_newMule.Password = "MuleAcc4PW"; 		// Enter the password for your mule account here.
				_newMule.NipFiles.push("mule/all.nip"); 		// Enter any number of mule paths here.
				_newMule.CharLoc = 0; 							// Enter the the mule's location here. Check the FAQ if you don't know what this is about.
				Automule.Mules.push(_newMule);					// Add the mule you just created. (no need to change anything here)
			}
			
			break;
Ciao
Sun
Ja geht. Du musst nur den grünen Teil ändern. Für jeden Mule Account machst Du einfach eine diese for(var... Schleife neu.
sorry habs nicht verstanden^^
kannste mir ein beispiel geben wie das aussehen soll zum bsp. wenn 2 acc jetzt so am nutzen dass sie einen ganzen acc nehmen zum mulen?
piusbruder is offline  
Old 12/12/2011, 07:38   #4
 
elite*gold: 0
Join Date: Aug 2009
Posts: 435
Received Thanks: 159
und die ganze Frage gehört immernoch in das Thema wo du den Bot herhast!
Wie oft willst du eigentlich noch neue Themen erstellen???

Hast du jetzt 2 bots die auf 2 verschiedene Mulis mulen sollen, oder einen bot-char, der auf 4 Mulis mulen soll?

Und der Thanks-Button ist auch nicht umsonst da...
DeathFromHeaven is offline  
Thanks
2 Users
Old 12/12/2011, 08:36   #5
 
elite*gold: 0
Join Date: Oct 2011
Posts: 121
Received Thanks: 126
Auch noch direkt nach seinem letzten Post hier, per PN angeschrieben. Und es scheint nicht so, dass er sich wirklich Mühe gibt das zu verstehen was man ihm schreibt.

#closerequest
-Sun- is offline  
Thanks
2 Users
Old 12/12/2011, 08:52   #6
Administrator
 
Muddy Waters's Avatar
 
elite*gold: 41364
Join Date: Jan 2010
Posts: 22,729
Received Thanks: 12,625
Hier ist dann mal zu. So langsam erreichst du übrigens auch die Grenzen meiner Geduld und kannst davon ausgehen, dass du zukünftige Erinnerungen, doch bitte im richtigen Thema zu posten, dann in Form von Warnungen bekommst.

#closed
Muddy Waters is offline  
Closed Thread


Similar Threads Similar Threads
Mule-Script für den D2NT BlueBird-Bot
10/08/2010 - Diablo 2 - 6 Replies
Hallo , da ich in dem Zusammenhang nichts im Bot selber sowie hier im Forum via Suchfunktion gefunden habe hoffe ich mal , dass mir jemand direkt weiterhelfen kann : Wie der Threadname schon sagt suche ich ein Script , dass gefundene Items automatisch auf einen anderen Charakter muled. Gibt es bereits ein Script in dieser Richtung oder eine andere Möglichkeit den Mule-Prozess automatisch abzuwicklen ? Danke im Vorraus :) Mfg
brauch mal nen mule
08/09/2010 - Diablo 2 - 8 Replies
so ich such schnell nen trustet mule für paar minuten :)
Mule Manager
05/07/2010 - Diablo 2 - 1 Replies
Ein, wie ich finde, für uns Botter ein sehr nützliches Programm. Ich habe die SuFu hier im Forum benutzt, aber nichts dergleichen gefunden. Ich fände ein solches Programm schon ziemlich nützlich. Ihr kennt das Durcheinander in euren Mule ja :D Hier ist der Link zu originalen Topic -> Click Nur leider scheint dieses Prgramm nicht mehr all zu aktuell zu sein. Ich bin mir auch nicht sicher, wie es funktioniert und ob dieses Programm "Safe" ist.
[Request] Mule Script auf NT Basis
02/22/2010 - Diablo 2 Programming - 8 Replies
Hallo liebe Coder und Scripter, ich bin auf der Suche nach einem Mule Script auf NT Basis, da ich mich leider selbst nicht so gut auskenne wende ich mich hiermit an euch. Sehr geil wäre ein Script wo man den Bot gar nicht zu unterbrechen braucht, sprich wenn Char xx voll ist mult er Items auf Char yy. Alternativ auch ein Skript das man selber startet und der Bot dann alle Sc's auf den Char MuleScs, alle Gc's auf den Char MuleGcs usw mult, ich hoffe ihr versteht was ich meine Und hoffe sowas...
Mule Verwaltungsprogramm
07/14/2009 - Diablo 2 - 0 Replies
Moin wie die meisten ja bereits wissen *g* spiele ich nach langer pause nun wieder d2, und ich erinner mich an ein mule program das die daten automatisch eingelesen hat wenn man mit dem mauszeiger drüber gefahren ist. Gibts sowas noch als halbwegs safe ?



All times are GMT +2. The time now is 18:35.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.