Jump to content

NodSaibot

Totem Arts Staff
  • Posts

    2362
  • Joined

Everything posted by NodSaibot

  1. So you're on a local network? I actually don't know the support for this in RenX. I know we were working on something. You'd probably have to connect using your local IP. The IPv4 address would be the local IP I believe. In-game you could press f5, then type "open ip here". I am not sure though.
  2. No, it's just an engine setting. I don't exactly how it works, but it's not an actual cap.
  3. The cap isn't actually a cap. I don't know why it was worded that way on the UI. It should say "desired FPS count"
  4. This game is driven by passion -- many of the developers work full time now, so the development is a little slow, but it comes along. A few devs pay out of pocket to keep the game running I am glad that you enjoy the game!
  5. Damage scales far more than reps do. Have you tried flanking the reps? And EMPs reduce the heal rate significantly.
  6. The flare appears for a little bit, the message is what should be most obvious. And politics hardly relates to game development. We ask for people to voice their opinions, most people don't go around asking for political opinions. Like I said before, game awareness is a skill, and if you don't have it, you are going to die. Just like checking mine counts all the time, it's something you have to learn how to do. If people don't pay attention to the messages, that's something they need to learn to do.
  7. Wenn Sie über die "Constructive Tyranny Organized Play" sprechen, müssen Sie dem "Discord" Server für RenegadeX beitreten. Oder was meinst du? Ich verwende Google Translate, ich hoffe, dass diese Nachricht klar ist.
  8. The alerts for cruise missiles are being improved. However, there is already a message, a flare and a sound.
  9. If you're running at 20 fps, your client will experience a lot of issues. What are your PC specs?
  10. Importing sound into the SDK is quite simple. However, there are a few requirements. The sound file you are importing MUST be 16-bit & be a wav file. If your sound file is not 16-bit or a wav file, you can easily convert it using Audacity, which is a free audio editing program. To being importing, open the content browser and click import. The rest is pretty self explanatory, set the package, group name and name. IMPORTANT: Make sure to set the sound class of the SoundCue after importing. If you do not set a class, it will not be affected by volume sliders in-game. Right click the cue and open the sound cue editor. The class is the first thing. You can find a list of valid sound classes below. GetPC().SetAudioGroupVolume('UI', SystemSettingsHandler.UIVolume); GetPC().SetAudioGroupVolume('Item', SystemSettingsHandler.ItemVolume); GetPC().SetAudioGroupVolume('Vehicle', SystemSettingsHandler.VehicleVolume); GetPC().SetAudioGroupVolume('Weapon', SystemSettingsHandler.WeaponVolume); GetPC().SetAudioGroupVolume('SFX', SystemSettingsHandler.SFXVolume); GetPC().SetAudioGroupVolume('Character', SystemSettingsHandler.CharacterVolume); GetPC().SetAudioGroupVolume('Music', SystemSettingsHandler.MusicVolume); GetPC().SetAudioGroupVolume('Announcer', SystemSettingsHandler.AnnouncerVolume); GetPC().SetAudioGroupVolume('MovieVoice', SystemSettingsHandler.MovieVoiceVolume); GetPC().SetAudioGroupVolume('WeaponBulletEffects', SystemSettingsHandler.WeaponBulletEffectsVolume); GetPC().SetAudioGroupVolume('OptionVoice', SystemSettingsHandler.OptionVoiceVolume); GetPC().SetAudioGroupVolume('MovieEffects', SystemSettingsHandler.MovieEffectsVolume); GetPC().SetAudioGroupVolume('Ambient', SystemSettingsHandler.AmbientVolume); GetPC().SetAudioGroupVolume('UnGrouped', SystemSettingsHandler.UnGroupedVolume); GetPC().SetAudioGroupVolume('Voice', SystemSettingsHandler.CharacterVolume);
  11. Could it be your ping? Holding tab will show your ping. f5 stat fps will display your FPS as well.
  12. All of the config files are located in C:\Program Files (x86)\Renegade X\UDKGame\Config If you would like to revert ALL of your input changes, just delete UDKInput.ini and it will revert to the default. I do not know exactly which part to modify to change it back to toggling vehicle locking.
  13. The wiki should be updated, but I just don't have the time. I don't think there is a chart.
  14. Check your game logs. Installation Directory ~\UDKGame\Logs\Launch.log
  15. Oh, sorry I read that wrong. Are your ports open? Firewall blocking UDK.exe?
  16. https://wiki.renegade-x.com/wiki/Server Read here and let me know if you have any problems still
  17. Download the new version. When is the last time you downloaded?
  18. The thing is, I can make servers with people... make one 64 and put it into 2 32 servers.
  19. So what I am reading is you’ll seed CT’s 64 player count server. You can decide where you want to play. Also, not everyone agreed for a 40 player count server on the FPI mod team, pretty sure it was like a 4/3 vote to let it be tested. The main point of FPI wasn’t to monopoly, it was to allow more than just CT, after AGN left RenX. And I’m not saying people are wrong for liking 64 player count servers, that’s just not the way the game was meant to be played. That’s not realistically possible on UDK. Unfortunately we don’t have the liberty of deciding what is possible and what isn’t possible in RenX sometimes. My biggest and most painful issue with 64 player servers is my ping and FPS. If it’s at 64 players or near that, I will get close to 200 ping and no higher than 40 fps. Meanwhile at 40 players, I can get 60 steady fps, and my regular 130 ping
  20. If anyone is wondering, this is basically the final version of the code I would be using. function OnMatchEnd() { local int i; local Rx_Controller c; local string NextMap; local Guid NextMapGuid; NextMap = string(WorldInfo.GetPackageName()); NextMapGuid = GetPackageGuid(name(NextMap)); if(`WorldInfoObject.Game.NumPlayers-1 > PlayersToSplitAt) foreach WorldInfo.AllControllers(class'Rx_Controller', c) { if(c != none && i == 0) { c.ClientTravel(ServerDestination, TRAVEL_Relative, false, NextMapGuid); i++; } else if (c != none && i > 0) i--; } }
×
×
  • Create New...