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

Blue Shadow

Members
  • Content count

    365
  • Joined

  • Last visited

Everything posted by Blue Shadow

  1. Blue Shadow

    About Tid and sector tags

    They're separate. So, no confusion is going to be had.
  2. Blue Shadow

    Do I really need this in my map info lump file?

    Well, if you want it; evenlighting is one of the fake contrast settings available in ZDoom.
  3. Blue Shadow

    ACS GetWeapon()

    You can find the latest and up-to-date ACS headers here (look at the very bottom of the list for the .acs files).
  4. Blue Shadow

    Doom RPG Errors

    You're missing the DoomRL Monsters Pack WAD. See here on how to load these mods together
  5. Blue Shadow

    Flaregun flares stop working on Heretic skill 5?

    In that difficulty setting, a monster's ReactionTime is set to 0, normally; this is part of the "fast monsters" behavior in the highest difficulty settings. Your sticky flare actor is considered a monster, due to having the Monster combo flag, so it's affected. And since you're using ReactionTime as a counter, you know what happens when it reaches 0. The easiest solution for this, is to put the NEVERFAST flag on the sticky flare actor. This way, the ReactionTime will not be touched.
  6. Blue Shadow

    Going from DiD format to DiH format

    These two can be used to print messages on the screen: Print HudMessage
  7. Blue Shadow

    Custom water splash for small objects?

    Sorry about that. That was me being stupid. Checking things, it'd seem that the sound effect for both small and big splashes is the same. So what you want to do is redefine the sound (in SNDINFO) so it uses the sound effect you want: world/drip SSPLASH"world/drip" is the sound definition used for the small splash. "SSPLASH" is just an example. Replace it with your sound.
  8. Blue Shadow

    Custom water splash for small objects?

    Try this: Spawn: SHEL ABCDEFGH 2 A_JumpIf(waterlevel > 0, "SmallSplash") Loop Death: SHEL A -1 Stop SmallSplash: TNT1 A 0 A_PlaySound("smallsplash") SPSH ABCDD 8 Stop
  9. Blue Shadow

    Custom water splash for small objects?

    If you reduce the mass of the casings enough, it should make a small splash (thus, a small splash sound) as opposed to the normal one. A mass value less than 10 should do it, I think. I think you meant: "waterlevel > 0" or "waterlevel >= 0"? The ">>" is the bitwise right shift operator.
  10. Blue Shadow

    Heretic Monsters that don't produce blood

    Not entirely true; bleeding actors in Heretic and Hexen will still bleed if hit by a projectile.
  11. Blue Shadow

    Tricking Doom into having 3d?

    Loading PK3s is no different than WADs. A simple way is to just drag and drop. As for the map, it's inside the maps directory (zdcmp2.wad).
  12. Blue Shadow

    Sprite rotation

    I'm afraid you will need to do that, since it's the only way.
  13. Blue Shadow

    Tricking Doom into having 3d?

    You don't need to trick it, just go with 3D floors.
  14. Blue Shadow

    Fire bullets from mapspot

    The bug is fixed. You just need to wait for a new development build to be put up. If you don't like using beta-quality softwares, then you're going to have to wait longer than that for an official release, I'm afraid.
  15. Blue Shadow

    Fade out or turn off the music?

    That can't be done. User CVARs (basically, user's settings, we're talking about here) can't be changed via SetCVar or its sister functions, only mod-defined CVARs with CVARINFO can. This is deliberate, due to security concerns; you don't want some mod messing about with your settings, do you?
  16. Blue Shadow

    Fire bullets from mapspot

    That turned out to be an actual bug with the function, which I'd just reported.
  17. Blue Shadow

    Fire bullets from mapspot

    LineAttack.
  18. Blue Shadow

    monster awareness state not saved in savegames?

    It's a well-known vanilla Doom issue.
  19. Blue Shadow

    Slade 3.1.0 released

    Hm, the changelog states that it'll only download it if it's needed. So maybe you don't have it?
  20. Blue Shadow

    Doomablo - Can zDoom do this?

    Built in? None, I'd say. ZDoom is still an engine for an FPS game and is focused on that -- it's not a (full-fledged) RPG engine. It may have few elements here an there, but nothing too complex. All of this RPG stuff is on you, the modder, to figure out and achieve with whatever combination of features ZDoom offers. They're certainly possible, but the majority of the work is from the modding side, not from the engine's. So expect to do a lot of coding if you want something as complex as that. ACS and DECORATE are what's needed, mainly. Normal game saving preserves everything(?) retaining to the gamestate, including that stuff. Edit: I just thought, since you seem to be interested in RPG, you might want to check this mod. It's in a far better developmental state than BorderDoom, and is quite popular amongst ZDoomers.
  21. Blue Shadow

    request: doom inventory

    Since you're already going to redefine the items, anyway, then it's better to do it on the items themselves, instead, with the Inventory.InterHubAmount property. The item reduction is something from Heretic, and was put there for balance reasons, if I'm not mistaken.
  22. Blue Shadow

    Doomablo - Can zDoom do this?

    For random spawning, there is always the RandomSpawner class. Doing weapons/items with randomized stats is possible, as demonstrated by this (you can find the demo to download from this post).
  23. Yeah, this only happened recently. It's a bit annoying, I agree. I brought it up once but no one seemed to mind it, as I didn't see anyone express their opinions about it. I don't know your reasons for disliking Doom Builder, obviously, but I'm not sure you'll like GZDoom Builder either in this case, because it didn't drastically change the formula of what it's based on. You can say it's an extension.
  24. Weird... Just to test, I deleted my current settings/config file to let the program create a fresh one; that key was still bound to that option by default.
×