Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ocal keywordHandler = KeywordHandler:new()
  2. local npcHandler = NpcHandler:new(keywordHandler)
  3. NpcSystem.parseParameters(npcHandler)
  4. function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
  5. function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
  6. function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
  7. function onThink() npcHandler:onThink() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement