WoW:API PetCanBeAbandoned: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
m (Move page script moved page API PetCanBeAbandoned to API PetCanBeAbandoned without leaving a redirect)
 
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<center>'''PetCanBeAbandoned''' ''-Documentation by AlexanderYoshi-''</center>
{{wowapi}}
 
Retuns true if the pet is abandonable.
Retuns true if the pet is abandonable.


  PetCanBeAbandoned();
  canAbandon = PetCanBeAbandoned();


----
----
Line 13: Line 12:
;''Returns''
;''Returns''


:;Boolean
:canAbandon
:;canAbandon : Boolean - <tt>true</tt> if the player's pet can be abandoned.


----
----
;''Example''
;''Example''
   if ( PetCanBeAbandoned() ) then AbandonPet(); end
   if ( PetCanBeAbandoned() ) then PetAbandon(); end


;''Result''
;''Result''
  true | false
  true | false
----
;''Description''
: Retuns true if the pet is abandonable.
----
{{Template:WoW API}}

Latest revision as of 04:47, 15 August 2023

WoW API < PetCanBeAbandoned

Retuns true if the pet is abandonable.

canAbandon = PetCanBeAbandoned();

Arguments
none

Returns
canAbandon
canAbandon
Boolean - true if the player's pet can be abandoned.

Example
 if ( PetCanBeAbandoned() ) then PetAbandon(); end
Result
true | false