Alphabetized plus more perl wiki tweaks

Xackery Xtal
2018-01-15 13:14:14 -08:00
parent c4f0b8c9a3
commit 0951e1b3a1
1087 changed files with 5612 additions and 2683 deletions
+3 -3
@@ -4,11 +4,11 @@ The Perl API consists of many exported classes and some general functions.
* [Client](Perl-Client)
* [Corpse](Perl-Corpse)
* [Door](Perl-door)
* [EntityList](Perl-Entitylist)
* [EntityList](Perl-EntityList)
* [Group](Perl-Group)
* [HateEntry](Perl-Hateentry)
* [HateEntry](Perl-HateEntry)
* [Mob](Perl-Mob)
* [NPC](Perl-Npc)
* [NPC](Perl-NPC)
* [Object](Perl-Object)
* [Packet](Perl-Perlpacket)
* [Raid](Perl-Raid)
+4 -1
@@ -4,4 +4,7 @@ AccountID.
```perl
my $val = $client->AccountID();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ AccountName.
```perl
my $val = $client->AccountName();
quest::say($val); # Returns string
```
```
Generated On 2018-01-15T13:04:48-08:00
+5 -2
@@ -2,7 +2,7 @@ adds a client a a points.
### Arguments
**Name**|**Type**|**Description**
:---|:---|:---
number||
number|int|
### Example
@@ -10,4 +10,7 @@ number||
my $number = 1;
$client->AddAAPoints($number); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $currency_id = 1;
my $amount = 1;
$client->AddAlternateCurrencyValue($currency_id, $amount); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $RadiantCount = 1;
my $EbonCount = 1;
$client->AddCrystals($RadiantCount, $EbonCount); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $add_exp = 1;
my $conlevel = 1;
$client->AddEXP($add_exp, $conlevel); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $exp_percentage = 1;
my $max_level = 1;
$client->AddLevelBasedExp($exp_percentage, $max_level); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -18,4 +18,7 @@ my $platinum = 1;
my $updateclient = 1;
$client->AddMoneyToPP($copper, $silver, $gold, $platinum, $updateclient); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ Points||
my $Points = 1;
$client->AddPVPPoints($Points); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $skillid = 1;
my $value = 1;
$client->AddSkill($skillid, $value); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ Admin.
```perl
my $val = $client->Admin();
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -14,4 +14,7 @@ my $NPCID = 1;
my $enforce_level_requirement = 1;
$client->AssignTask($TaskID, $NPCID, $enforce_level_requirement); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ instance_id|int|
my $instance_id = 1;
$client->AssignToInstance($instance_id); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ AutoSplitEnabled.
```perl
my $val = $client->AutoSplitEnabled();
quest::say($val); # Returns bool
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ BreakInvis.
```perl
$client->BreakInvis(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ conlevel||
my $conlevel = 1;
my $val = $client->CalcEXP($conlevel);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ other||
my $other = 1;
my $val = $client->CalcPriceMod($other);
quest::say($val); # Returns double
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ skill_id||
my $skill_id = 1;
my $val = $client->CanHaveSkill($skill_id);
quest::say($val); # Returns bool
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ in_lastname|string|
my $in_lastname = "test";
$client->ChangeLastName($in_lastname); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ CharacterID.
```perl
my $val = $client->CharacterID();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $skillid = 1;
my $chancemodi = 1;
my $val = $client->CheckIncreaseSkill($skillid, $chancemodi);
quest::say($val); # Returns bool
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ spell_id|int|
my $spell_id = 1;
$client->CheckSpecializeIncrease($spell_id); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ ClearCompassMark.
```perl
$client->ClearCompassMark(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ zone_id|int|
my $zone_id = 1;
$client->ClearZoneFlag($zone_id); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ Connected.
```perl
my $val = $client->Connected();
quest::say($val); # Returns bool
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $type = 1;
my $amt = 1;
my $val = $client->DecreaseByID($type, $amt);
quest::say($val); # Returns bool
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $slot_id = 1;
my $quantity = 1;
$client->DeleteItemInInventory($slot_id, $quantity); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ Disconnect.
```perl
$client->Disconnect(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ slot_id||
my $slot_id = 1;
$client->DropItem($slot_id); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ Duck.
```perl
$client->Duck(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ Escape.
```perl
$client->Escape(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $ExpdID = 1;
my $Message = 1;
$client->ExpeditionMessage($ExpdID, $Message); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ TaskID||
my $TaskID = 1;
$client->FailTask($TaskID); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ ForageItem.
```perl
$client->ForageItem(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ Freeze.
```perl
$client->Freeze(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ GMKill.
```perl
$client->GMKill(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client a a exp.
```perl
my $val = $client->GetAAExp();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ aaskillid||
my $aaskillid = 1;
my $val = $client->GetAALevel($aaskillid);
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client a a percent.
```perl
my $val = $client->GetAAPercent();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client a a points.
```perl
my $val = $client->GetAAPoints();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client account age.
```perl
my $val = $client->GetAccountAge();
quest::say($val); # Returns double
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ flag||
my $flag = 1;
my $val = $client->GetAccountFlag($flag);
quest::say($val); # Returns string
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client aggro count.
```perl
my $val = $client->GetAggroCount();
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client all money.
```perl
my $val = $client->GetAllMoney();
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client anon.
```perl
my $val = $client->GetAnon();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $slot = 1;
my $aug_slot = 1;
$client->GetAugmentAt($slot, $aug_slot); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $slot_id = 1;
my $augslot = 1;
my $val = $client->GetAugmentIDAt($slot_id, $augslot);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client base a g i.
```perl
my $val = $client->GetBaseAGI();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client base c h a.
```perl
my $val = $client->GetBaseCHA();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client base d e x.
```perl
my $val = $client->GetBaseDEX();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client base face.
```perl
my $val = $client->GetBaseFace();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client base i n t.
```perl
my $val = $client->GetBaseINT();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client base s t a.
```perl
my $val = $client->GetBaseSTA();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client base s t r.
```perl
my $val = $client->GetBaseSTR();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client base w i s.
```perl
my $val = $client->GetBaseWIS();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client become npcl evel.
```perl
my $val = $client->GetBecomeNPCLevel();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ index||
my $index = 1;
my $val = $client->GetBindHeading($index);
quest::say($val); # Returns double
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ index||
my $index = 1;
my $val = $client->GetBindX($index);
quest::say($val); # Returns double
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ index||
my $index = 1;
my $val = $client->GetBindY($index);
quest::say($val); # Returns double
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ index||
my $index = 1;
my $val = $client->GetBindZ($index);
quest::say($val); # Returns double
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ index||
my $index = 1;
my $val = $client->GetBindZoneID($index);
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client carried money.
```perl
my $val = $client->GetCarriedMoney();
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ faction_id||
my $faction_id = 1;
my $val = $client->GetCharacterFactionLevel($faction_id);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client client version.
```perl
my $val = $client->GetClientVersion();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client client version bit.
```perl
my $val = $client->GetClientVersionBit();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client corpse count.
```perl
my $val = $client->GetCorpseCount();
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ corpse||
my $corpse = 1;
my $val = $client->GetCorpseID($corpse);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $corpse_id = 1;
my $slotid = 1;
my $val = $client->GetCorpseItemAt($corpse_id, $slotid);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -12,4 +12,7 @@ my $slot_id = 1;
my $identifier = 1;
my $val = $client->GetCustomItemData($slot_id, $identifier);
quest::say($val); # Returns string
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ spell_id|int|
my $spell_id = 1;
my $val = $client->GetDiscSlotBySpellID($spell_id);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client duel target.
```perl
my $val = $client->GetDuelTarget();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client e x p.
```perl
my $val = $client->GetEXP();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client ebon crystals.
```perl
my $val = $client->GetEbonCrystals();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client endurance.
```perl
my $val = $client->GetEndurance();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client endurance ratio.
```perl
my $val = $client->GetEnduranceRatio();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client face.
```perl
my $val = $client->GetFace();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -22,4 +22,7 @@ my $pFaction = 1;
my $tnpc = 1;
my $val = $client->GetFactionLevel($char_id, $npc_id, $p_race, $p_class, $p_deity, $pFaction, $tnpc);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client feigned.
```perl
my $val = $client->GetFeigned();
quest::say($val); # Returns bool
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ start_slot||
my $start_slot = 1;
my $val = $client->GetFreeSpellBookSlot($start_slot);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client g m.
```perl
my $val = $client->GetGM();
quest::say($val); # Returns bool
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client group.
```perl
$client->GetGroup(); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client group points.
```perl
my $val = $client->GetGroupPoints();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client horse id.
```perl
my $val = $client->GetHorseId();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client hunger.
```perl
my $val = $client->GetHunger();
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client i p.
```perl
my $val = $client->GetIP();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client instance i d.
```perl
my $val = $client->GetInstanceID();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ spell_id|int|
my $spell_id = 1;
my $val = $client->GetInstrumentMod($spell_id);
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ slot|int|
my $slot = 1;
$client->GetItemAt($slot); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ slot_id||
my $slot_id = 1;
my $val = $client->GetItemIDAt($slot_id);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ slot_id||
my $slot_id = 1;
$client->GetItemInInventory($slot_id); # Returns void
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client l do n losses.
```perl
my $val = $client->GetLDoNLosses();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ theme||
my $theme = 1;
my $val = $client->GetLDoNLossesTheme($theme);
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ theme||
my $theme = 1;
my $val = $client->GetLDoNPointsTheme($theme);
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client l do n wins.
```perl
my $val = $client->GetLDoNWins();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ theme||
my $theme = 1;
my $val = $client->GetLDoNWinsTheme($theme);
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ n||
my $n = 1;
my $val = $client->GetLanguageSkill($n);
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client last name.
```perl
my $val = $client->GetLastName();
quest::say($val); # Returns string
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -4,4 +4,7 @@ gets a client max endurance.
```perl
my $val = $client->GetMaxEndurance();
quest::say($val); # Returns uint
```
```
Generated On 2018-01-15T13:04:48-08:00
+4 -1
@@ -10,4 +10,7 @@ faction_id||
my $faction_id = 1;
my $val = $client->GetModCharacterFactionLevel($faction_id);
quest::say($val); # Returns int
```
```
Generated On 2018-01-15T13:04:48-08:00

Some files were not shown because too many files have changed in this diff Show More