Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Diablo 2
You last visited: Today at 00:33

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

Advertisement



suche ein script für nt 3.0/3.1 nihlathak

Discussion on suche ein script für nt 3.0/3.1 nihlathak within the Diablo 2 forum part of the Other Online Games category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2010
Posts: 419
Received Thanks: 31
suche ein script für nt 3.0/3.1 nihlathak

Hab schonmal gesucht aber nichts dazu gefunden.

Ich suche ein script das wirklich nur nihlathak umhaut und nicht noch drumherum cleaned.

gibts sowas irgendwo als download?

danke schonmal
njaguar is offline  
Old 04/10/2011, 19:18   #2
 
elite*gold: 20
Join Date: May 2009
Posts: 3,882
Received Thanks: 438
geh in dein char script da steht ganz unten ob er das areal um den boss cleanen soll

Code:
NTConfig_ClearPosition = true; // Auf true setzen, dann cleart der Bot die nahe Umgebung des Bosses.
Mecco-Pekko is offline  
Old 04/10/2011, 23:26   #3
 
elite*gold: 0
Join Date: Mar 2010
Posts: 419
Received Thanks: 31
Quote:
Originally Posted by Mecco-Pekko View Post
geh in dein char script da steht ganz unten ob er das areal um den boss cleanen soll

Code:
NTConfig_ClearPosition = true; // Auf true setzen, dann cleart der Bot die nahe Umgebung des Bosses.
habe ich auf false. er cleant trotzdem.

edit: ich nutze den bot schon lange, keine sorge. die basics kenne ich soweit. falls es was ändert, ich nutze sternenlooper 3.8

edit2: bähhh, habs. im nihlathak script gibt nihlsen 1 und 2 aber nicht 0, obwohl man es auswählen kann. einfach ersetzt mit dem original script ausm 3.0er. faillooper xD
njaguar is offline  
Old 04/11/2011, 11:06   #4
 
elite*gold: 0
Join Date: Jul 2009
Posts: 118
Received Thanks: 7
könntest du das vielleicht posten?

hab auch das problem immer gehabt und daraus resultieren halt auch mass merc rips..
maxor11 is offline  
Old 04/11/2011, 17:01   #5
 
elite*gold: 0
Join Date: Mar 2010
Posts: 419
Received Thanks: 31
Quote:
Originally Posted by maxor11 View Post
könntest du das vielleicht posten?

hab auch das problem immer gehabt und daraus resultieren halt auch mass merc rips..
hab jetzt doch lieber die von sternenlooper edited, das andere bugte auch immer mal.



einfach die aktuelle damit ersetzen. killt nur nihlathak. nihlsen = 0
njaguar is offline  
Thanks
1 User
Old 04/12/2011, 08:28   #6
 
elite*gold: 0
Join Date: Mar 2010
Posts: 47
Received Thanks: 5
@njaguar

hi,

kennst dich wohl aus mit 3.1 vanilla.

Was ich gern hätte am Nihlathak script... das der Char bevor er Nihla killt ne Tp macht und im Town Tränke kauft.(mein char verbraucht oft alle tränke aufm weg xD).

Ist das möglich ?

Wo muss ich was verändern am script?

Wäre goil wenn mir da helfen kannst.

grüsse
rd500


Code:
var _NTNihlathak_Locations = new Array(8, 4);

_NTNihlathak_Locations[0] = [12519, 5203, 12522, 5227]; // Top Left
_NTNihlathak_Locations[1] = [12704, 5019, 12692, 5022]; // Top Right
_NTNihlathak_Locations[2] = [12705, 5391, 12723, 5413]; // Bottom Right
_NTNihlathak_Locations[3] = [12889, 5206, 12898, 5228]; // Bottom Left
_NTNihlathak_Locations[4] = [12519, 5203, 12522, 5196]; // Top Left
_NTNihlathak_Locations[5] = [12704, 5019, 12692, 5413]; // Top Right
_NTNihlathak_Locations[6] = [12705, 5391, 12727, 5022]; // Bottom Right
_NTNihlathak_Locations[7] = [12889, 5206, 12898, 5192]; // Bottom Left

