Could be used as just a loader, could be used for a whole lot more. No way to prove either way from the screen though.
Example of a whole lot more... Not saying Jeet was using this silly script, just playing the devils advocate here, but I don't see why he had to load D2NT to duel in the first place.
This is a small example of a PvP script for D2NT which, on a sorceress, upon locating a hostile target would automatically tele to one of 4 random coordinates 15 meters away from the hostile, attack, tele away, rinse and repeat until the hostile is dead.
Code
function NTA_KillDumbass(name)
{
var _target;
if(NTConfig_AttackSkill[1] < 1)
return false;
_target = NTC_FindUnit(NTC_UNIT_PLAYER, name);
if(!_target)
return false;
if(_target.IsAttackable())
{
var _attackcount = 0;
while(_attackcount < 600 && NTA_IsValidTarget(_target))
{
if(NTA_Attack(_target, (_attackcount%30) == 0) < 2)
break;
if(me.classid == 1 && GetDistance(me.x, me.y, _target.x, _target.y) < 10)
{
var offx = [-15, -10, 10, 15];
var offy = [-15, -10, 10, 15];
var i = Random(1, 4);
NTM_MoveTo(me.areaid, me.x+offx[i], me.y+offy[i]);
}
_attackcount++;
}
}
return (_target.hp <= 0 || _target.mode == 0 || _target.mode == 17);
}
This post was edited by mrplow on Jan 25 2016 11:02am