NPC Database
Usage: Use the search box to filter NPCs by ID, name, or region. Click on an NPC ID to copy it to clipboard.
Incomplete Database: This NPC database is currently under development and does not contain all NPCs available in the game. More entries will be added in future updates.
NPC ID | Name | Region | Description |
---|---|---|---|
doris_lubbin | Doris Lubbin | DOWNTOWN | Local shop owner |
Example Usage
lua
-- Get information about an NPC
local npc = GetNPC("doris_lubbin")
if npc then
Log("Found NPC: " .. npc.FullName)
Log("Current region: " .. npc.Region)
-- Get NPC position
local position = GetNPCPosition(npc)
Log("Position: " .. position.x .. ", " .. position.y .. ", " .. position.z)
end
-- Check if NPC is in a specific region
if IsNPCInRegion("mayor_wilson", "CITY_HALL") then
Log("The mayor is at City Hall")
else
Log("The mayor is not at City Hall")
end