function NTMain()
{
	Include("libs/common/NTCommon.ntl");
	NTC_IncludeLibs();
	NTC_IncludeConfig("NTBot/char_configs");

	var _location;

	NT_LoadConfig();
	NTSI_LoadNIPFiles("NTBot/item_configs");

	NTA_Initialize();

	if(!NTTM_CheckAct())
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NTTM_CheckAct()");
		return;
	}

	NTTMGR_TownManager();

	if(!NTTM_TownMove("waypoint"))
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NTTM_TownMove()");
		return;
	}

	if(!NTM_TakeWaypoint(123))
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeWaypoint()");
		return;
	}

	NTP_DoPrecast(true);

	if(!NTM_MoveToStair(me.areaid, 124))
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveToStair()");
		return;
	}

	if(!NTM_TakeStair(124))
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeStair()");
		return;
	}

	_location = NT_FindNihlathakInt();

	if(_location == -1)
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NT_FindNihlathakInt()");
		return;
	}

	if(!NTM_MoveTo(me.areaid, _NTNihlathak_Locations[_location][2], _NTNihlathak_Locations[_location][3]))
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveTo()");
		return;
	}

	if(!NTTMGR_CheckSafe(NTConfig_CheckSelfSafe, NTConfig_CheckMercSafe))
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NTTMGR_CheckSafe()");
		return;
	}

	if(NTA_KillMonster(526))
	{
		if(NTConfig_ClearPosition)
			NTA_ClearPosition();

		NTSI_PickItems();
	}
	else if(!NTConfig_PindleskinExtension)
	{
		NTC_SendMsgToScript("NTBotGame.ntj", "NTA_KillMonster()");
		return;
	}

	if(NTConfig_PindleskinExtension)
	{
		for(var i = 0 ; i < 2 ; i++)
		{
			if(!NTM_MoveToStair(me.areaid, 123-i))
			{
				NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveToStair()");
				return;
			}

			if(!NTM_TakeStair(123-i))
			{
				NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeStair()");
				return;
			}
		}

		if(!NTM_MoveToStair(me.areaid, 121))
		{
			NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveToStair()");
			return;
		}

		if(!NTTMGR_CheckSafe(NTConfig_CheckSelfSafe, NTConfig_CheckMercSafe))
		{
			NTC_SendMsgToScript("NTBotGame.ntj", "NTTMGR_CheckSafe()");
			return;
		}

		NTP_DoPrecast(false);

		if(!NTM_TakeStair(121))
		{
			NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeStair()");
			return;
		}

		if(!NTM_MoveTo(me.areaid, 10061, 13234))
		{
			NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveTo()");
			return;
		}

		if(!NTA_KillMonster(GetLocaleString(22497)))
		{
			NTC_SendMsgToScript("NTBotGame.ntj", "NTA_KillMonster()");
			return;
		}

		if(NTConfig_ClearPosition)
			NTA_ClearPosition();

		NTSI_PickItems();
	}

	NTC_SendMsgToScript("NTBotGame.ntj", "SCRIPT_END");
}

// Internal function
function NT_FindNihlathakInt()
{
	var i, x, y;
	var _nihlathak;
	var _mindist = 999999;
	var _currdist;
	var _location = -1;

	_nihlathak = GetPresetUnits(me.areaid, NTC_UNIT_OBJECT, 462);

	if(!_nihlathak || _nihlathak.length < 1)
		return _location;

	x = _nihlathak[0].roomx*5 + _nihlathak[0].x;
	y = _nihlathak[0].roomy*5 + _nihlathak[0].y;

	for(i = 0 ; i < 8 ; i++)
	{
		_currdist = GetDistance(_NTNihlathak_Locations[i][0], _NTNihlathak_Locations[i][1], x, y);

		if(_currdist < _mindist)
		{
			_mindist = _currdist;
			_location = i;
		}
	}

	return _location;
}
rd500 is offline  
Reply


Similar Threads Similar Threads
Nihlathak Skip falls Immun oder Vipern
02/16/2012 - Diablo 2 - 24 Replies
Das müsst ihr machen, falls ihr Nihlathak auslassen wollt, wenn er kälteimmun ist: Füge Folgendes in der Common/NTAttack.ntl bei Zeile 585 ein: if(target.name == "Nihlathak" && NTA_GetResistance(target, NTA_DAMAGE_COLD) > 90) return 1; Um ihn bei Feuer/Blitz Immunität auszulassen ersetzt ihr einfach
Suche Script.
11/28/2010 - AutoIt - 0 Replies
Habs , kann geclosed werden.
[suche] d2nt level rush script 1-25 / follow script
06/23/2010 - Diablo 2 Programming - 5 Replies
moin erstmal sry falls es da doch schon was passendes zu gab - hab schonmal gesucht aber nur alte sachen gefunden oder eben antworten in richtung "geht so schnell dafür braucht man keinen bot" ^^ mein problem besteht darin dass ich für lvl 1 bis 20 immer x stunden brauche - trist geht ja noch halberwegs aber mit tombruns such ich mich immer dusselig ^^ - bzw cows sind noch schlimmer (dafür geht das cow-script für d2nt ausm bluebird zumindest halberwegs) die frage ist jetz die - giebt...
Suche Psc Script und Regi Script !
06/07/2010 - Metin2 Private Server - 0 Replies
Hallo ICh suche für meinen Root server ein Paysafecard Script und Regi Script Das Regi script nich so dringend aber Psc Dringend ! Bitte kein Spam ! Spam wir gleich #reported
NT Bot Sorcfragen zu Nihlathak
04/21/2010 - Diablo 2 - 6 Replies
hey leute, ich hab mal paar kurze fragen zu meiner Sorc und Nihlathak. Meine Sorc is lvl 92 gute resis maxblock 1k life. FB/FO skilled Meint ihr sie schafft mitm Friede der Natur Nihlathakruns? Müsste mir einen ertraden, deswegen wollte ich erstmal fragen. Desweiter wollte ich fragen ob er durch das rote Portal zu Nihlathak findet oder ob man zwingend den WP braucht. Wenn ja wie geht das einzustellen? MFG



All times are GMT +2. The time now is 00:33.


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.