#  ![](https://www.realm667.com/media/kunena/topic_icons/realm667_repo/user/rep_approved.png) Black Obelisk (MD3 model)

##

- **inkoalawetrust**
- ![inkoalawetrust's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar11669.jpg?1718890853)
- Moderator
- ![Moderator](https://www.realm667.com/media/kunena/ranks/rank_20_barrel.png)

 Less More- Posts: 254
-
-

   4 years 9 months ago [\#9462](#9462) by inkoalawetrust  Replied by *inkoalawetrust* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9462 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 The BLAOA0 sprite has no sprite offsets, so it doesn't appear properly in the editor. Also IMO the model for the secondary version of the obelisk should be named something more descriptive than BlackObelisk2.md3, like BlackObeliskBaseless.md3. The hitbox for the base of the normal obelisk should also be 12 MU, since that is more accurate to the dimensions of the base.

Also the actor is not Zandronum compatible, for example DontThrust isn't a flag that Zandronum supports so instead you'll have to make the actor unpushable by setting its' mass property to 0x7FFFFFFF (The 32-bit integer limit in hexadecimal.), FloatBobStrength is also not a property in Zandronum, so you'll need to remove it, there is also something that Zandronum doesn't support about the two calls to A_SpawnParticle that the floating obelisk makes, but I'm not sure what it is.

I would also suggest properly indenting the code like this:
Code:

Actor TrunkBlocker1 { Radius 22 //The actor flag/property block goes one indent in. Height 268 +Solid +PuffOnActors +Shootable +NoDamage +NoBlood +DontThrust +NotAutoaimed States { Spawn: //State labels go two indents in. TNT1 A -1 //State sequences go three indents in. Stop } }

Also here's how to make the second trunk collision box follow the model, first on the call to A_SpawnItemEx that spawns TrunkBlocker1 you need to use the SXF_SETMASTER flag, which will make the obelisk actor the trunk hitboxes' master, so the hitbox has a reference to its' parent actor.

BLAO A 0 A_SpawnItemEx ("TrunkBlocker1", 0, 0, 20,0,0,0,0,SXF_SETMASTER)

Then you need to make the collision box repeatedly call A_Warp every tic, so just change the states block of TrunkBlocker 1 to this:
Code:

 States { Spawn: TNT1 A 1 A_Warp (AAPTR_MASTER,0,0,0,0,WARPF_INTERPOLATE|WARPF_NOCHECKPOSITION) Loop }

The [ A\_Warp](https://zdoom.org/wiki/A_Warp) call will warp the actor to whichever pointer is specified in the first parameter, which in this case is the trunks' MASTER pointer, and it'll warp at its' master with rendering interpolation (So the movement isn't choppy.), and not check to see if it's intersecting with any blocking walls or planes.

That's all I can think of for now.

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **9Rifleman**
- ![9Rifleman's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar11616.png?1601652946) Topic Author
- Chaingunner
- ![Chaingunner](https://www.realm667.com/media/kunena/ranks/rank_6_chaingunner.png)

 Less More- Posts: 65
-
-
-

   4 years 9 months ago [\#9471](#9471) by 9Rifleman  Replied by *9Rifleman* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9471 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 - FLOAT flag removed
- reworked the blockers a bit based on inkoalawetrust's suggestion
- DONTTHRUST flag replaced with Mass property
- second model renamed

Regarding the floting obelisk - what would you suggest? Removing it or maybe mark it in comments as only for GZDoom? I guess it can't be made to work in Zandro.

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **inkoalawetrust**
- ![inkoalawetrust's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar11669.jpg?1718890853)
- Moderator
- ![Moderator](https://www.realm667.com/media/kunena/ranks/rank_20_barrel.png)

 Less More- Posts: 254
-
-

   4 years 9 months ago [\#9472](#9472) by inkoalawetrust  Replied by *inkoalawetrust* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9472 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 You didn't need to remove the Float flag from the floating obelisk, the FloatBobStrength property is the one that Zandronum doesn't support. Also you forgot to add the SXF_SETMASTER flag on the A_SpawnItemEx calls that spawn the collision boxes, which means that they don't warp since they have no master pointer to warp to.

Also using an anonymous function to spawn the two collision boxes for the obelisk makes the resource mega incompatible with Zandronum, at least the FloatBobStrength property and DontThrust flag could be added in a later update like 3.2 when the GZDoom codebase is updated again. But anonymous functions will basically never be supported by Zandronum because they are essentially ZScript, and Zandronum cannot support ZScript.

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **9Rifleman**
- ![9Rifleman's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar11616.png?1601652946) Topic Author
- Chaingunner
- ![Chaingunner](https://www.realm667.com/media/kunena/ranks/rank_6_chaingunner.png)

 Less More- Posts: 65
-
-
-

   4 years 9 months ago [\#9473](#9473) by 9Rifleman  Replied by *9Rifleman* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9473 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 - anonymous functions removed
- SXF_SETMASTER added
- added one more blocker actor and updated the other two
- floating obelisk variant removed, but I left a text file with how to make it for GZDoom

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **Gothic**
- ![Gothic's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar320.png?1619787674)
- Moderator
- ![Moderator](https://www.realm667.com/media/kunena/ranks/rank_20_barrel.png)

 Less More- Posts: 1329
-
-
-

   4 years 9 months ago [\#9474](#9474) by Gothic  Replied by *Gothic* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9474 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

> [ inkoalawetrust wrote: ](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9472)

>
>  You didn't need to remove the Float flag from the floating obelisk

The FLOAT flag is used for flying/floating monsters to track the player's vertical position, which a prop doesn't need, unless it was intended for the obelisk to follow the player.

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **inkoalawetrust**
- ![inkoalawetrust's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar11669.jpg?1718890853)
- Moderator
- ![Moderator](https://www.realm667.com/media/kunena/ranks/rank_20_barrel.png)

 Less More- Posts: 254
-
-

   4 years 9 months ago [\#9475](#9475) by inkoalawetrust  Replied by *inkoalawetrust* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9475 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 Alright after more seriously trying to get your resource to work on Zandronum, it seems that A_SpawnParticle doesn't even exist in Zandronum, so you'd need to make and repeatedly call an ACS script that calls the equivalent ACS function. I also just can't get the MD3s to actually render in Zandronum, my guess is that it's because Zandronum doesn't support directly naming the materials of different model meshes after the texture to be used for them. It also doesn't support SurfaceSkin apparently, so there's not way to have a model with multiple textures in Zandronum. So to get the model to render you'd have to put all the textures you use in one texture atlas, and by extension redo the UVs on the whole model.

TL;DR you can safely disregard Zandronum compatibility, so you can re-add the floating obelisk, and replace the Mass property with simply using DontThrust again. > [ Gothic wrote: ](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9474)

>
> > [ inkoalawetrust wrote: ](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9472)

> >
> >  You didn't need to remove the Float flag from the floating obelisk
>
> The FLOAT flag is used for flying/floating monsters to track the player's vertical position, which a prop doesn't need, unless it was intended for the obelisk to follow the player.

Oh right I forgot that the Float flag is used to make vertically moving NPCs, not to simply have props float, that's just done with NoGravity and FloatBob.

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **9Rifleman**
- ![9Rifleman's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar11616.png?1601652946) Topic Author
- Chaingunner
- ![Chaingunner](https://www.realm667.com/media/kunena/ranks/rank_6_chaingunner.png)

 Less More- Posts: 65
-
-
-

   4 years 9 months ago [\#9477](#9477) by 9Rifleman  Replied by *9Rifleman* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9477 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 Alrighty ![:)](https://www.realm667.com/media/kunena/emoticons/cacsmi.gif ":)")

I've restored the previous version, kept the new blockers in though.

Shame it didn't work out for Zandro in the end, but at least it was a learning experience, so cheers for that ![:)](https://www.realm667.com/media/kunena/emoticons/cacsmi.gif ":)")

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **Gothic**
- ![Gothic's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar320.png?1619787674)
- Moderator
- ![Moderator](https://www.realm667.com/media/kunena/ranks/rank_20_barrel.png)

 Less More- Posts: 1329
-
-
-

   4 years 9 months ago - 4 years 9 months ago [\#9479](#9479) by Gothic  Replied by *Gothic* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9479 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 There's an error message because BlackObelisk calls for a non existent "TrunkBlocker1" actor.

 Last edit: 4 years 9 months ago by Gothic.

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **9Rifleman**
- ![9Rifleman's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar11616.png?1601652946) Topic Author
- Chaingunner
- ![Chaingunner](https://www.realm667.com/media/kunena/ranks/rank_6_chaingunner.png)

 Less More- Posts: 65
-
-
-

   4 years 9 months ago [\#9480](#9480) by 9Rifleman  Replied by *9Rifleman* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9480 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 Sorry, missed that bit. Should be fixed now.

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

- **Gothic**
- ![Gothic's Avatar](https://www.realm667.com/media/kunena/avatars/resized/size144/users/avatar320.png?1619787674)
- Moderator
- ![Moderator](https://www.realm667.com/media/kunena/ranks/rank_20_barrel.png)

 Less More- Posts: 1329
-
-
-

   4 years 9 months ago [\#9485](#9485) by Gothic  Replied by *Gothic* on topic *[Black Obelisk (MD3 model)](https://www.realm667.com/forum/closed-submissions/1699-black-obelisk-md3-model?start=10#9485 "Information:

Name: Black Obelisk
Connection: No
Palette: Doom
Summon: BlackObelisk, BlackObeliskNoBase, BlackObeliskFloat
Ambient Sound: No
De-/Activatable: No
Destroyable: No
Special Effects: No
Brightmaps: Yes
Actor modification: No
ACS: No

Credits:
Code: Rifleman
GLDefs: N/A
Sounds: N/A
Textures/Materials: Ola Bjorling/ukiro
Sprites: Rifleman
Sprite Edit: N/A
Idea Base: Not many obelisks in Doom

Description:
This is a model(MD3) of an obelisk, intended purely as a decoration. It uses several black marble textures from OTEX(included) and a brightmap created by me so the inscription glows. Model is low poly so it should fit nicely.

Sprite and model:
        

Download Link:")*

 [ Added](https://www.realm667.com/index.php/en/prop-stop-mainmenu-163-64831/hell-a-magic-mainmenu-168-40302/2426-black-obelisks)

Please [Log in](https://www.realm667.com/component/users/login?return=aHR0cHM6Ly93d3cucmVhbG02NjcuY29tL2ZvcnVtL2Nsb3NlZC1zdWJtaXNzaW9ucy8xNjk5LWJsYWNrLW9iZWxpc2stbWQzLW1vZGVsP3N0YXJ0PTEw&Itemid=2662) or [Create an account](https://www.realm667.com/component/users/registration?Itemid=2662) to join the conversation.

[Powered by](https://www.realm667.com/forum/credits) [Kunena Forum](https://www.kunena.org)
