Is there a hook to tell when the party leaves a level?

Ask for help about creating mods and scripts for Grimrock 2 or share your tips, scripts, tools and assets with other modders here. Warning: forum contains spoilers!
Post Reply
MrChoke
Posts: 324
Joined: Sat Oct 25, 2014 7:20 pm

Is there a hook to tell when the party leaves a level?

Post by MrChoke »

I know we got very limited info on hooks as of yet. But I am wondering if anybody knows of a hook that can fire when the party leaves or enters a level. Whether the hook is on the party or one stair/exits, doesn't matter. I cannot seem to find one. All I can think to do is look for level change in the party's onMove() hook but that seems far from ideal.
OGDA
Posts: 115
Joined: Tue Oct 28, 2014 5:07 pm

Re: Is there a hook to tell when the party leaves a level?

Post by OGDA »

I use two floor_triggers and a script to write the level name only when the party enters the level (when they leave, the name is not written):

The trigger next to the exit calls the function oldwfunc3() and the trigger directly next to it but further away from the exit calls oldwenter3().

Code: Select all

oldw3 = 0

function oldwenter3()
	oldw3 = 1
end

function oldwfunc3()
	if oldw3 == 0 then
		hudPrint("Here's the name of the level you are entering...")
	else
		oldw3 = 0
	end
end
MrChoke
Posts: 324
Joined: Sat Oct 25, 2014 7:20 pm

Re: Is there a hook to tell when the party leaves a level?

Post by MrChoke »

OK, floor triggers. I can make that work. Thanks!
Post Reply