• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

NPC Request

Xml Code: Lizard Tunnel Guard.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Lizard Tunnel Guard" script="data/npc/scripts/Lizard Tunnel Guard.lua" walkinterval="0" floorchange="0">
<health now="100" max="100"/>
<look type="338" head="0" body="0" legs="0" feet="0" />
</npc>

Lua Code: Lizard Tunnel Guard.lua
Code:
local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)

function onCreatureAppear(cid)			npcHandler:onCreatureAppear(cid)			end
function onCreatureDisappear(cid)		npcHandler:onCreatureDisappear(cid)			end
function onCreatureSay(cid, type, msg)	npcHandler:onCreatureSay(cid, type, msg)	end
function onThink()						npcHandler:onThink()						end

npcHandler:addModule(FocusModule:new())
 
Back
Top