From b8c9930a713a9c972c003ff39b5b0cb0aff72cb7 Mon Sep 17 00:00:00 2001 From: TurmoilToad Date: Wed, 18 Sep 2019 11:10:34 -0400 Subject: [PATCH] Destroyed Lua Entity (markdown) --- Lua-Entity.md | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Lua-Entity.md diff --git a/Lua-Entity.md b/Lua-Entity.md deleted file mode 100644 index f9ef038..0000000 --- a/Lua-Entity.md +++ /dev/null @@ -1,33 +0,0 @@ -Entity is a class exported to Lua that represent the Entity object from EQEmu. - -[Return to the Lua API](Lua-API) - -### Properties -``` -entity.null -- Returns true if this object is null -entity.valid -- Returns true if this object is not null -``` - -### Member Functions -``` -Entity(); -- Creates a null entity -Boolean IsClient(); -Boolean IsNPC(); -Boolean IsMob(); -Boolean IsMerc(); -Boolean IsCorpse(); -Boolean IsPlayerCorpse(); -Boolean IsNPCCorpse(); -Boolean IsObject(); -Boolean IsDoor(); -Boolean IsTrap(); -Boolean IsBeacon(); -Integer GetID(); - -Client CastToClient(); -NPC CastToNPC(); -Mob CastToMob(); -Corpse CastToCorpse(); -Object CastToObject(); -Door CastToDoor(); -``` \ No newline at end of file