Zdoom decorate black screen

Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.

Post a reply

Smilies
:D :) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :geek: :ugeek: :!: :?: :idea: :arrow: :| :mrgreen: :3: :wub: >:( :blergh:
View more smilies

BBCode is OFF
Smilies are ON

Topic review
   

Expand view Topic review: Zdoom decorate black screen

Re: Zdoom decorate black screen

by Arachnotron123 » Mon Jun 22, 2015 1:57 pm

Graf Zahl wrote:Your actor contains a 0-duration look which locks up the engine.
It worked, and the only problem I am having now is the thing keeps appearing to fall through the floor and it disappears when I get close to it. Other than those two things the prop works fine.

Re: Zdoom decorate black screen

by Graf Zahl » Mon Jun 22, 2015 1:28 pm

Your actor contains a 0-duration look which locks up the engine.

Zdoom decorate black screen

by Arachnotron123 » Mon Jun 22, 2015 1:13 pm

I have the same problem for two of my decorate codes. If I add the things to my map, when I try to enter the map through zdoom, it comes up what a black screen. The music will be playing, but nothing appears on
the screen. Here are the two codes((Yes, this is an anime style secret map)):

Code: Select all

actor rika_furude 10241
{
  Height 40
  Radius 20
  +SOLID
  States
  {
  Spawn:
    riku a 0
    Loop
  }
}

actor Panties : PowerupGiver 12347
{
 inventory.pickupmessage "PANTIES"
 inventory.icon "pantA0"
 powerup.color pink 0.25
 inventory.maxamount 0
 inventory.usesound "pickups/slowmo"
 powerup.type "Regeneration"
 powerup.duration 1000
 translation "128:143=64:79"
 +AUTOACTIVATE
 +INVENTORY.FANCYPICKUPSOUND
   states
 {
 Spawn:
   PANT A 0 bright
  
 }
}

Top