intermission showing the kill points
intermission showing the kill points
for my mod the re: mercenaries doom i will add a system for winning points killing monsters and i really want to know how i can show the final results on the intermission screen.
Last edited by doomero on Wed Dec 26, 2012 7:36 pm, edited 1 time in total.
-
BloodyAcid
- Forum Regular
- Posts: 294
- Joined: Sat Jun 16, 2012 7:42 pm
RE: intermission showing the kill points
Similar to WhoDunIt (and I'm guessing here), you could use a script that plays when you exit the level that freezes the player (and pretty much everything, I guess), fade out and display the information with ACS. When you're done, warp/exit to next level.
RE: intermission showing the kill points
but how?BloodyAcid wrote: Similar to WhoDunIt (and I'm guessing here), you could use a script that plays when you exit the level that freezes the player (and pretty much everything, I guess), fade out and display the information with ACS. When you're done, warp/exit to next level.
because the mod is for any vanilla comptaible wad, if i press the switch of exit the level is finished and intermision screen is showed (i want this for coop gameplay) exist a way to create a global acs for all the exit switch?
Last edited by doomero on Thu Dec 27, 2012 1:59 am, edited 1 time in total.
-
Catastrophe
- Retired Staff / Community Team Member
- Posts: 2571
- Joined: Sat Jun 02, 2012 2:44 am
RE: intermission showing the kill points
Couldn't you use the new GAMEMODE lump?
- Torr Samaho
- Lead Developer
- Posts: 1543
- Joined: Fri May 25, 2012 6:03 pm
- Location: Germany
RE: intermission showing the kill points
Yes. A GAMEMODE lump containingCatastrophe wrote: Couldn't you use the new GAMEMODE lump?
Code: Select all
cooperative {
removeflag PLAYERSEARNKILLS
addflag PLAYERSEARNPOINTS
}
RE: intermission showing the kill points
but PLAYERSEARNPOINTS is a inventory? my points is called "merckills"Torr Samaho wrote:Yes. A GAMEMODE lump containingCatastrophe wrote: Couldn't you use the new GAMEMODE lump?will show the points on the scoreboard.Code: Select all
cooperative { removeflag PLAYERSEARNKILLS addflag PLAYERSEARNPOINTS }
- Torr Samaho
- Lead Developer
- Posts: 1543
- Joined: Fri May 25, 2012 6:03 pm
- Location: Germany
RE: intermission showing the kill points
No, PLAYERSEARNPOINTS displays Zandronum's internal point value used in team games like CTF. IIRC the only way to manually give points right now is LS_Team_Score.doomero wrote: but PLAYERSEARNPOINTS is a inventory? my points is called "merckills"