silveralol
Advanced OT User
- Joined
- Mar 16, 2010
- Messages
- 1,483
- Solutions
- 9
- Reaction score
- 215
Hello bro, I test your function to move the monsters to own spawn pos, not get it working ...i've already done that
void Monster:nThink(uint32_t interval)
Code:if (!isInSpawnRange(_position)) { Creature* creature = this->getCreature() FindPathParams fpp; fpp.minTargetDist = 0; fpp.maxTargetDist = 1; fpp.fullPathSearch = true; fpp.clearSight = true; fpp.maxSearchDist = 150; std::forward_list<Direction> dirList; if (creature->getPathTo(masterPos, dirList, fpp)) { creature->hasFollowPath = true; creature->startAutoWalk(dirList); }
guess i didnt tested it
you could also create a Lua callback in this and then make your stuff inside the Lua env
cool for puzzles like "you have to pull all of these monsters from their spawns to get the key"
have you ever tested the lua function before?
i made this to a system, but I had a insight that it wasnt the best way
so I did just very basic tests and I cant assure that will work in every situation as intended
I have to mention that these monsters may be not idle after finishing the walk because its not a problem in my server
seems that is too much limited, the beucase of getPathTo or something like it, then don't work to monsters walk to own pos :/
also I'm trying handle with it in Lua, see:
Code:
local function check(monster)
if not monster:getTarget() then
if monster then
Creature(monster):moveTo(monster:getSpawnPosition())
end
else
--target = monster:getTarget()
--target:moveTo(monster:getSpawnPosition())-- just for test and it work 0.o
end
end
function onThink(creature)
if not creature:isMonster() then
return true
end
local monster = creature:getMonster()
local pos = monster:getSpawnPosition()
if not pos then
return true
end
addEvent(check, 1000, monster)
if not monster:isInSpawnRange(monster:getPosition()) then
if monster:getTarget() then
monster:getPosition():sendMagicEffect(CONST_ME_POFF)
monster:remove()
else
addEvent(check, 1000, monster)
end
end
return true
end
Code:
/*if (!isInSpawnRange(_position)) {
g_game.internalTeleport(this, masterPos);
g_game.addMagicEffect(getPosition(), CONST_ME_POFF);
setIdle(true);
} else {*/