From 5df56066979308322ab832bcc2671cd830ff847e Mon Sep 17 00:00:00 2001 From: Xackery Xtal Date: Sun, 14 Jan 2018 19:22:29 -0800 Subject: [PATCH] Added Raid --- Perl-Raid-BalanceHP.md | 15 +++++++++++++ Perl-Raid-CastGroupSpell.md | 17 +++++++++++++++ Perl-Raid-GetClientByIndex.md | 13 ++++++++++++ Perl-Raid-GetGroup.md | 13 ++++++++++++ Perl-Raid-GetHighestLevel.md | 7 +++++++ Perl-Raid-GetID.md | 7 +++++++ Perl-Raid-GetLowestLevel.md | 7 +++++++ Perl-Raid-GetTotalRaidDamage.md | 13 ++++++++++++ Perl-Raid-GroupCount.md | 13 ++++++++++++ Perl-Raid-IsGroupLeader.md | 13 ++++++++++++ Perl-Raid-IsLeader.md | 13 ++++++++++++ Perl-Raid-IsRaidMember.md | 13 ++++++++++++ Perl-Raid-RaidCount.md | 7 +++++++ Perl-Raid-SplitExp.md | 15 +++++++++++++ Perl-Raid-SplitMoney.md | 19 +++++++++++++++++ Perl-Raid-TeleportGroup.md | 25 ++++++++++++++++++++++ Perl-Raid-TeleportRaid.md | 23 ++++++++++++++++++++ Perl-Raid.md | 37 +++++++++++++++------------------ 18 files changed, 250 insertions(+), 20 deletions(-) create mode 100755 Perl-Raid-BalanceHP.md create mode 100755 Perl-Raid-CastGroupSpell.md create mode 100755 Perl-Raid-GetClientByIndex.md create mode 100755 Perl-Raid-GetGroup.md create mode 100755 Perl-Raid-GetHighestLevel.md create mode 100755 Perl-Raid-GetID.md create mode 100755 Perl-Raid-GetLowestLevel.md create mode 100755 Perl-Raid-GetTotalRaidDamage.md create mode 100755 Perl-Raid-GroupCount.md create mode 100755 Perl-Raid-IsGroupLeader.md create mode 100755 Perl-Raid-IsLeader.md create mode 100755 Perl-Raid-IsRaidMember.md create mode 100755 Perl-Raid-RaidCount.md create mode 100755 Perl-Raid-SplitExp.md create mode 100755 Perl-Raid-SplitMoney.md create mode 100755 Perl-Raid-TeleportGroup.md create mode 100755 Perl-Raid-TeleportRaid.md mode change 100644 => 100755 Perl-Raid.md diff --git a/Perl-Raid-BalanceHP.md b/Perl-Raid-BalanceHP.md new file mode 100755 index 0000000..21b8066 --- /dev/null +++ b/Perl-Raid-BalanceHP.md @@ -0,0 +1,15 @@ +BalanceHP. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +penalty|| +gid|| + +### Example + +```perl +my $penalty = 1; +my $gid = 1; + +$raid->BalanceHP($penalty, $gid); # Returns void +``` \ No newline at end of file diff --git a/Perl-Raid-CastGroupSpell.md b/Perl-Raid-CastGroupSpell.md new file mode 100755 index 0000000..72e57fd --- /dev/null +++ b/Perl-Raid-CastGroupSpell.md @@ -0,0 +1,17 @@ +CastGroupSpell. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +caster|| +spellid|| +gid|| + +### Example + +```perl +my $caster = 1; +my $spellid = 1; +my $gid = 1; + +$raid->CastGroupSpell($caster, $spellid, $gid); # Returns void +``` \ No newline at end of file diff --git a/Perl-Raid-GetClientByIndex.md b/Perl-Raid-GetClientByIndex.md new file mode 100755 index 0000000..9e5a164 --- /dev/null +++ b/Perl-Raid-GetClientByIndex.md @@ -0,0 +1,13 @@ +gets a raid client by index. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +index|| + +### Example + +```perl +my $index = 1; + +$raid->GetClientByIndex($index); # Returns void +``` \ No newline at end of file diff --git a/Perl-Raid-GetGroup.md b/Perl-Raid-GetGroup.md new file mode 100755 index 0000000..561e7d2 --- /dev/null +++ b/Perl-Raid-GetGroup.md @@ -0,0 +1,13 @@ +gets a raid group. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +name|string| + +### Example + +```perl +my $name = "test"; +my $val = $raid->GetGroup($name); +quest::say($val); # Returns uint +``` \ No newline at end of file diff --git a/Perl-Raid-GetHighestLevel.md b/Perl-Raid-GetHighestLevel.md new file mode 100755 index 0000000..3b96c5d --- /dev/null +++ b/Perl-Raid-GetHighestLevel.md @@ -0,0 +1,7 @@ +gets a raid highest level. +### Example + +```perl +my $val = $raid->GetHighestLevel(); +quest::say($val); # Returns uint +``` \ No newline at end of file diff --git a/Perl-Raid-GetID.md b/Perl-Raid-GetID.md new file mode 100755 index 0000000..3f73b7c --- /dev/null +++ b/Perl-Raid-GetID.md @@ -0,0 +1,7 @@ +gets a raid i d. +### Example + +```perl +my $val = $raid->GetID(); +quest::say($val); # Returns uint +``` \ No newline at end of file diff --git a/Perl-Raid-GetLowestLevel.md b/Perl-Raid-GetLowestLevel.md new file mode 100755 index 0000000..57173ec --- /dev/null +++ b/Perl-Raid-GetLowestLevel.md @@ -0,0 +1,7 @@ +gets a raid lowest level. +### Example + +```perl +my $val = $raid->GetLowestLevel(); +quest::say($val); # Returns uint +``` \ No newline at end of file diff --git a/Perl-Raid-GetTotalRaidDamage.md b/Perl-Raid-GetTotalRaidDamage.md new file mode 100755 index 0000000..b6056db --- /dev/null +++ b/Perl-Raid-GetTotalRaidDamage.md @@ -0,0 +1,13 @@ +gets a raid total raid damage. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +other|| + +### Example + +```perl +my $other = 1; +my $val = $raid->GetTotalRaidDamage($other); +quest::say($val); # Returns uint +``` \ No newline at end of file diff --git a/Perl-Raid-GroupCount.md b/Perl-Raid-GroupCount.md new file mode 100755 index 0000000..a70ae1c --- /dev/null +++ b/Perl-Raid-GroupCount.md @@ -0,0 +1,13 @@ +GroupCount. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +gid|| + +### Example + +```perl +my $gid = 1; +my $val = $raid->GroupCount($gid); +quest::say($val); # Returns uint +``` \ No newline at end of file diff --git a/Perl-Raid-IsGroupLeader.md b/Perl-Raid-IsGroupLeader.md new file mode 100755 index 0000000..1246cae --- /dev/null +++ b/Perl-Raid-IsGroupLeader.md @@ -0,0 +1,13 @@ +is a raid group leader. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +who|| + +### Example + +```perl +my $who = 1; +my $val = $raid->IsGroupLeader($who); +quest::say($val); # Returns bool +``` \ No newline at end of file diff --git a/Perl-Raid-IsLeader.md b/Perl-Raid-IsLeader.md new file mode 100755 index 0000000..b3875c6 --- /dev/null +++ b/Perl-Raid-IsLeader.md @@ -0,0 +1,13 @@ +is a raid leader. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +name|string| + +### Example + +```perl +my $name = "test"; +my $val = $raid->IsLeader($name); +quest::say($val); # Returns bool +``` \ No newline at end of file diff --git a/Perl-Raid-IsRaidMember.md b/Perl-Raid-IsRaidMember.md new file mode 100755 index 0000000..c58de6b --- /dev/null +++ b/Perl-Raid-IsRaidMember.md @@ -0,0 +1,13 @@ +is a raid raid member. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +name|string| + +### Example + +```perl +my $name = "test"; +my $val = $raid->IsRaidMember($name); +quest::say($val); # Returns bool +``` \ No newline at end of file diff --git a/Perl-Raid-RaidCount.md b/Perl-Raid-RaidCount.md new file mode 100755 index 0000000..937d15d --- /dev/null +++ b/Perl-Raid-RaidCount.md @@ -0,0 +1,7 @@ +RaidCount. +### Example + +```perl +my $val = $raid->RaidCount(); +quest::say($val); # Returns uint +``` \ No newline at end of file diff --git a/Perl-Raid-SplitExp.md b/Perl-Raid-SplitExp.md new file mode 100755 index 0000000..4e942f1 --- /dev/null +++ b/Perl-Raid-SplitExp.md @@ -0,0 +1,15 @@ +SplitExp. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +exp|| +other|| + +### Example + +```perl +my $exp = 1; +my $other = 1; + +$raid->SplitExp($exp, $other); # Returns void +``` \ No newline at end of file diff --git a/Perl-Raid-SplitMoney.md b/Perl-Raid-SplitMoney.md new file mode 100755 index 0000000..cc0720b --- /dev/null +++ b/Perl-Raid-SplitMoney.md @@ -0,0 +1,19 @@ +SplitMoney. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +copper|int| +silver|int| +gold|int| +platinum|int| + +### Example + +```perl +my $copper = 1; +my $silver = 1; +my $gold = 1; +my $platinum = 1; + +$raid->SplitMoney($copper, $silver, $gold, $platinum); # Returns void +``` \ No newline at end of file diff --git a/Perl-Raid-TeleportGroup.md b/Perl-Raid-TeleportGroup.md new file mode 100755 index 0000000..067c7f0 --- /dev/null +++ b/Perl-Raid-TeleportGroup.md @@ -0,0 +1,25 @@ +teleports a raid group. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +sender|| +zoneID|| +x|float| +y|float| +z|float| +heading|float| +gid|| + +### Example + +```perl +my $sender = 1; +my $zoneID = 1; +my $x = 1; +my $y = 1; +my $z = 1; +my $heading = 1; +my $gid = 1; + +$raid->TeleportGroup($sender, $zoneID, $x, $y, $z, $heading, $gid); # Returns void +``` \ No newline at end of file diff --git a/Perl-Raid-TeleportRaid.md b/Perl-Raid-TeleportRaid.md new file mode 100755 index 0000000..b0c5429 --- /dev/null +++ b/Perl-Raid-TeleportRaid.md @@ -0,0 +1,23 @@ +teleports a raid raid. +### Arguments +**Name**|**Type**|**Description** +:---|:---|:--- +sender|| +zoneID|| +x|float| +y|float| +z|float| +heading|float| + +### Example + +```perl +my $sender = 1; +my $zoneID = 1; +my $x = 1; +my $y = 1; +my $z = 1; +my $heading = 1; + +$raid->TeleportRaid($sender, $zoneID, $x, $y, $z, $heading); # Returns void +``` \ No newline at end of file diff --git a/Perl-Raid.md b/Perl-Raid.md old mode 100644 new mode 100755 index abc8892..4d2b126 --- a/Perl-Raid.md +++ b/Perl-Raid.md @@ -1,20 +1,17 @@ -```perl -void Raid::IsRaidMember(string name) -void Raid::CastGroupSpell( caster, spellid, gid) -void Raid::GroupCount( gid) -void Raid::RaidCount() -void Raid::GetGroup(string name) -void Raid::SplitExp( exp, other) -void Raid::GetTotalRaidDamage( other) -void Raid::SplitMoney(int copper, int silver, int gold, int platinum) -void Raid::BalanceHP( penalty, gid) -void Raid::IsLeader(string name) -void Raid::IsGroupLeader( who) -void Raid::GetHighestLevel() -void Raid::GetLowestLevel() -void Raid::GetClientByIndex( index) -void Raid::TeleportGroup( sender, zoneID, float x, float y, float z, float heading, gid) -void Raid::TeleportRaid( sender, zoneID, float x, float y, float z, float heading) -void Raid::GetID() -void Raid::GetMember( index) -``` \ No newline at end of file +* [[$raid->IsRaidMember(string name) # bool|Perl-Raid-IsRaidMember]] +* [[$raid->CastGroupSpell(caster, spellid, gid) # void|Perl-Raid-CastGroupSpell]] +* [[$raid->GroupCount(gid) # uint|Perl-Raid-GroupCount]] +* [[$raid->RaidCount() # uint|Perl-Raid-RaidCount]] +* [[$raid->GetGroup(string name) # uint|Perl-Raid-GetGroup]] +* [[$raid->SplitExp(exp, other) # void|Perl-Raid-SplitExp]] +* [[$raid->GetTotalRaidDamage(other) # uint|Perl-Raid-GetTotalRaidDamage]] +* [[$raid->SplitMoney(int copper, int silver, int gold, int platinum) # void|Perl-Raid-SplitMoney]] +* [[$raid->BalanceHP(penalty, gid) # void|Perl-Raid-BalanceHP]] +* [[$raid->IsLeader(string name) # bool|Perl-Raid-IsLeader]] +* [[$raid->IsGroupLeader(who) # bool|Perl-Raid-IsGroupLeader]] +* [[$raid->GetHighestLevel() # uint|Perl-Raid-GetHighestLevel]] +* [[$raid->GetLowestLevel() # uint|Perl-Raid-GetLowestLevel]] +* [[$raid->GetClientByIndex(index) # void|Perl-Raid-GetClientByIndex]] +* [[$raid->TeleportGroup(sender, zoneID, float x, float y, float z, float heading, gid) # void|Perl-Raid-TeleportGroup]] +* [[$raid->TeleportRaid(sender, zoneID, float x, float y, float z, float heading) # void|Perl-Raid-TeleportRaid]] +* [[$raid->GetID() # uint|Perl-Raid-GetID]]