mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-29 14:27:15 +00:00
Added Raid
Executable
+15
@@ -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
|
||||||
|
```
|
||||||
Executable
+17
@@ -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
|
||||||
|
```
|
||||||
Executable
+13
@@ -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
|
||||||
|
```
|
||||||
Executable
+13
@@ -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
|
||||||
|
```
|
||||||
Executable
+7
@@ -0,0 +1,7 @@
|
|||||||
|
gets a raid highest level.
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```perl
|
||||||
|
my $val = $raid->GetHighestLevel();
|
||||||
|
quest::say($val); # Returns uint
|
||||||
|
```
|
||||||
Executable
+7
@@ -0,0 +1,7 @@
|
|||||||
|
gets a raid i d.
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```perl
|
||||||
|
my $val = $raid->GetID();
|
||||||
|
quest::say($val); # Returns uint
|
||||||
|
```
|
||||||
Executable
+7
@@ -0,0 +1,7 @@
|
|||||||
|
gets a raid lowest level.
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```perl
|
||||||
|
my $val = $raid->GetLowestLevel();
|
||||||
|
quest::say($val); # Returns uint
|
||||||
|
```
|
||||||
Executable
+13
@@ -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
|
||||||
|
```
|
||||||
Executable
+13
@@ -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
|
||||||
|
```
|
||||||
Executable
+13
@@ -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
|
||||||
|
```
|
||||||
Executable
+13
@@ -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
|
||||||
|
```
|
||||||
Executable
+13
@@ -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
|
||||||
|
```
|
||||||
Executable
+7
@@ -0,0 +1,7 @@
|
|||||||
|
RaidCount.
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```perl
|
||||||
|
my $val = $raid->RaidCount();
|
||||||
|
quest::say($val); # Returns uint
|
||||||
|
```
|
||||||
Executable
+15
@@ -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
|
||||||
|
```
|
||||||
Executable
+19
@@ -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
|
||||||
|
```
|
||||||
Executable
+25
@@ -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
|
||||||
|
```
|
||||||
Executable
+23
@@ -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
|
||||||
|
```
|
||||||
Regular → Executable
+17
-20
@@ -1,20 +1,17 @@
|
|||||||
```perl
|
* [[$raid->IsRaidMember(string name) # bool|Perl-Raid-IsRaidMember]]
|
||||||
void Raid::IsRaidMember(string name)
|
* [[$raid->CastGroupSpell(caster, spellid, gid) # void|Perl-Raid-CastGroupSpell]]
|
||||||
void Raid::CastGroupSpell( caster, spellid, gid)
|
* [[$raid->GroupCount(gid) # uint|Perl-Raid-GroupCount]]
|
||||||
void Raid::GroupCount( gid)
|
* [[$raid->RaidCount() # uint|Perl-Raid-RaidCount]]
|
||||||
void Raid::RaidCount()
|
* [[$raid->GetGroup(string name) # uint|Perl-Raid-GetGroup]]
|
||||||
void Raid::GetGroup(string name)
|
* [[$raid->SplitExp(exp, other) # void|Perl-Raid-SplitExp]]
|
||||||
void Raid::SplitExp( exp, other)
|
* [[$raid->GetTotalRaidDamage(other) # uint|Perl-Raid-GetTotalRaidDamage]]
|
||||||
void Raid::GetTotalRaidDamage( other)
|
* [[$raid->SplitMoney(int copper, int silver, int gold, int platinum) # void|Perl-Raid-SplitMoney]]
|
||||||
void Raid::SplitMoney(int copper, int silver, int gold, int platinum)
|
* [[$raid->BalanceHP(penalty, gid) # void|Perl-Raid-BalanceHP]]
|
||||||
void Raid::BalanceHP( penalty, gid)
|
* [[$raid->IsLeader(string name) # bool|Perl-Raid-IsLeader]]
|
||||||
void Raid::IsLeader(string name)
|
* [[$raid->IsGroupLeader(who) # bool|Perl-Raid-IsGroupLeader]]
|
||||||
void Raid::IsGroupLeader( who)
|
* [[$raid->GetHighestLevel() # uint|Perl-Raid-GetHighestLevel]]
|
||||||
void Raid::GetHighestLevel()
|
* [[$raid->GetLowestLevel() # uint|Perl-Raid-GetLowestLevel]]
|
||||||
void Raid::GetLowestLevel()
|
* [[$raid->GetClientByIndex(index) # void|Perl-Raid-GetClientByIndex]]
|
||||||
void Raid::GetClientByIndex( index)
|
* [[$raid->TeleportGroup(sender, zoneID, float x, float y, float z, float heading, gid) # void|Perl-Raid-TeleportGroup]]
|
||||||
void Raid::TeleportGroup( sender, zoneID, float x, float y, float z, float heading, gid)
|
* [[$raid->TeleportRaid(sender, zoneID, float x, float y, float z, float heading) # void|Perl-Raid-TeleportRaid]]
|
||||||
void Raid::TeleportRaid( sender, zoneID, float x, float y, float z, float heading)
|
* [[$raid->GetID() # uint|Perl-Raid-GetID]]
|
||||||
void Raid::GetID()
|
|
||||||
void Raid::GetMember( index)
|
|
||||||
```
|
|
||||||
|
|||||||
Reference in New Issue
Block a user