i need it :-(
but in the string:
if(Im_In_Normall || Im_In_Nightmare)
Nightmare is not needed, cus u can buy the greater potions in act 1.
if(Im_In_Normall)
if just important then mate
Dunno if i did good or bad but to me this seems like enough ^^
if(NTConfig_BuyAct4Pots && me.diff == 0)
{
NTTMGR_VisitJamella();
NTT_FillBelt(_npc);
}
break;this need to get a var in nt config and charconfig called NTConfig_BuyAct4Pots but i'm testing now as my other solution looked a lil better but had some flaws i had to think about. TESTING!
/EDIT
the very sad thing is i modified it and it worked, although it drops all mana/juvs at start (it wants 4x healpot columns) but it went to act4 and bought friggin miners pots!! LOL
it looks like this now
if(NTConfig_BuyAct4Pots && me.diff == 0)
{
if(me.areaid != 103)
{
NTTM_TownMove("waypoint");
NTM_TakeWaypoint(103);
}
if(_NTTMGR_BuyPots)
NTTMGR_VisitJamella();
}
else
{
return;
}placed it just over
switch(me.act)any thoughts?