Jump to content

NAB622

Members
  • Posts

    518
  • Joined

  • Last visited

Everything posted by NAB622

  1. I don't know off-hand if Jkhub supports attachments. If not, put the .map in a .zip file to shrink it, upload it to any sharing service (Megaupload, mediafire, etc), then post the link. Hopefully it won't get blocked by spam blockers.
  2. The two issues I do see right now are that there are no scripts attached to the door, and the door has the player_use flag without a wait key, which will cause it to misbehave when used. However, neither of these should cause the door to disappear. Right now all I can do is blindly guess, which isn't going to be helpful. Can you post the .map file?
  3. Looking at the photos, I'm not sure what's going on. I'll need some more details to be able to tell. Can you start with the entity window data for the door and the scriptrunner, and maybe a screenshot of the entire cargo container in Radiant? As far as a target_scriptrunner, it is not a brush entity, so you can place it anywhere in the map and it will function just fine. There is also a way around using it, which you can probably do here, but one thing at a time.
  4. That sounds like what I was looking for, yeah. Which CVar is it? I'll add it to ParaTracker's bit value calculator for future reference.
  5. Wow...I actually can't find any of the old resources regarding server.cfg any more. Does anyone happen to know one? That really needs fixed, it's guaranteed to kill the game off. I can make a web page to help create a server.cfg, but I need a sample to work from and I don't have my old server.cfg any more. That said - I don't see any options regarding ysalamiri in server.cfg, but I can't find any samples to check. Are you running the dedicated server from the same game files you are playing from?
  6. Check server.cfg, sounds like ysalamiri are disabled.
  7. If this were a script, that's a valid point, but this is just a trigger_multiple firing a target_print. Nothing he is describing should be happening at all.
  8. Oh, wow. Everything you are doing is correct, so this has to be something with the game. Maybe you should try a reinstall, or a test install in a new location. Something's really royally messed up.
  9. The video is marked private, can you set it for public/unlisted?
  10. If you hit the entity limit, the game will immediately crash, so that is definitely not the problem here. Although, you are certainly close to that limit (1024), so be careful how much more you add. The best place to start is in the entity window. Can you show the parameters for one of the triggers and one of the spawners? Maybe they're triggering a script or something, or there's a targetname conflict. Also, if you haven't already, start your map in-game and type /developer 1 in the console, it might give some helpful debug messages.
  11. Is that model using a shader, or a texture? And what is the path?
  12. You are looking for target_counter. When triggered a specified number of times, it will fire it's target.
  13. Scripts are made with BehavED. It should be included with the modding tools. I don't think it runs on my current computer (Linux), but I'll be happy to give you any guidance you need, as scripts can be a bit daunting at first. There is also a LOT of bad information out there - most tutorials take a pointlessly complicated route. Feel free to ask lots of questions. You can also find me on the JKHub Discord if you would like.
  14. It is not possible for a mover to function in more than one way, and there is no way to attach movers to each other. Believe me, I wish it was possible, I would have abused that to no end in all of my projects. Even if you use a script to move everything in unison, as soon as the script moves the door, it will no longer function as a door, negating the purpose. Now......if you are okay with the door only operating when the container is stationary, you COULD script the door's movement separate from the container. If that's okay with you, then it's your best bet, but it's a bit complicated, as you will have to manually script every part of the door's behavior, and ensure it doesn't conflict with the movement of the container. The only other options involve faking the movement, similar to T1_rail, or using some other tomfoolery like a skyportal, which will definitely not help you here.
  15. I might be misunderstanding what you are doing, but.... Are you trying to make a moving container (The func_train) with a functioning door on it? The door is not possible in JA as part of a larger object, even with scripts.
  16. What is the exact error you are getting? Surely it's saying more than just NULL?
  17. I would suggest removing all target and targetname values from the entire func_train setup, and then reconnecting everything. Somehow one or more of them got copied across a few entities where they shouldn't be.
  18. func_train must be directed somewhere (I think at a path_corner) or you will get that error.
  19. I agree with @MagSul. If you look on the grid in your screenshot of Radiant, the door is green, meaning it is a trigger. All brushes in any trigger entity are invisible in-game. Make the door a func_door and it should reappear. If you are still having issues with the door disappearing, post back here, because a few other things can cause that too.
  20. You are correct. Set random value on a variable, then IF...ELSE to determine which way to point the bottle based on the random value, then execute your rotation and other fun stuff. There is no way to do any math or comparison on vectors in ICARUS, so this is the only option. I have to assume you are using BehavED, it's the only method I've ever used. If you initialize a variable like so: Then to give it a random value, set it like so: On the left is the necessary line to use the variable you created. The center just gets an = sign. On the right, input your min and max values for the range at the bottom, then click rnd. BehavED will input the necessary command for you. I use this same username on discord, and I think I'm in the JKHub Discord server, too. I'm not hard to find if you need help.
  21. What part specifically are you having trouble with? I can definitely help you get that working. The random choice of angles should be pretty easy with a random number put into a global variable or SET_PARM. Then use IF blocks to determine which way to point, based on the random value. To rotate the MD3, use a misc_model, then target it at a func_static or some other func_ entity. Finally, to rotate the bottle, just make the script rotate the func_ whatever-you-used. The misc_model will copy all movement and angle changes from the targeted entity. I highly recommend completely encasing the entire rotational area of the bottle in textures/system/clip, because if a player gets anywhere in that space the movement of the bottle will be interrupted and it will look weird.
  22. I forgot to mention - you can also apply the active texture to any brush face without selecting it using Ctrl+Shift+Middle-click.
  23. If you just want to select the texture on a brush face, middle-click the desired face. Note that this only works on brushes, not patches. If you also want to select the brush face for editing, use Ctrl+Shift+left-click. You can also click and drag across multiple surfaces like this.
  24. No, it does not. You can differentiate between bots and players, but that's all.
  25. Bummer. I don't have any means to test anything right now, either. Sorry. Good to know, though.
×
×
  • Create New...