Project

General

Profile

Feature - Enhancement #2133

Add extract planar essence method to object item

Added by ethreayd about 4 years ago. Updated about 4 years ago.

Status:
Implemented
Priority:
Normal
Assignee:
-
Category:
-
Start date:
2020-04-17
Due date:
% Done:

0%

Estimated time:
vbulletin_issue_id:

Description

I would like to be able to do Extract Planar Essence as I can do Transmute or Salvage on a item.

 

Thank you

#1

Updated by Amadeus about 4 years ago

Try using the Salvage method with it and see what happens.   Something like:

Me.Ability[id, #]:Use               ;; I'm not sure the AbilityID# for Extract Planar Essence
wait 5
Me.Inventory["Item Name"]:Salvage
wait 10
do
{
    waitframe
}
while ${Me.CastingSpell}
#2

Updated by ethreayd about 4 years ago

OK I have done that :

Me.Ability[id, 406528868]:Use
wait 5
Me.Inventory["Spicy Wand of Nerobahan"]:Salvage
wait 10
do
{
    waitframe
}
while ${Me.CastingSpell}

and it says : "Failed to salvage [Spicy Wand of Nerobahan]"

(I have tested that this item can be extracted manually)

#3

Updated by Amadeus about 4 years ago

  • Status changed from New to In Progress

The casting time on the ability was lower than I thought it would be, so the sample script I provided didn't work.   This one will though:

Me.Ability[id, 406528868]:Use
wait 5
do
{
waitframe
}
while ${Me.CastingSpell}
Me.Inventory["Spicy Wand of Nerobahan"]:Salvage

I will add a method called "Extract", but it will do EXACTLY the same thing as "Salvage" (Salvage, Refine, Transmute, Extract all work exactly the same:  they all just "target" the item after you cast the ability), so, you can go ahead and use "Salvage" for now if you don't want to wait until the next release.

#4

Updated by Amadeus about 4 years ago

  • Status changed from In Progress to Implemented

Added in 20200416.0003

Also available in: Atom PDF