Probably just the earth ring and speed
look good to you?
also are you talking about cavern suvival cuz the items you suggested look good for cavern survival
and lightning stick is pretty bad for dueling grounds
Naw it’s good for both, maybe change gloves into workers gloves as wizard don’t do close distance
Then use the vine staff, remember to sacrifice your burls
new upgraded nalfar cryptor
change caltrops into beartrap belt or leather, as it costs gold and in dueling grounds there’s not a lot of enemies. then your good to go
(post deleted by author)
ok so i have a problem
i am basically invincible but i have no ways to attack all i can do is use my wand and it barely does damage
That’s why you have to sacrifice as Nalfar
and what should i do with my gold?
this is dueling grounds not cavern survival
summon a paladin and make it a meat shield. also sacrifice increases your damage so why not doing that?
another strategy I used is to get invis ring, build decoys and use the unholy tome to drain life of opponents.
heres my code lol
while(true) {
var friend = hero.findNearest(hero.findFriends());
var enemy = hero.findNearestEnemy();
if (hero.canCast(“summon-burl”)) {
hero.cast(“summon-burl”);
}
if (friend && hero.canCast(“sacrifice”, friend) && friend.type != “fake-peasant” && friend.type != “paladin”) {
hero.cast(“sacrifice”, friend, hero);
}
if (hero.canCast(“regen”, hero)) {
hero.cast(“regen”, hero);
}
if (hero.gold > hero.costOf(“paladin”)) {
hero.summon(“paladin”);
}
if (friend && friend.type == “paladin”) {
hero.command(friend, “shield”);
}
if (hero.canCast(“grow”, hero)) {
hero.cast(“grow”, hero);
}
if (hero.canCast(“time-warp”, hero)) {
hero.cast(“time-warp”, hero);
}
if (hero.canCast(“time-travel”, hero)) {
hero.cast(“time-travel”, hero);
}
if (enemy && hero.canCast(“shrink”, enemy)) {
hero.cast(“shrink”, enemy);
}
if (hero.canCast(“earthskin”, hero)) {
hero.cast(“earthskin”, hero);
}
if (pet.isReady(“shape-shift”)) {
pet.shapeShift();
}
if (enemy) {
hero.attack(enemy);
}
}
its javascript by the way
you should let your paladin cast heal on you
oh how i cant get it to do that because i dont know if it is friend.isReady(heal) or friend.canCast(heal)
if paladin.canCast("heal"):
hero.command(paladin, "cast", "heal", hero)