hi,
hab das mephisto script einwenig verändert.da das geniale script von njomnjomnjom leider nicht funktioniert in dem 1.13er bot.jetzt macht er rat bei meppel , rechte und linke seite.für die etwas stärken von uns^^
Code:
function NT_Mephisto()
{
print("ÿc3Start Mephisto script");
if(!NTTM_CheckAct()){
print("meph failed on check act");
return false;
}
NTTMGR_TownManager();
if(!NTTM_TownMove("waypoint"))
return false;
if(!NTM_UsePortal("Waypoint", 101)){
print("meph failed on use portal");
return false;
}
NTP_DoPrecast();
if(!NTM_MoveToObject(NTC_UNIT_TILE, 67, 68)){
print("Meph failed on move to tile");
return false;
}
if(!NTM_TakeStairs(67, 68)){
print("Meph failed on take stairs");
return false;
}
if(NTConfig_CheckSafe)
{
if(!NTTMGR_CheckSafe(2)){
print("Meph failed on safe check");
return false;
}
}
if(!NTM_MoveTo(17640, 8069, 17640, 8069))
return false;
if(NTConfig_CheckSafe)
{
if(!NTTMGR_CheckSafe(2))
return false;
}
if(!NTM_MoveTo(17600, 8130, 17600, 8130))
return false;
if(NTConfig_CheckSafe)
{
if(!NTTMGR_CheckSafe(2))
return false;
}
if(!NTM_MoveTo(17600, 8008, 17600, 8008))
return false;
if(NTConfig_CheckSafe)
{
if(!NTTMGR_CheckSafe(2))
return false;
}
if(!NTM_MoveTo(17564, 8069))
return false;
NTM_MoveTo(17573, 8071);
if(!NTA_KillBoss("Mephisto"))
return false;
if(NTConfig_ClearPosition)
NTA_ClearPosition();
NTSI_PickItems();
if(NTConfig_OpenChest)
{
var _chest;
if(NTM_MoveTo(17520, 8063))
{
if(NTA_ClearPosition(30))
NTSI_PickItems();
}
_chest = NTC_GetUnit(NTC_UNIT_OBJECT, "chest");
if(_chest)
{
do
{
if(_chest.x == 17513 && _chest.y == 8063)
{
if(NTM_MoveTo(_chest.x+2, _chest.y))
{
if(NTC_OpenChest(copyUnit(_chest)))
NTSI_PickItems();
}
break;
}
} while(_chest.getNext());
}
}
return true;
}
Hab das andariel script wieder einwenig geändert. er cleant jetzt wenn er andariel getötet hat den ganzen thron.
Code:
function NT_Andariel()
{
var _tileid = [18,18];
if(NTConfig_PublicMode)
say("Andariel Now");
if(!NTTM_CheckAct())
return false;
NTTMGR_TownManager();
if(!NTTM_TownMove("waypoint")){
print("Andy failed on move to waypoint");
return false;
}
if(!NTM_UsePortal("Waypoint", 35)){
print("Andy failed on use portal");
return false;
}
NTP_DoPrecast();
for(var i = 0 ; i < _tileid.length ; i++)
{
if(!NTM_MoveToObject(NTC_UNIT_TILE, _tileid[i])){
print("andy failed on move to object i"+i);
return false;
}
if(!NTM_TakeStairs(_tileid[i], _tileid[i])){
print("andy failed on take tile i"+i);
return false;
}
}
if(NTConfig_CheckSafe)
{
if(!NTTMGR_CheckSafe(2)){
print("andy failed safe check2");
return false;
}
}
if(!NTM_MoveTo(22570, 9584, 22570, 9584))
return false;
if(NTConfig_CheckSafe)
{
if(!NTTMGR_CheckSafe(2))
return false;
}
if(!NTM_MoveTo(22540, 9584))
return false
if(!NTA_KillBoss("Andariel"))
return false;
if(NTConfig_ClearPosition)
NTA_ClearPosition();;
NTSI_PickItems();
if(!NTA_ClearRooms())
return false;
NTSI_PickItems();
return true;
}
MFG