LF sampires !

Share your guides, how-tos, FAQs, and so forth. This is not for support -- post questions in General Discussion.
User avatar
Mina_Moonlight
Posts: 166
Location: Belgium

LF sampires !

Post by Mina_Moonlight »

Looking for those sampires who are good at playing them ....

i need some help with the setup of macros .

seems i cant figure out decent once...all help welcome


thanks in advance
Image
-Mina Moonlight & Picka Starlight-

(we are not the same person btw, usualy picka using the forum)
User avatar
The Silvertiger
Posts: 4469

Re: LF sampires !

Post by The Silvertiger »

Tanya wrote:.
Never forget June 4th 1989!
Selling List & Vendor

"Screenshots will never be used as evidence but more of a reference tool for us to help in our investigations."
User avatar
Tanya
Posts: 1796

Re: LF sampires !

Post by Tanya »

Les Stroud wrote:.
Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
Hiawatha
Posts: 231

Re: LF sampires !

Post by Hiawatha »

I may not be a pro but I certainly make a fencer sampire work!!
User avatar
Tanya
Posts: 1796

Re: LF sampires !

Post by Tanya »

she needs macros something like every wisp-farmer and blood-elemental-farmer have...
but no one will share because people are greedy
Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
User avatar
Vitek-
Posts: 925

Re: LF sampires !

Post by Vitek- »

I made a macro for farming miasmas that can be used anywhere you just need to change the ID.

This def could be done better but here it is (check loop/don't auto-interrupt):

Code: Select all

if stam < 120
  cast 'Divine Fury'
  pause 1000
endif
if hits < 90
  cast 'confidence'
  pause 500
endif
@findtype! 0x30
@setalias 'miasma' 'found'
if @inrange 'miasma' 18
  virtue 'honor'
  pause 250
  target 'miasma'
  pause 100
  canceltarget
  if not buffexists 'enemyofone'
    cast 'Enemy of One'
    pause 250
  endif
  if not buffexists 'CounterAttack'
    cast 'Counter Attack'
  endif
  if not buffexists 'consecrate'
    cast 'Consecrate Weapon'
  endif
  attack 'miasma'
  if mana < 15
    cast 'lightning strike'
    pause 1250
  else
    setability 'primary' 'on'
    pause 1250
  endif
elseif 'poisoned' 'self'
  cast 'cleanse by fire' 'self'
  pause 3000
elseif weight > 480
  usetype! 0xe76
  pause 250
  targettype! 0xeed
  pause 250
endif
It will auto-send gold too. If you need any help with it let me know -- you will need the updated bufficons.xml for this to work so make sure you search the forums and get that first.

I highly recommend a slayer with HSL and HML - Katanas are ideal as that's what I wrote the macro for. You MIGHT be able to get away without HSL but I haven't tried it.
Discord: Critical#2911
fish, bass
Image
Duque and Tanya like this.
Top
User avatar
Tanya
Posts: 1796

Re: LF sampires !

Post by Tanya »

Good macro, thanks! testing it now
Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
User avatar
Tanya
Posts: 1796

Re: LF sampires !

Post by Tanya »

fixed a few bugs, maybe not bugs it's just different names in your xml

Code: Select all

if stam < 120
  cast 'Divine Fury'
  pause 1000
endif
if hits < 90
  cast 'confidence'
  pause 500
endif
@findtype! 0x30
@setalias 'miasma' 'found'
if @inrange 'miasma' 18
  virtue 'honor'
  pause 250
  target 'miasma'
  pause 100
  canceltarget
  if not buffexists 'enemy of one'
    cast 'Enemy of One'
    pause 250
  endif
  if not buffexists 'Counter Attack'
    cast 'Counter Attack'
  endif
  if not buffexists 'consecrate weapon'
    cast 'Consecrate Weapon'
  endif
  attack 'miasma'
  if mana < 15
    cast 'lightning strike'
    pause 1250
  else
    setability 'primary' 'on'
    pause 1250
  endif
elseif 'poisoned' 'self'
  cast 'cleanse by fire' 'self'
  pause 3000
elseif weight > 480
  usetype! 0xe76
  pause 250
  targettype! 0xeed
  pause 250
endif

Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
User avatar
Tanya
Posts: 1796

Re: LF sampires !

Post by Tanya »

Upgraded your macro. ;)
Now it auto follows targets, and follows them till they are dead.
It uses honor only if targets life is 100%, also added curse weapon.
(It works for a single target blood elemental in this example, and will ignore other monsters).

