Updated Perl index to link to generated contents, removed unused endpoints

Xackery Xtal
2018-01-14 19:37:44 -08:00
parent 821d110e78
commit bc3aefa13e
3 changed files with 8 additions and 73 deletions
+8 -14
@@ -1,20 +1,14 @@
The Perl API consists of many exported classes and some general functions.
* [Perl General Functions](Perl-Quest)
* [Perl Constants](Perl-Constants)
* [Client](Perl-Client)
* [Corpse](Perl-Corpse)
* [Door](Perl-Door)
* [Entity](Perl-Entity)
* [EntityList](Perl-Entity-List)
* [Door](Perl-door)
* [EntityList](Perl-Entitylist)
* [Group](Perl-Group)
* [HateList](Perl-Hate-List)
* [Inventory](Perl-Inventory)
* [Item](Perl-Item)
* [ItemInst](Perl-ItemInst)
* [HateEntry](Perl-Hateentry)
* [Mob](Perl-Mob)
* [NPC](Perl-NPC)
* [NPC](Perl-Npc)
* [Object](Perl-Object)
* [Packet](Perl-Packet)
* [Raid](Perl-Raid)
* [Spell](Perl-Spell)
* [Spawn](Perl-Spawn)
* [Perl General Functions](Perl-General-Functions)
* [Perl Constants](Perl-Constants)
* [Packet](Perl-Perlpacket)
* [Raid](Perl-Raid)
-38
@@ -1,38 +0,0 @@
Door is a class exported to Perl that represent the Door object from EQEmu. All Door are also [Entity](Perl-Entity).
### Properties
```
door.null -- Returns true if this object is null
door.valid -- Returns true if this object is not null
```
### Member Functions
```
void Doors::GetDoorDBID()
void Doors::GetDoorID()
void Doors::GetID()
void Doors::GetX()
void Doors::GetY()
void Doors::GetZ()
void Doors::GetHeading()
void Doors::GetOpenType()
void Doors::GetLockpick()
void Doors::GetKeyItem()
void Doors::GetNoKeyring( type)
void Doors::GetIncline()
void Doors::GetIncline()
void Doors::SetOpenType( type)
void Doors::SetLockpick( type)
void Doors::SetKeyItem( type)
void Doors::SetNoKeyring( type)
void Doors::SetIncline( type)
void Doors::SetSize(int size)
void Doors::SetLocation(float x, float y, float z)
void Doors::SetX( XPos)
void Doors::SetY( YPos)
void Doors::SetZ( ZPos)
void Doors::SetHeading(float heading)
void Doors::SetModelName(string name)
void Doors::GetModelName()
void Doors::InsertDoor()
```
-21
@@ -1,21 +0,0 @@
```perl
void PerlPacket::new( CLASS, opcode)
void PerlPacket::DESTROY()
void PerlPacket::SetOpcode( opcode)
void PerlPacket::Resize( len)
void PerlPacket::SendTo( who)
void PerlPacket::SendToAll()
void PerlPacket::Zero()
void PerlPacket::FromArray( numbers, length)
void PerlPacket::SetByte( pos, val)
void PerlPacket::SetShort( pos, val)
void PerlPacket::SetLong( pos, val)
void PerlPacket::SetFloat( pos, val)
void PerlPacket::SetString( pos, str)
void PerlPacket::SetEQ1319( pos, part13, part19)
void PerlPacket::SetEQ1913( pos, part19, part13)
void PerlPacket::GetByte( pos)
void PerlPacket::GetShort( pos)
void PerlPacket::GetLong( pos)
void PerlPacket::GetFloat( pos)
```