Dota 2 Workshop Tools/Scripting/API/CDOTA BaseNPC.Purge: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Created page with "Category:Dota2Function Category:CDOTA_BaseNPC == Function Description == ''' void Purge(bool RemovePositiveBuffs, bool RemoveDebuffs, bool BuffsCreatedThisFrameOnly...")
 
(Dota_Lebot push: Updated Page)
Line 1: Line 1:
{{Note | This page is automatically generated.  Any changes may be overwritten}}
[[Category:Dota2Function]]
[[Category:Dota2Function]]
[[Category:CDOTA_BaseNPC]]
[[Category:CDOTA_BaseNPC]]
Line 5: Line 6:




''' void Purge(bool RemovePositiveBuffs, bool RemoveDebuffs, bool BuffsCreatedThisFrameOnly, bool RemoveStuns, bool RemoveExceptions) '''
''' void Purge(bool ''bool_1'', bool ''bool_2'', bool ''bool_3'', bool ''bool_4'', bool ''bool_5'') '''


''Removes certain type of modifiers on this unit.''
''CDOTA_BaseNPC:Purge''


''For more info about what this function should remove refer to http://dota2.gamepedia.com/Purge''




 
;Example
 
<source lang="lua">
== Returns ==
function CDOTA_BaseNPC:Purge( bool_1, bool_2, bool_3, bool_4, bool_5 ) end
 
</source>
''void''
== Parameters ==
{| class="standard-table" style="width: 50%;"
! Type
! Name
! Description
|-
| bool
| bool_1
| No Description Set
|-
| bool
| bool_2
| No Description Set
|-
| bool
| bool_3
| No Description Set
|-
| bool
| bool_4
| No Description Set
|-
| bool
| bool_5
| No Description Set
|}

Revision as of 01:55, 17 June 2015

Note.pngNote: This page is automatically generated. Any changes may be overwritten

Function Description

void Purge(bool bool_1, bool bool_2, bool bool_3, bool bool_4, bool bool_5)

CDOTA_BaseNPC:Purge


Example
function CDOTA_BaseNPC:Purge( bool_1, bool_2, bool_3, bool_4, bool_5 ) end

Parameters

Type Name Description
bool bool_1 No Description Set
bool bool_2 No Description Set
bool bool_3 No Description Set
bool bool_4 No Description Set
bool bool_5 No Description Set