Again...Taking requests/suggestions

lummox

Master
Well, especially for tmaps you would know what spawns and have the few slayers on you


Sent from my iPhone using Tapatalk
 

Fuego

Grandmaster
if not timerexists 'Reflect'
createtimer 'Reflect'
endif
if timer 'Reflect' > 30000
cast 'magic reflection'
pause 4000
settimer 'Reflect' 0
endif
Trying to edit this to use Protection instead of MR but says no timer exist.
Code:
if timer 'Protection' > 30000

cast 'Protection'

pause 4000

settimer 'Protection' 0

endif
 

lummox

Master
What is the id for taming scrolls need to add to my auto pickup skills scrolls or something


Sent from my iPhone using Tapatalk
 

Experience

Grandmaster
You cannot auto loot anything. But you can use scavenger. All SS have the same graphic involved....

If you want to switch weapons on a key bind just use a dress macro...
 

BigDickJohnson

Neophyte
Simple, mount ethy llama and if already on it. Going pk stealth fencer, will sneak up-mount and at right time attack. Or fast dismounts to stealth on hide
 

BigDickJohnson

Neophyte
Modified an attack script, but no working.

@getenemy 'enemy' 'innocent' 'humanoid' 'closest'

//If it's the case that our enemy is on screen,

if @inrange 'enemy' 16

attack 'enemy'

endif
 

Fuego

Grandmaster
Since ressing your own pet now gives the accept/decline gump to res. Can ya work something in your vet scrinpt that accepts it once it opens to res pet?
Code:
//Experience

//Heals 2 pets.

//Included weight check on self

if not timerexists 'Protection'

createtimer 'Protection'

endif

if timer 'Protection' > 30000

cast 'Protection'

pause 4000

settimer 'Protection' 0

endif

@cleartargetqueue

@clearjournal

if dead 'self'

stop

endif

//Setup

if not findalias 'pet1'

headmsg 'Select first pet'

promptalias 'pet1'

endif

if not findalias 'pet2'

headmsg 'Select second pet'

promptalias 'pet2'

endif

//Feed pets

if not timerexists 'feed'

createtimer 'feed'

endif

if timer 'feed' > 600000

if @inrange 'pet1' 1 or @inrange 'pet2' 1

headmsg 'Feeding Pets!!!'

pause 600

feed 'pet1' '0x9f1' 'any' '1'

pause 700

feed 'pet2' '0x9f1' 'any' '1'

settimer 'feed' 0

endif

endif

//Heal them to full

while hits 'pet1' == maxhits 'pet1' and hits 'pet2' == maxhits 'pet2'

pause 50

endwhile

if diffhits 'pet1' > diffhits 'pet2'

if inrange 'pet1' 1

bandage

autotargetobject 'pet1'

pause 6100

endif

else

if inrange 'pet2' 1

bandage

autotargetobject 'pet2'

pause 6100

endif

endif

if not @injournal 'finish' 'system'

pause 1100

replay

else if @injournal 'finish' 'system'

@clearjournal

replay

elseif @injournal 'too far away' 'system'

@clearjournal

replay

elseif @injournal 'stay close enough' 'system'

@clearjournal

replay

endif

if mana > 25

while weight >= maxweight

cast 'bless'

autotargetself!

pause 1500

endwhile

endif
 
Top