forked from opentibiabr/canary
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/cyclopedia
- Loading branch information
Showing
3 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
local internalNpcName = "An Idol" | ||
local npcType = Game.createNpcType(internalNpcName) | ||
local npcConfig = {} | ||
|
||
npcConfig.name = internalNpcName | ||
npcConfig.description = internalNpcName | ||
|
||
npcConfig.health = 100 | ||
npcConfig.maxHealth = npcConfig.health | ||
npcConfig.walkInterval = 0 | ||
npcConfig.walkRadius = 2 | ||
|
||
npcConfig.outfit = { | ||
lookTypeEx = 15894, | ||
} | ||
|
||
npcConfig.flags = { | ||
floorchange = false, | ||
} | ||
|
||
local keywordHandler = KeywordHandler:new() | ||
local npcHandler = NpcHandler:new(keywordHandler) | ||
|
||
npcType.onThink = function(npc, interval) | ||
npcHandler:onThink(npc, interval) | ||
end | ||
|
||
npcType.onAppear = function(npc, creature) | ||
npcHandler:onAppear(npc, creature) | ||
end | ||
|
||
npcType.onDisappear = function(npc, creature) | ||
npcHandler:onDisappear(npc, creature) | ||
end | ||
|
||
npcType.onMove = function(npc, creature, fromPosition, toPosition) | ||
npcHandler:onMove(npc, creature, fromPosition, toPosition) | ||
end | ||
|
||
npcType.onSay = function(npc, creature, type, message) | ||
npcHandler:onSay(npc, creature, type, message) | ||
end | ||
|
||
npcType.onCloseChannel = function(npc, creature) | ||
npcHandler:onCloseChannel(npc, creature) | ||
end | ||
|
||
local function creatureSayCallback(npc, creature, type, message) | ||
local player = Player(creature) | ||
|
||
if not npcHandler:checkInteraction(npc, creature) then | ||
return false | ||
end | ||
|
||
if MsgContains(message, "VBOX") then | ||
npcHandler:say("J-T B^C J^BXT°", npc, creature) | ||
player:teleportTo(Position(32366, 32531, 8), false) | ||
player:getPosition():sendMagicEffect(CONST_ME_TELEPORT) | ||
end | ||
|
||
return true | ||
end | ||
|
||
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) | ||
npcHandler:addModule(FocusModule:new(), npcConfig.name, true, true, false) | ||
|
||
-- npcType registering the npcConfig table | ||
npcType:register(npcConfig) |
19 changes: 19 additions & 0 deletions
19
data-otservbr-global/scripts/actions/quests/adventures_of_galthen/galthens_tree.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
local galthensTree = Action() | ||
function galthensTree.onUse(player, item, fromPosition, target, toPosition, isHotkey) | ||
local hasExhaustion, message = player:kv():get("galthens-satchel") or 0, "Empty." | ||
if hasExhaustion < os.time() then | ||
local container = player:addItem(36813) | ||
container:addItem(36810, 1) | ||
player:kv():set("galthens-satchel", os.time() + 30 * 24 * 60 * 60) | ||
message = "You have found a galthens satchel." | ||
end | ||
|
||
player:teleportTo(Position(32396, 32520, 7)) | ||
player:getPosition():sendMagicEffect(CONST_ME_WATERSPLASH) | ||
player:sendTextMessage(MESSAGE_EVENT_ADVANCE, message) | ||
|
||
return true | ||
end | ||
|
||
galthensTree:position(Position(32366, 32542, 8)) | ||
galthensTree:register() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters