SingleEvent Scripts
Custom Boss Fight Win Conditions / End effects:
Want to have it so a boss fight has an alternative win condition than just "beat all enemies"? Want something special to happen when that win condition is met? If the answer is yes, you'll need to override the usual BeginBattleEvent and its corresponding CheckBossClearEvent and end_sequence responsible for these features with the lua version.
Luckily for you, the C# version of it has been reimplemented into Lua already for you. All you need to do is take the below code and copy and paste them into event_single.
--Reimplementing Audino's C# event for BeginBattleEvent.
--This will allow us to inject custom function code before ending a battle (such as clearing existing lava flows when a boss fight ends).
MapCheckState = luanet.import_type('RogueEssence.Dungeon.MapCheckState')
SingleCharScriptEvent = luanet.import_type('RogueEssence.Dungeon.SingleCharScriptEvent')
function SINGLE_CHAR_SCRIPT.LuaBeginBattleEvent(owner, ownerChar, context, args)
local map_clear_idx = 'map_clear_check'
if context.User ~= nil then return end
--if a custom clear event is not given, use the default one.
if args.CustomClearEvent == nil then args.CustomClearEvent = 'LuaCheckBossClearEvent' end
--Turn on Team Mode if allowed when the boss fight starts. if _DUNGEON:CanUseTeamMode() then _DUNGEON:SetTeamMode(true) end
local clear_status = RogueEssence.Dungeon.MapStatus(map_clear_idx) clear_status:LoadFromData()
local check = clear_status.StatusStates:GetWithDefault(luanet.ctype(MapCheckState)) --The 2nd argument in the function below needs a string that represents a lua table of the arguments to pass. Serpent.line will convert the lua table to a string representing it for us. --We only NEED to pass args, as owner, ownerchar, and context are automatically passed in when the check event is called check.CheckEvents:Add(SingleCharScriptEvent(args.CustomClearEvent, Serpent.line(args))) --check.CheckEvents:Add(LuaCheckBossClearEvent(owner, ownerChar, context, args))
TASK:WaitTask(_DUNGEON:AddMapStatus(clear_status)) end
--Reimplementation of the basic CheckBossClearEvent. --Call something different from LuaBeginBattleEvent or edit this accordingly if you want a different wincon for your map or special effects/anims on win. function SINGLE_CHAR_SCRIPT.LuaCheckBossClearEvent(owner, ownerChar, context, args)
--Sequence that runs when map is over. Fade out, cut the music, etc. function end_sequence() _GAME:BGM("", true)
TASK:WaitTask(_GAME:FadeOut(false))
_DUNGEON:ResetTurns()
--restore all and remove all map status local statuses_to_remove = {} for i = 0, _ZONE.CurrentMap.Status.Keys.Count - 1, 1 do statuses_to_remove[i] = _ZONE.CurrentMap.Status.Keys[i] end
for i = 0, #statuses_to_remove - 1, 1 do TASK:WaitTask(_DUNGEON:RemoveMapStatus(statuses_to_remove[i], false)) end
--heal everyone in the party for i = 0, GAME:GetPlayerPartyCount() - 1, 1 do _DATA.Save.ActiveTeam.Players[i]:FullRestore() end
TASK:WaitTask(_GAME:EndSegment(RogueEssence.Data.GameProgress.ResultType.Cleared))
end
--For each enemy team, check each chara in that team. If any are still alive, then fail this check and return early. for i = 0, _ZONE.CurrentMap.MapTeams.Count - 1, 1 do local team = _ZONE.CurrentMap.MapTeams[i].Players for j = 0, team.Count - 1, 1 do --Break and return early if even one enemy is not dead. if not team[j].Dead then return end end end
--Everyone's dead, clear the scene. local checks = owner.StatusStates:GetWithDefault(luanet.ctype(MapCheckState))
--The call originally for this was to remove(this), which isn't in lua. So we need to find the LuaCheckBossClearEvent and remove that (remove ourself) for i = 0, checks.CheckEvents.Count - 1, 1 do if LUA_ENGINE:TypeOf(checks.CheckEvents[i]) == luanet.ctype(SingleCharScriptEvent) then if checks.CheckEvents[i].Script == args.CustomClearEvent then checks.CheckEvents:Remove(checks.CheckEvents[i]) end end end
if _DATA.CurrentReplay == nil then TASK:WaitTask(end_sequence()) else TASK:WaitTask(_GAME:EndSegment(RogueEssence.Data.GameProgress.ResultType.Cleared)) end
end
The first function, LuaBeginBattleEvent is responsible for letting PMDO know to look at LuaCheckBossClearEvent to determine when the map is won. Instead of the usual BeginBattleEvent in your boss fight's OnMapStart's Map Effects, you need to call a SingleCharScriptEvent for LuaBeginBattleEvent instead. It'll look like this:
LuaCheckBossClearEvent is responsible for identifying when the map is won, and then the end_sequence function within it is responsible for fading stuff out and actually winning the map.
You won't need to modify the scripting for LuaBeginBattleEvent at all, it should remain as it is. If you need an alternate wincon/end sequence besides just fading out, then you need to edit LuaCheckBossClearEvent and its end_sequence respectively.
First thing's first, unless you want to be lazy, you should rename your custom version of LuaCheckBossClearEvent to something more appropriately fitting. Let's say we want a win con where you only have to defeat the leader of a gang to win the boss fight. We'll call this function instead CheckDefeatedGangLeader. Take the LuaCheckBossClearEvent and all its code, and just rename it to CheckDefeatedGangLeader.
Now, in LuaBeginBattleEvent, be sure to pass an argument of CustomClearEvent = 'CheckDefeatedGangLeader' when you define it in the MapEffects so the LuaBeginBattleEvent knows to use your custom function instead of the default one given.
Next, you need to modify how CheckDefeatedGangLeader identifies the wincon. You should write it in a way that has the function return early if the win condition is failed. The default one does this by checking all enemy teams, and if any members on any team is not dead, then that means an enemy is still alive and the win condition has failed.
For our example, if our gang leader is a Scrafty, we should iterate through all enemy teams and see if we find a member that is both a Scrafty and alive. If so, then our win condition has failed and we should end early. Alternatively, you can assign a LuaTable property to the Scrafty that marks it as, say, 'GangLeader' = true, and make sure that there are no NPCs with a LuaTable property of 'GangLeader' equal to true that are alive. Doing it like this would allow you to have as many GangLeaders as you may want that need to be defeated to meet the wincon.
Now, with all this out of the way, when the Scrafty is defeated, the map should end and call end_sequence() (as long as we aren't watching a replay). end_sequence() is responsible for fading the map and music out. You can redefine it to anything you want if you want different things to happen when you actually win. For example, maybe you want your party members to face the camera and do a pose for a few seconds before the game fades out. You could accomplish this by writing code at the very top of end_sequence that makes all your party members do the face down and do the Pose animation! You can do anything of course, but be careful not to remove things that are important unless you know what you're doing, such as the line of code responsible for ending the segment as Cleared.