Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Godfather38

How do i write pickup messages, obituaries, and tags for a custom monster/weapon

Recommended Posts

I have created some new weapons and monsters, how can I write a custom pickup message, a tag (and what do they do anyway?), and an obituary?

Share this post


Link to post

Use the following actor properties in DECORATE:

http://zdoom.org/wiki/Actor_properties#Obituaries
http://zdoom.org/wiki/Actor_properties#Inventory.PickupMessage

Examples:

actor MyMonster {
  Obituary "some text"
}
actor MyWeapon {
  Inventory.PickupMessage "some text"
}
As for tags: If you are talking about the actor property named "Tag", those do exactly what it says on the wiki, and you generally don't need to set them at all. If you are talking about thing tags that you can set in a map editor in Hexen map format or in UDMF, those are used to identify the particular tagged things to be possibly later affected by Action Specials called from ACS, linedef triggers, etc.

Share this post


Link to post

Thank you! and I was referring to the actor property, which, as I'm looking at it on the wiki, I must ask why this is in ZDoom? I understand that ZDoom is meant to have support for all doom engine games, but frankly I'm sure that there is a dedicated strife remaster or source port of some kind, and why do doom weapons have tags?

Share this post


Link to post

doom weapons have tags in zdoom because of the option that allows you to see inventory's name tags when cycling through them

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×