Skip to content
This repository has been archived by the owner on Jan 2, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (22 loc) · 500 Bytes

hate-entry-methods.md

File metadata and controls

25 lines (22 loc) · 500 Bytes

Hate Entry Methods

{% tabs %} {% tab title="Perl" %}

$hate_entry->GetDamage();
$hate_entry->GetData();
$hate_entry->GetHate();

{% endtab %}

{% tab title="Lua" %}

hate_entry:GetDamage(); -- int
hate_entry:GetEnt(); -- Lua_Mob
hate_entry:GetFrenzy(); -- int
hate_entry:GetHate(); -- int
hate_entry:SetDamage(int value); -- void
hate_entry:SetEnt(Lua_Mob e); -- void
hate_entry:SetFrenzy(bool value); -- void
hate_entry:SetHate(int value); -- void

{% endtab %} {% endtabs %}