Code: Select all

if stam < 120
  cast 'Divine Fury'
  pause 1000
endif
if hits < 90
  cast 'confidence'
  pause 500
endif
@findtype! 0x9f
@setalias 'miasma' 'found'
if @inrange 'miasma' 18
  if hits 'miasma' == maxhits 'miasma'
    virtue 'honor'
    pause 250
    target 'miasma'
    pause 100
    canceltarget
  else target 'miasma'
  endif
  if not buffexists 'enemy of one'
    cast 'Enemy of One'
    pause 250
  endif
  if not buffexists 'Counter Attack'
    cast 'Counter Attack'
  endif
  if not buffexists 'consecrate weapon'
    cast 'Consecrate Weapon'
  endif
  if not buffexists 'Curse Weapon'
    //using curse weapon scrolls
    usetype! 0x2263 'backpack'
    pause 1200
  endif
  attack 'miasma'
  while not @inrange 'miasma' 1
    if @x 'miasma' > x 'self' and @y 'miasma' > y 'self'
      walk 'Southeast'
    elseif @x 'miasma' < x 'self' and @y 'miasma' > y 'self'
      walk 'Southwest'
    elseif @x 'miasma' > x 'self' and @y 'miasma' < y 'self'
      walk 'Northeast'
    elseif @x 'miasma' < x 'self' and @y 'miasma' < y 'self'
      walk 'Northwest'
    elseif @x 'miasma' > x 'self' and @y 'miasma' == y 'self'
      walk 'East'
    elseif @x 'miasma' < x 'self' and @y 'miasma' == y 'self'
      walk 'West'
    elseif @x 'miasma' == x 'self' and @y 'miasma' > y 'self'
      walk 'South'
    elseif @x 'miasma' == x 'self' and @y 'miasma' < y 'self'
      walk 'North'
    endif
  endwhile
  if mana < 15
    cast 'lightning strike'
    pause 1250
  else
    setability 'primary' 'on'
    pause 1250
  endif
elseif 'poisoned' 'self'
  cast 'cleanse by fire' 'self'
  pause 3000
elseif weight > 480
  usetype! 0xe76
  pause 250
  targettype! 0xeed
  pause 250
endif

Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
User avatar
Vitek-
Posts: 925

Re: LF sampires !

Post by Vitek- »

Hehe cool thanks!!
Discord: Critical#2911
fish, bass
Image
User avatar
Mina_Moonlight
Posts: 166
Location: Belgium

Re: LF sampires !

Post by Mina_Moonlight »

Just got home i will test it tomorrow ! Thanks Tanya for doing this ! Much apriciation !
Image
-Mina Moonlight & Picka Starlight-

(we are not the same person btw, usualy picka using the forum)
Tanya and The Silvertiger like this.
Top
fluffhead321
Posts: 762

Re: LF sampires !

Post by fluffhead321 »

Safe to say I can edit this and replace 'miasma' with whaever I am killing?
Tanya likes this.
Top
User avatar
The Silvertiger
Posts: 4469

Re: LF sampires !

Post by The Silvertiger »

fluffhead321 wrote:Safe to say I can edit this and replace 'miasma' with whaever I am killing?
Yes, I would just change it to monster and be done with it. :P
Never forget June 4th 1989!
Selling List & Vendor

"Screenshots will never be used as evidence but more of a reference tool for us to help in our investigations."
Tanya likes this.
Top
User avatar
Vitek-
Posts: 925

Re: LF sampires !

Post by Vitek- »

yeah if you copy the whole thing into notepad and do a replace all for "miasma" to "monster", it would be a more accurate reflection.

The key though is changing the value of the "findtype" in the preceding line to whatever monster you're killing, as the word "miasma" or "monster" is just a populated variable.
Discord: Critical#2911
fish, bass
Image
User avatar
Vitek-
Posts: 925

Re: LF sampires !

Post by Vitek- »

Oh, I also replaced "walk" with "run" on the follow version to speed things up a little bit.
Discord: Critical#2911
fish, bass
Image
Tanya likes this.
Top
Post Reply